forked from aws/amazon-ecs-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker_task_engine_state.go
172 lines (144 loc) · 5.13 KB
/
docker_task_engine_state.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
// Copyright 2014-2015 Amazon.com, Inc. or its affiliates. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License"). You may
// not use this file except in compliance with the License. A copy of the
// License is located at
//
// http://aws.amazon.com/apache2.0/
//
// or in the "license" file accompanying this file. This file is distributed
// on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
// express or implied. See the License for the specific language governing
// permissions and limitations under the License.
package dockerstate
import (
"sync"
"github.com/aws/amazon-ecs-agent/agent/api"
"github.com/aws/amazon-ecs-agent/agent/logger"
)
var log = logger.ForModule("dockerstate")
// dockerTaskEngineState keeps track of all mappings between tasks we know about
// and containers docker runs
// It contains a mutex that can be used to ensure out-of-date state cannot be
// accessed before an update comes and to ensure multiple goroutines can safely
// work with it.
//
// The methods on it will aquire the read lock, but not all aquire the write
// lock (sometimes it is up to the caller). This is because the write lock for
// containers should encapsulate the creation of the resource as well as adding,
// and creating the resource (docker container) is outside the scope of this
// package. This isn't ideal usage and I'm open to this being reworked/improved.
//
// Some information is duplicated in the interest of having efficient lookups
type DockerTaskEngineState struct {
lock sync.RWMutex
tasks map[string]*api.Task // taskarn -> api.Task
idToTask map[string]string // DockerId -> taskarn
taskToId map[string]map[string]*api.DockerContainer // taskarn -> (containername -> api.DockerContainer)
idToContainer map[string]*api.DockerContainer // DockerId -> api.DockerContainer
}
func NewDockerTaskEngineState() *DockerTaskEngineState {
return &DockerTaskEngineState{
tasks: make(map[string]*api.Task),
idToTask: make(map[string]string),
taskToId: make(map[string]map[string]*api.DockerContainer),
idToContainer: make(map[string]*api.DockerContainer),
}
}
func (state *DockerTaskEngineState) ContainerById(id string) (*api.DockerContainer, bool) {
state.lock.RLock()
defer state.lock.RUnlock()
c, ok := state.idToContainer[id]
return c, ok
}
func (state *DockerTaskEngineState) ContainerMapByArn(arn string) (map[string]*api.DockerContainer, bool) {
state.lock.RLock()
defer state.lock.RUnlock()
ret, ok := state.taskToId[arn]
return ret, ok
}
// TaskById retrieves the task of a given docker container id
func (state *DockerTaskEngineState) TaskById(cid string) (*api.Task, bool) {
state.lock.RLock()
defer state.lock.RUnlock()
arn, found := state.idToTask[cid]
if !found {
return nil, false
}
return state.taskByArn(arn)
}
// AddTask adds a new task to the state
func (state *DockerTaskEngineState) AddTask(task *api.Task) {
state.lock.Lock()
defer state.lock.Unlock()
state.tasks[task.Arn] = task
return
}
// RemoveTask removes a task from this state. It removes all containers and
// other associated metadata. It does aquire the write lock.
func (state *DockerTaskEngineState) RemoveTask(task *api.Task) {
state.lock.Lock()
defer state.lock.Unlock()
task, ok := state.tasks[task.Arn]
if !ok {
return
}
delete(state.tasks, task.Arn)
containerMap, ok := state.taskToId[task.Arn]
if !ok {
return
}
delete(state.taskToId, task.Arn)
for _, dockerContainer := range containerMap {
delete(state.idToTask, dockerContainer.DockerId)
delete(state.idToContainer, dockerContainer.DockerId)
}
}
// AddContainer adds a container to the state.
// If the container has been added with only a name and no docker-id, this
// updates the state to include the docker id
func (state *DockerTaskEngineState) AddContainer(container *api.DockerContainer, task *api.Task) {
state.lock.Lock()
defer state.lock.Unlock()
if task == nil || container == nil {
log.Crit("Addcontainer called with nil task/container")
return
}
_, exists := state.tasks[task.Arn]
if !exists {
log.Debug("AddContainer called with unknown task; adding", "arn", task.Arn)
state.tasks[task.Arn] = task
}
if container.DockerId != "" {
state.idToTask[container.DockerId] = task.Arn
}
existingMap, exists := state.taskToId[task.Arn]
if !exists {
existingMap = make(map[string]*api.DockerContainer, len(task.Containers))
state.taskToId[task.Arn] = existingMap
}
existingMap[container.Container.Name] = container
if container.DockerId != "" {
state.idToContainer[container.DockerId] = container
}
}
func (state *DockerTaskEngineState) TaskByArn(arn string) (*api.Task, bool) {
state.lock.RLock()
defer state.lock.RUnlock()
return state.taskByArn(arn)
}
func (state *DockerTaskEngineState) taskByArn(arn string) (*api.Task, bool) {
t, ok := state.tasks[arn]
return t, ok
}
func (state *DockerTaskEngineState) AllTasks() []*api.Task {
state.lock.RLock()
defer state.lock.RUnlock()
ret := make([]*api.Task, len(state.tasks))
ndx := 0
for _, task := range state.tasks {
ret[ndx] = task
ndx += 1
}
return ret
}