forked from cloudfoundry/executor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresources.go
371 lines (308 loc) · 9.96 KB
/
resources.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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
package executor
import (
"errors"
"time"
"code.cloudfoundry.org/bbs/models"
)
type State string
type DiskLimitScope uint8
const (
StateInvalid State = ""
StateReserved State = "reserved"
StateInitializing State = "initializing"
StateCreated State = "created"
StateRunning State = "running"
StateCompleted State = "completed"
)
const (
ExclusiveDiskLimit DiskLimitScope = iota
TotalDiskLimit DiskLimitScope = iota
)
const (
HealthcheckTag = "executor-healthcheck"
HealthcheckTagValue = "executor-healthcheck"
)
type ProxyPortMapping struct {
AppPort uint16 `json:"app_port"`
ProxyPort uint16 `json:"proxy_port"`
}
type Container struct {
Guid string `json:"guid"`
Resource
RunInfo
Tags Tags
State State `json:"state"`
AllocatedAt int64 `json:"allocated_at"`
ExternalIP string `json:"external_ip"`
InternalIP string `json:"internal_ip"`
RunResult ContainerRunResult `json:"run_result"`
MemoryLimit uint64 `json:"memory_limit"`
DiskLimit uint64 `json:"disk_limit"`
}
func NewContainerFromResource(guid string, resource *Resource, tags Tags) Container {
return Container{
Guid: guid,
Resource: *resource,
Tags: tags,
}
}
func (c *Container) ValidateTransitionTo(newState State) bool {
if newState == StateCompleted {
return true
}
switch c.State {
case StateReserved:
return newState == StateInitializing
case StateInitializing:
return newState == StateCreated
case StateCreated:
return newState == StateRunning
default:
return false
}
}
func (c *Container) TransistionToInitialize(req *RunRequest) error {
if !c.ValidateTransitionTo(StateInitializing) {
return ErrInvalidTransition
}
c.State = StateInitializing
c.RunInfo = req.RunInfo
c.Tags.Add(req.Tags)
return nil
}
func (c *Container) TransitionToCreate() error {
if !c.ValidateTransitionTo(StateCreated) {
return ErrInvalidTransition
}
c.State = StateCreated
return nil
}
func (c *Container) TransitionToComplete(failed bool, failureReason string, retryable bool) {
c.RunResult.Failed = failed
c.RunResult.FailureReason = failureReason
c.RunResult.Retryable = retryable
c.State = StateCompleted
}
func (newContainer Container) Copy() Container {
newContainer.Tags = newContainer.Tags.Copy()
return newContainer
}
func (c *Container) IsCreated() bool {
return c.State != StateReserved && c.State != StateInitializing && c.State != StateCompleted
}
func (c *Container) HasTags(tags Tags) bool {
if c.Tags == nil {
return tags == nil
}
if tags == nil {
return false
}
for key, val := range tags {
v, ok := c.Tags[key]
if !ok || val != v {
return false
}
}
return true
}
func NewReservedContainerFromAllocationRequest(req *AllocationRequest, allocatedAt int64) Container {
c := NewContainerFromResource(req.Guid, &req.Resource, req.Tags)
c.State = StateReserved
c.AllocatedAt = allocatedAt
return c
}
type Resource struct {
MemoryMB int `json:"memory_mb"`
DiskMB int `json:"disk_mb"`
MaxPids int `json:"max_pids"`
RootFSPath string `json:"rootfs"`
}
func NewResource(memoryMB, diskMB, maxPids int, rootFSPath string) Resource {
return Resource{
MemoryMB: memoryMB,
DiskMB: diskMB,
MaxPids: maxPids,
RootFSPath: rootFSPath,
}
}
type CachedDependency struct {
Name string `json:"name"`
From string `json:"from"`
To string `json:"to"`
CacheKey string `json:"cache_key"`
LogSource string `json:"log_source"`
ChecksumValue string `json:"checksum_value"`
ChecksumAlgorithm string `json:"checksum_algorithm"`
}
type CertificateProperties struct {
OrganizationalUnit []string `json:"organizational_unit"`
}
type RunInfo struct {
CPUWeight uint `json:"cpu_weight"`
DiskScope DiskLimitScope `json:"disk_scope,omitempty"`
Ports []PortMapping `json:"ports"`
LogConfig LogConfig `json:"log_config"`
MetricsConfig MetricsConfig `json:"metrics_config"`
StartTimeoutMs uint `json:"start_timeout_ms"`
Privileged bool `json:"privileged"`
CachedDependencies []CachedDependency `json:"cached_dependencies"`
Setup *models.Action `json:"setup"`
Action *models.Action `json:"run"`
Monitor *models.Action `json:"monitor"`
CheckDefinition *models.CheckDefinition `json:"check_definition"`
EgressRules []*models.SecurityGroupRule `json:"egress_rules,omitempty"`
Env []EnvironmentVariable `json:"env,omitempty"`
TrustedSystemCertificatesPath string `json:"trusted_system_certificates_path,omitempty"`
VolumeMounts []VolumeMount `json:"volume_mounts"`
Network *Network `json:"network,omitempty"`
CertificateProperties CertificateProperties `json:"certificate_properties"`
ImageUsername string `json:"image_username"`
ImagePassword string `json:"image_password"`
EnableContainerProxy bool `json:"enable_container_proxy"`
}
type BindMountMode uint8
const (
BindMountModeRO BindMountMode = 0
BindMountModeRW BindMountMode = 1
)
type VolumeMount struct {
Driver string `json:"driver"`
VolumeId string `json:"volume_id"`
Config map[string]interface{} `json:"config"`
ContainerPath string `json:"container_path"`
Mode BindMountMode `json:"mode"`
}
type Network struct {
Properties map[string]string `json:"properties,omitempty"`
}
type InnerContainer Container
type EnvironmentVariable struct {
Name string `json:"name"`
Value string `json:"value"`
}
type ContainerMetrics struct {
MemoryUsageInBytes uint64 `json:"memory_usage_in_bytes"`
DiskUsageInBytes uint64 `json:"disk_usage_in_bytes"`
MemoryLimitInBytes uint64 `json:"memory_limit_in_bytes"`
DiskLimitInBytes uint64 `json:"disk_limit_in_bytes"`
TimeSpentInCPU time.Duration `json:"time_spent_in_cpu"`
}
type MetricsConfig struct {
Guid string `json:"guid"`
Index int `json:"index"`
}
type Metrics struct {
MetricsConfig
ContainerMetrics
}
type LogConfig struct {
Guid string `json:"guid"`
Index int `json:"index"`
SourceName string `json:"source_name"`
}
type PortMapping struct {
ContainerPort uint16 `json:"container_port"`
HostPort uint16 `json:"host_port,omitempty"`
ContainerTLSProxyPort uint16 `json:"container_tls_proxy_port,omitempty"`
HostTLSProxyPort uint16 `json:"host_tls_proxy_port,omitempty"`
}
type ContainerRunResult struct {
Failed bool `json:"failed"`
FailureReason string `json:"failure_reason"`
Retryable bool
Stopped bool `json:"stopped"`
}
type ExecutorResources struct {
MemoryMB int `json:"memory_mb"`
DiskMB int `json:"disk_mb"`
Containers int `json:"containers"`
}
func NewExecutorResources(memoryMB, diskMB, containers int) ExecutorResources {
return ExecutorResources{
MemoryMB: memoryMB,
DiskMB: diskMB,
Containers: containers,
}
}
func (e ExecutorResources) Copy() ExecutorResources {
return e
}
func (r *ExecutorResources) canSubtract(res *Resource) bool {
return r.MemoryMB >= res.MemoryMB && r.DiskMB >= res.DiskMB && r.Containers > 0
}
func (r *ExecutorResources) Subtract(res *Resource) bool {
if !r.canSubtract(res) {
return false
}
r.MemoryMB -= res.MemoryMB
r.DiskMB -= res.DiskMB
r.Containers -= 1
return true
}
func (r *ExecutorResources) Add(res *Resource) {
r.MemoryMB += res.MemoryMB
r.DiskMB += res.DiskMB
r.Containers += 1
}
type Tags map[string]string
func (t Tags) Copy() Tags {
if t == nil {
return nil
}
newTags := make(Tags, len(t))
newTags.Add(t)
return newTags
}
func (t Tags) Add(other Tags) {
for key := range other {
t[key] = other[key]
}
}
type Event interface {
EventType() EventType
}
type EventType string
var ErrUnknownEventType = errors.New("unknown event type")
const (
EventTypeInvalid EventType = ""
EventTypeContainerComplete EventType = "container_complete"
EventTypeContainerRunning EventType = "container_running"
EventTypeContainerReserved EventType = "container_reserved"
)
type LifecycleEvent interface {
Container() Container
lifecycleEvent()
}
type ContainerCompleteEvent struct {
RawContainer Container `json:"container"`
}
func NewContainerCompleteEvent(container Container) ContainerCompleteEvent {
return ContainerCompleteEvent{
RawContainer: container,
}
}
func (ContainerCompleteEvent) EventType() EventType { return EventTypeContainerComplete }
func (e ContainerCompleteEvent) Container() Container { return e.RawContainer }
func (ContainerCompleteEvent) lifecycleEvent() {}
type ContainerRunningEvent struct {
RawContainer Container `json:"container"`
}
func NewContainerRunningEvent(container Container) ContainerRunningEvent {
return ContainerRunningEvent{
RawContainer: container,
}
}
func (ContainerRunningEvent) EventType() EventType { return EventTypeContainerRunning }
func (e ContainerRunningEvent) Container() Container { return e.RawContainer }
func (ContainerRunningEvent) lifecycleEvent() {}
type ContainerReservedEvent struct {
RawContainer Container `json:"container"`
}
func NewContainerReservedEvent(container Container) ContainerReservedEvent {
return ContainerReservedEvent{
RawContainer: container,
}
}
func (ContainerReservedEvent) EventType() EventType { return EventTypeContainerReserved }
func (e ContainerReservedEvent) Container() Container { return e.RawContainer }
func (ContainerReservedEvent) lifecycleEvent() {}