2016-03-18 14:53:27 -04:00
|
|
|
package libcontainerd
|
|
|
|
|
2016-08-17 18:46:28 -04:00
|
|
|
import (
|
2017-09-22 09:52:41 -04:00
|
|
|
"time"
|
|
|
|
|
2016-08-17 18:46:28 -04:00
|
|
|
"github.com/Microsoft/hcsshim"
|
2017-08-08 17:21:56 -04:00
|
|
|
opengcs "github.com/Microsoft/opengcs/client"
|
2016-08-17 18:46:28 -04:00
|
|
|
)
|
2016-03-18 14:53:27 -04:00
|
|
|
|
2016-08-17 18:46:28 -04:00
|
|
|
// Summary contains a ProcessList item from HCS to support `top`
|
|
|
|
type Summary hcsshim.ProcessListItem
|
2016-03-20 18:58:23 -04:00
|
|
|
|
2017-09-22 09:52:41 -04:00
|
|
|
// Stats contains statistics from HCS
|
|
|
|
type Stats struct {
|
|
|
|
Read time.Time
|
|
|
|
HCSStats *hcsshim.Statistics
|
2016-04-01 20:02:38 -04:00
|
|
|
}
|
|
|
|
|
2017-09-22 09:52:41 -04:00
|
|
|
func interfaceToStats(read time.Time, v interface{}) *Stats {
|
|
|
|
return &Stats{
|
|
|
|
HCSStats: v.(*hcsshim.Statistics),
|
|
|
|
Read: read,
|
|
|
|
}
|
|
|
|
}
|
2016-03-18 14:53:27 -04:00
|
|
|
|
|
|
|
// Resources defines updatable container resource values.
|
|
|
|
type Resources struct{}
|
2016-04-13 16:34:07 -04:00
|
|
|
|
2017-08-01 14:57:50 -04: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
|
|
|
|
}
|