Embed the extended container information into Container.

At startup, inspect all containers and store the data into the
Container. When new containers are detected, inspect them as well.

Signed-off-by: Andrea Luzzardi <aluzzardi@gmail.com>
This commit is contained in:
Andrea Luzzardi 2014-11-14 17:23:29 -08:00
parent 3241872d75
commit a387265978
3 changed files with 29 additions and 11 deletions

View File

@ -5,6 +5,7 @@ import "github.com/samalba/dockerclient"
type Container struct {
dockerclient.Container
Info dockerclient.ContainerInfo
node *Node
}

36
node.go
View File

@ -70,7 +70,7 @@ func (n *Node) connectClient(client dockerclient.Client) error {
}
// Force a state update before returning.
if err := n.updateState(); err != nil {
if err := n.updateContainers(); err != nil {
n.client = nil
return err
}
@ -107,7 +107,7 @@ func (n *Node) updateSpecs() error {
}
// Refresh the list and status of containers running on the node.
func (n *Node) updateState() error {
func (n *Node) updateContainers() error {
containers, err := n.client.ListContainers(true, false)
if err != nil {
return err
@ -118,17 +118,31 @@ func (n *Node) updateState() error {
n.containers = make(map[string]*Container)
for _, c := range containers {
container := &Container{}
container.Container = c
container.node = n
n.containers[container.Id] = container
if current, exists := n.containers[c.Id]; exists {
// The container exists. Update its state.
current.Container = c
} else {
// This is a brand new container.
container := &Container{}
container.Container = c
container.node = n
info, err := n.client.InspectContainer(container.Id)
if err != nil {
log.Errorf("[%s] Unable to update state of %s", n.ID, c.Id)
continue
}
container.Info = *info
n.containers[container.Id] = container
}
}
log.Debugf("[%s] Updated state", n.ID)
return nil
}
func (n *Node) updateStateAsync() {
func (n *Node) updateContainersAsync() {
n.ch <- true
}
@ -137,9 +151,9 @@ func (n *Node) updateLoop() {
var err error
select {
case <-n.ch:
err = n.updateState()
err = n.updateContainers()
case <-time.After(stateRefreshPeriod):
err = n.updateState()
err = n.updateContainers()
}
if err != nil {
log.Errorf("[%s] Updated state failed: %v", n.ID, err)
@ -171,7 +185,7 @@ func (n *Node) Create(config *dockerclient.ContainerConfig, name string, pullIma
// Register the container immediately while waiting for a state refresh.
// Force a state refresh to pick up the newly created container.
n.updateState()
n.updateContainers()
return n.containers[id], nil
}
@ -233,7 +247,7 @@ func (n *Node) String() string {
func (n *Node) handler(ev *dockerclient.Event, args ...interface{}) {
// Something changed - refresh our internal state.
n.updateState()
n.updateContainers()
// If there is no event handler registered, abort right now.
if n.eventHandler == nil {

View File

@ -67,7 +67,10 @@ func TestNodeState(t *testing.T) {
// The client will return one container at first, then a second one will appear.
client.On("ListContainers", true, false).Return([]dockerclient.Container{{Id: "one"}}, nil).Once()
client.On("InspectContainer", mock.Anything).Return(&dockerclient.ContainerInfo{}, nil).Once()
client.On("ListContainers", true, false).Return([]dockerclient.Container{{Id: "one"}, {Id: "two"}}, nil).Once()
client.On("InspectContainer", mock.Anything).Return(&dockerclient.ContainerInfo{}, nil).Once()
client.On("InspectContainer", mock.Anything).Return(&dockerclient.ContainerInfo{}, nil).Once()
assert.NoError(t, node.connectClient(client))
assert.True(t, node.IsConnected())