2017-07-22 02:07:40 +00:00
|
|
|
package libkpod
|
|
|
|
|
|
|
|
import (
|
|
|
|
cstorage "github.com/containers/storage"
|
2017-07-23 23:01:37 +00:00
|
|
|
"github.com/pkg/errors"
|
2017-07-22 02:07:40 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// FindContainer searches for a container with the given name or ID in the given store
|
|
|
|
func FindContainer(store cstorage.Store, container string) (*cstorage.Container, error) {
|
2017-07-24 15:14:18 +00:00
|
|
|
return store.Container(container)
|
2017-07-22 02:07:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// GetContainerTopLayerID gets the ID of the top layer of the given container
|
|
|
|
func GetContainerTopLayerID(store cstorage.Store, containerID string) (string, error) {
|
|
|
|
ctr, err := FindContainer(store, containerID)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
return ctr.LayerID, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetContainerRwSize Gets the size of the mutable top layer of the container
|
|
|
|
func GetContainerRwSize(store cstorage.Store, containerID string) (int64, error) {
|
2017-07-24 15:14:18 +00:00
|
|
|
container, err := store.Container(containerID)
|
2017-07-22 02:07:40 +00:00
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the size of the top layer by calculating the size of the diff
|
|
|
|
// between the layer and its parent. The top layer of a container is
|
|
|
|
// the only RW layer, all others are immutable
|
2017-07-24 15:14:18 +00:00
|
|
|
layer, err := store.Layer(container.LayerID)
|
2017-07-22 02:07:40 +00:00
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
2017-07-24 15:14:18 +00:00
|
|
|
return store.DiffSize(layer.Parent, layer.ID)
|
2017-07-22 02:07:40 +00:00
|
|
|
}
|
2017-07-23 23:01:37 +00:00
|
|
|
|
|
|
|
// GetContainerRootFsSize gets the size of the container's root filesystem
|
|
|
|
// A container FS is split into two parts. The first is the top layer, a
|
|
|
|
// mutable layer, and the rest is the RootFS: the set of immutable layers
|
|
|
|
// that make up the image on which the container is based
|
|
|
|
func GetContainerRootFsSize(store cstorage.Store, containerID string) (int64, error) {
|
2017-07-24 15:14:18 +00:00
|
|
|
container, err := store.Container(containerID)
|
2017-07-23 23:01:37 +00:00
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ignore the size of the top layer. The top layer is a mutable RW layer
|
|
|
|
// and is not considered a part of the rootfs
|
2017-07-24 15:14:18 +00:00
|
|
|
rwLayer, err := store.Layer(container.LayerID)
|
2017-07-23 23:01:37 +00:00
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
2017-07-24 15:14:18 +00:00
|
|
|
layer, err := store.Layer(rwLayer.Parent)
|
2017-07-23 23:01:37 +00:00
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
|
|
|
|
size := int64(0)
|
|
|
|
for layer.Parent != "" {
|
2017-07-24 15:14:18 +00:00
|
|
|
layerSize, err := store.DiffSize(layer.Parent, layer.ID)
|
2017-07-23 23:01:37 +00:00
|
|
|
if err != nil {
|
|
|
|
return size, errors.Wrapf(err, "getting diffsize of layer %q and its parent %q", layer.ID, layer.Parent)
|
|
|
|
}
|
|
|
|
size += layerSize
|
2017-07-24 15:14:18 +00:00
|
|
|
layer, err = store.Layer(layer.Parent)
|
2017-07-23 23:01:37 +00:00
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Get the size of the last layer. Has to be outside of the loop
|
|
|
|
// because the parent of the last layer is "", andlstore.Get("")
|
|
|
|
// will return an error
|
2017-07-24 15:14:18 +00:00
|
|
|
layerSize, err := store.DiffSize(layer.Parent, layer.ID)
|
2017-07-23 23:01:37 +00:00
|
|
|
return size + layerSize, err
|
|
|
|
}
|