2017-08-30 20:03:26 +00:00
|
|
|
package libkpod
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/kubernetes-incubator/cri-o/oci"
|
|
|
|
"github.com/pkg/errors"
|
2017-10-15 20:05:41 +00:00
|
|
|
"golang.org/x/net/context"
|
2017-08-30 20:03:26 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// ContainerStop stops a running container with a grace period (i.e., timeout).
|
2017-10-15 20:05:41 +00:00
|
|
|
func (c *ContainerServer) ContainerStop(ctx context.Context, container string, timeout int64) (string, error) {
|
2017-08-30 20:03:26 +00:00
|
|
|
ctr, err := c.LookupContainer(container)
|
|
|
|
if err != nil {
|
|
|
|
return "", errors.Wrapf(err, "failed to find container %s", container)
|
|
|
|
}
|
2017-09-19 12:26:32 +00:00
|
|
|
ctrID := ctr.ID()
|
2017-08-30 20:03:26 +00:00
|
|
|
|
|
|
|
cStatus := c.runtime.ContainerStatus(ctr)
|
2017-09-19 12:26:32 +00:00
|
|
|
switch cStatus.Status {
|
|
|
|
|
|
|
|
case oci.ContainerStatePaused:
|
|
|
|
return "", errors.Errorf("cannot stop paused container %s", ctrID)
|
|
|
|
default:
|
|
|
|
if cStatus.Status != oci.ContainerStateStopped {
|
2017-10-15 20:05:41 +00:00
|
|
|
if err := c.runtime.StopContainer(ctx, ctr, timeout); err != nil {
|
2017-09-19 12:26:32 +00:00
|
|
|
return "", errors.Wrapf(err, "failed to stop container %s", ctrID)
|
|
|
|
}
|
|
|
|
if err := c.storageRuntimeServer.StopContainer(ctrID); err != nil {
|
|
|
|
return "", errors.Wrapf(err, "failed to unmount container %s", ctrID)
|
|
|
|
}
|
2017-08-30 20:03:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
c.ContainerStateToDisk(ctr)
|
|
|
|
|
2017-09-19 12:26:32 +00:00
|
|
|
return ctrID, nil
|
2017-08-30 20:03:26 +00:00
|
|
|
}
|