ctop/containermap.go

171 lines
3.5 KiB
Go
Raw Normal View History

2016-12-30 22:17:46 +00:00
package main
import (
2017-01-12 19:24:12 +00:00
"sort"
2017-02-07 03:33:09 +00:00
"github.com/bcicen/ctop/config"
2017-02-23 02:03:55 +00:00
"github.com/bcicen/ctop/metrics"
2016-12-30 22:17:46 +00:00
"github.com/fsouza/go-dockerclient"
)
type ContainerMap struct {
client *docker.Client
containers Containers
collectors map[string]metrics.Collector
needsRefresh map[string]int // container IDs requiring refresh
}
2016-12-30 22:17:46 +00:00
func NewContainerMap() *ContainerMap {
// init docker client
client, err := docker.NewClient(config.GetVal("dockerHost"))
if err != nil {
panic(err)
}
cm := &ContainerMap{
client: client,
collectors: make(map[string]metrics.Collector),
needsRefresh: make(map[string]int),
2016-12-30 22:17:46 +00:00
}
cm.refreshAll()
go cm.watch()
return cm
2016-12-30 22:17:46 +00:00
}
// Docker events watcher
func (cm *ContainerMap) watch() {
log.Info("docker event listener starting")
events := make(chan *docker.APIEvents)
cm.client.AddEventListener(events)
for e := range events {
cm.handleEvent(e)
}
}
// Docker event handler
func (cm *ContainerMap) handleEvent(e *docker.APIEvents) {
// only process container events
if e.Type != "container" {
return
}
switch e.Action {
case "start", "die", "pause", "unpause":
cm.needsRefresh[e.ID] = 1
case "destroy":
cm.DelByID(e.ID)
}
}
func (cm *ContainerMap) refresh(id string) {
insp := cm.inspect(id)
// remove container if no longer exists
if insp == nil {
cm.DelByID(id)
return
}
c, ok := cm.Get(id)
// append container struct for new containers
if !ok {
c = &Container{
id: id,
name: insp.Name,
}
c.Collapse()
cm.containers = append(cm.containers, c)
// create collector
if _, ok := cm.collectors[id]; ok == false {
cm.collectors[id] = metrics.NewDocker(cm.client, id)
}
}
c.SetState(insp.State.Status)
2017-02-23 22:00:05 +00:00
// start collector if needed
if c.state == "running" && !cm.collectors[c.id].Running() {
cm.collectors[c.id].Start()
c.Read(cm.collectors[c.id].Stream())
}
}
func (cm *ContainerMap) inspect(id string) *docker.Container {
c, err := cm.client.InspectContainer(id)
if err != nil {
if _, ok := err.(*docker.NoSuchContainer); ok == false {
log.Errorf(err.Error())
}
}
return c
}
func (cm *ContainerMap) refreshAll() {
opts := docker.ListContainersOptions{All: true}
allContainers, err := cm.client.ListContainers(opts)
if err != nil {
panic(err)
}
for _, c := range allContainers {
cm.needsRefresh[c.ID] = 1
}
cm.Update()
}
func (cm *ContainerMap) Update() {
var ids []string
for id, _ := range cm.needsRefresh {
cm.refresh(id)
ids = append(ids, id)
}
for _, id := range ids {
delete(cm.needsRefresh, id)
}
}
// Kill a container by ID
//func (cm *ContainerMap) Kill(id string, sig docker.Signal) error {
//opts := docker.KillContainerOptions{
//ID: id,
//Signal: sig,
//}
//return cm.client.KillContainer(opts)
//}
2016-12-30 22:17:46 +00:00
// Return number of containers/rows
func (cm *ContainerMap) Len() uint {
return uint(len(cm.containers))
}
// Get a single container, by ID
2017-02-23 22:00:05 +00:00
func (cm *ContainerMap) Get(id string) (*Container, bool) {
for _, c := range cm.containers {
if c.id == id {
return c, true
}
}
return nil, false
2016-12-30 22:17:46 +00:00
}
// Remove containers by ID
func (cm *ContainerMap) DelByID(id string) {
for n, c := range cm.containers {
if c.id == id {
cm.Del(n)
return
}
}
}
2017-02-23 22:00:05 +00:00
// Remove one or more containers by index
func (cm *ContainerMap) Del(idx ...int) {
for _, i := range idx {
cm.containers = append(cm.containers[:i], cm.containers[i+1:]...)
}
}
2017-01-03 17:37:09 +00:00
// Return array of all containers, sorted by field
2016-12-30 22:17:46 +00:00
func (cm *ContainerMap) All() []*Container {
2017-02-23 22:00:05 +00:00
sort.Sort(cm.containers)
return cm.containers
2016-12-30 22:17:46 +00:00
}