2014-07-09 01:17:05 +08:00
/ *
NOTE : The API is in flux and mainly not implemented . Proceed with caution until further notice .
* /
2014-02-19 08:56:11 +08:00
package libcontainer
2014-12-17 17:12:23 +08:00
import (
2015-02-01 11:56:27 +08:00
"github.com/docker/libcontainer/cgroups"
2014-12-17 17:12:23 +08:00
"github.com/docker/libcontainer/configs"
2015-02-01 11:56:27 +08:00
"github.com/docker/libcontainer/network"
2014-12-17 17:12:23 +08:00
)
2015-02-01 11:56:27 +08:00
type Stats struct {
NetworkStats * network . NetworkStats ` json:"network_stats,omitempty" `
CgroupStats * cgroups . Stats ` json:"cgroup_stats,omitempty" `
}
2014-10-28 08:51:14 +08:00
// A libcontainer container object.
//
// Each container is thread-safe within the same process. Since a container can
// be destroyed by a separate process, any function may return that the container
// was not found.
type Container interface {
2014-08-26 23:18:13 +08:00
// Returns the ID of the container
ID ( ) string
2014-07-09 01:17:05 +08:00
2015-02-01 11:56:27 +08:00
// Returns the current statusof the container.
2014-07-09 01:17:05 +08:00
//
2014-10-23 07:27:06 +08:00
// errors:
// Systemerror - System error.
2015-02-01 11:56:27 +08:00
Status ( ) ( configs . Status , error )
2014-07-09 01:17:05 +08:00
// Returns the current config of the container.
2014-12-17 17:12:23 +08:00
Config ( ) * configs . Config
2014-07-09 01:17:05 +08:00
2014-10-23 01:35:29 +08:00
// Returns the PIDs inside this container. The PIDs are in the namespace of the calling process.
2014-07-17 09:02:29 +08:00
//
2014-10-23 07:27:06 +08:00
// errors:
2014-09-04 07:03:41 +08:00
// ContainerDestroyed - Container no longer exists,
2014-10-23 07:27:06 +08:00
// Systemerror - System error.
2014-07-09 01:17:05 +08:00
//
2014-10-23 01:35:29 +08:00
// Some of the returned PIDs may no longer refer to processes in the Container, unless
// the Container state is PAUSED in which case every PID in the slice is valid.
2014-10-23 07:27:06 +08:00
Processes ( ) ( [ ] int , error )
2014-10-23 01:35:29 +08:00
// Returns statistics for the container.
2014-07-09 01:17:05 +08:00
//
2014-10-23 07:27:06 +08:00
// errors:
2014-10-23 01:35:29 +08:00
// ContainerDestroyed - Container no longer exists,
2014-10-23 07:27:06 +08:00
// Systemerror - System error.
2015-02-01 11:56:27 +08:00
Stats ( ) ( * Stats , error )
2014-10-23 01:35:29 +08:00
// Start a process inside the container. Returns the PID of the new process (in the caller process's namespace) and a channel that will return the exit status of the process whenever it dies.
2014-07-09 01:17:05 +08:00
//
2014-10-23 07:27:06 +08:00
// errors:
2014-09-04 07:03:41 +08:00
// ContainerDestroyed - Container no longer exists,
2014-10-23 01:35:29 +08:00
// ConfigInvalid - config is invalid,
// ContainerPaused - Container is paused,
2014-10-23 07:27:06 +08:00
// Systemerror - System error.
StartProcess ( config * ProcessConfig ) ( pid int , err error )
2014-07-09 01:17:05 +08:00
2014-10-23 01:35:29 +08:00
// Destroys the container after killing all running processes.
//
// Any event registrations are removed before the container is destroyed.
// No error is returned if the container is already destroyed.
2014-07-09 01:17:05 +08:00
//
2014-10-23 07:27:06 +08:00
// errors:
// Systemerror - System error.
Destroy ( ) error
2014-07-09 01:17:05 +08:00
// If the Container state is RUNNING or PAUSING, sets the Container state to PAUSING and pauses
// the execution of any user processes. Asynchronously, when the container finished being paused the
// state is changed to PAUSED.
// If the Container state is PAUSED, do nothing.
//
2014-10-23 07:27:06 +08:00
// errors:
2014-09-04 07:03:41 +08:00
// ContainerDestroyed - Container no longer exists,
2014-10-23 07:27:06 +08:00
// Systemerror - System error.
Pause ( ) error
2014-07-09 01:17:05 +08:00
// If the Container state is PAUSED, resumes the execution of any user processes in the
// Container before setting the Container state to RUNNING.
// If the Container state is RUNNING, do nothing.
//
2014-10-23 07:27:06 +08:00
// errors:
2014-09-04 07:03:41 +08:00
// ContainerDestroyed - Container no longer exists,
2014-10-23 07:27:06 +08:00
// Systemerror - System error.
Resume ( ) error
2014-10-23 03:06:35 +08:00
// Signal sends the specified signal to a process owned by the container.
//
2014-10-23 07:27:06 +08:00
// errors:
2014-10-23 03:06:35 +08:00
// ContainerDestroyed - Container no longer exists,
// ContainerPaused - Container is paused,
2014-10-23 07:27:06 +08:00
// Systemerror - System error.
Signal ( pid , signal int ) error
2014-10-23 03:06:35 +08:00
// Wait waits for the init process of the conatiner to die and returns it's exit status.
//
2014-10-23 07:27:06 +08:00
// errors:
2014-10-23 03:06:35 +08:00
// ContainerDestroyed - Container no longer exists,
2014-10-23 07:27:06 +08:00
// Systemerror - System error.
Wait ( ) ( exitStatus int , err error )
2014-10-23 03:06:35 +08:00
// WaitProcess waits on a process owned by the container.
//
2014-10-23 07:27:06 +08:00
// errors:
2014-10-23 03:06:35 +08:00
// ContainerDestroyed - Container no longer exists,
2014-10-23 07:27:06 +08:00
// Systemerror - System error.
WaitProcess ( pid int ) ( exitStatus int , err error )
2015-02-01 11:56:27 +08:00
// OOM returns a read-only channel signaling when the container receives an OOM notification.
//
// errors:
// Systemerror - System error.
OOM ( ) ( <- chan struct { } , error )
2014-05-17 15:06:29 +08:00
}