2018-02-05 16:05:59 -05:00
|
|
|
package libcontainerd // import "github.com/docker/docker/libcontainerd"
|
2016-03-18 11:53:27 -07:00
|
|
|
|
2016-08-17 15:46:28 -07:00
|
|
|
import (
|
2017-09-22 06:52:41 -07:00
|
|
|
"time"
|
|
|
|
|
2016-08-17 15:46:28 -07:00
|
|
|
"github.com/Microsoft/hcsshim"
|
2017-08-08 14:21:56 -07:00
|
|
|
opengcs "github.com/Microsoft/opengcs/client"
|
2016-08-17 15:46:28 -07:00
|
|
|
)
|
2016-03-18 11:53:27 -07:00
|
|
|
|
2016-08-17 15:46:28 -07:00
|
|
|
// Summary contains a ProcessList item from HCS to support `top`
|
|
|
|
type Summary hcsshim.ProcessListItem
|
2016-03-20 15:58:23 -07:00
|
|
|
|
2017-09-22 06:52:41 -07:00
|
|
|
// Stats contains statistics from HCS
|
|
|
|
type Stats struct {
|
|
|
|
Read time.Time
|
|
|
|
HCSStats *hcsshim.Statistics
|
2016-04-01 17:02:38 -07:00
|
|
|
}
|
|
|
|
|
2017-09-22 06:52:41 -07:00
|
|
|
func interfaceToStats(read time.Time, v interface{}) *Stats {
|
|
|
|
return &Stats{
|
|
|
|
HCSStats: v.(*hcsshim.Statistics),
|
|
|
|
Read: read,
|
|
|
|
}
|
|
|
|
}
|
2016-03-18 11:53:27 -07:00
|
|
|
|
|
|
|
// Resources defines updatable container resource values.
|
|
|
|
type Resources struct{}
|
2016-04-13 13:34:07 -07:00
|
|
|
|
2017-08-01 11:57:50 -07:00
|
|
|
// LCOWOption is a CreateOption required for LCOW configuration
|
|
|
|
type LCOWOption struct {
|
|
|
|
Config *opengcs.Config
|
|
|
|
}
|
|
|
|
|
2016-05-12 10:52:00 -04:00
|
|
|
// Checkpoint holds the details of a checkpoint (not supported in windows)
|
|
|
|
type Checkpoint struct {
|
|
|
|
Name string
|
|
|
|
}
|
|
|
|
|
|
|
|
// Checkpoints contains the details of a checkpoint
|
|
|
|
type Checkpoints struct {
|
|
|
|
Checkpoints []*Checkpoint
|
|
|
|
}
|