forked from cloudfoundry-attic/receptor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
resources.go
522 lines (441 loc) · 15.7 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
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
package receptor
import (
"encoding/json"
"github.com/cloudfoundry-incubator/runtime-schema/models"
)
type EnvironmentVariable struct {
Name string `json:"name"`
Value string `json:"value"`
}
type PortMapping struct {
ContainerPort uint16 `json:"container_port"`
HostPort uint16 `json:"host_port,omitempty"`
}
const (
TaskStateInvalid = "INVALID"
TaskStatePending = "PENDING"
TaskStateRunning = "RUNNING"
TaskStateCompleted = "COMPLETED"
TaskStateResolving = "RESOLVING"
)
type TaskCreateRequest struct {
Action models.Action `json:"-"`
Annotation string `json:"annotation,omitempty"`
CompletionCallbackURL string `json:"completion_callback_url"`
CPUWeight uint `json:"cpu_weight"`
DiskMB int `json:"disk_mb"`
Domain string `json:"domain"`
LogGuid string `json:"log_guid"`
LogSource string `json:"log_source"`
MemoryMB int `json:"memory_mb"`
ResultFile string `json:"result_file"`
Stack string `json:"stack"`
TaskGuid string `json:"task_guid"`
RootFSPath string `json:"rootfs"`
Privileged bool `json:"privileged"`
EnvironmentVariables []EnvironmentVariable `json:"env,omitempty"`
EgressRules []models.SecurityGroupRule `json:"egress_rules,omitempty"`
}
type InnerTaskCreateRequest TaskCreateRequest
type mTaskCreateRequest struct {
ActionRaw json.RawMessage `json:"action"`
*InnerTaskCreateRequest
}
func (request TaskCreateRequest) MarshalJSON() ([]byte, error) {
actionRaw, err := models.MarshalAction(request.Action)
if err != nil {
return nil, err
}
innerRequest := InnerTaskCreateRequest(request)
mRequest := &mTaskCreateRequest{
ActionRaw: actionRaw,
InnerTaskCreateRequest: &innerRequest,
}
return json.Marshal(mRequest)
}
func (request *TaskCreateRequest) UnmarshalJSON(payload []byte) error {
mRequest := &mTaskCreateRequest{InnerTaskCreateRequest: (*InnerTaskCreateRequest)(request)}
err := json.Unmarshal(payload, mRequest)
if err != nil {
return err
}
var a models.Action
if mRequest.ActionRaw == nil {
a = nil
} else {
a, err = models.UnmarshalAction(mRequest.ActionRaw)
if err != nil {
return err
}
}
request.Action = a
return nil
}
type TaskResponse struct {
Action models.Action `json:"-"`
Annotation string `json:"annotation,omitempty"`
CompletionCallbackURL string `json:"completion_callback_url"`
CPUWeight uint `json:"cpu_weight"`
DiskMB int `json:"disk_mb"`
Domain string `json:"domain"`
LogGuid string `json:"log_guid"`
LogSource string `json:"log_source"`
MemoryMB int `json:"memory_mb"`
ResultFile string `json:"result_file"`
Stack string `json:"stack"`
TaskGuid string `json:"task_guid"`
RootFSPath string `json:"rootfs"`
Privileged bool `json:"privileged"`
EnvironmentVariables []EnvironmentVariable `json:"env,omitempty"`
CellID string `json:"cell_id"`
CreatedAt int64 `json:"created_at"`
Failed bool `json:"failed"`
FailureReason string `json:"failure_reason"`
Result string `json:"result"`
State string `json:"state"`
EgressRules []models.SecurityGroupRule `json:"egress_rules,omitempty"`
}
type InnerTaskResponse TaskResponse
type mTaskResponse struct {
ActionRaw json.RawMessage `json:"action"`
*InnerTaskResponse
}
func (response TaskResponse) MarshalJSON() ([]byte, error) {
actionRaw, err := models.MarshalAction(response.Action)
if err != nil {
return nil, err
}
innerResponse := InnerTaskResponse(response)
mResponse := &mTaskResponse{
ActionRaw: actionRaw,
InnerTaskResponse: &innerResponse,
}
return json.Marshal(mResponse)
}
func (response *TaskResponse) UnmarshalJSON(payload []byte) error {
mResponse := &mTaskResponse{InnerTaskResponse: (*InnerTaskResponse)(response)}
err := json.Unmarshal(payload, mResponse)
if err != nil {
return err
}
var a models.Action
if mResponse.ActionRaw == nil {
a = nil
} else {
a, err = models.UnmarshalAction(mResponse.ActionRaw)
if err != nil {
return err
}
}
response.Action = a
return nil
}
type RoutingInfo map[string]*json.RawMessage
type DesiredLRPCreateRequest struct {
ProcessGuid string `json:"process_guid"`
Domain string `json:"domain"`
RootFSPath string `json:"rootfs"`
Instances int `json:"instances"`
Stack string `json:"stack"`
EnvironmentVariables []EnvironmentVariable `json:"env,omitempty"`
Setup models.Action `json:"-"`
Action models.Action `json:"-"`
Monitor models.Action `json:"-"`
StartTimeout uint `json:"start_timeout"`
DiskMB int `json:"disk_mb"`
MemoryMB int `json:"memory_mb"`
CPUWeight uint `json:"cpu_weight"`
Privileged bool `json:"privileged"`
Ports []uint16 `json:"ports"`
Routes RoutingInfo `json:"routes,omitempty"`
LogGuid string `json:"log_guid"`
LogSource string `json:"log_source"`
Annotation string `json:"annotation,omitempty"`
EgressRules []models.SecurityGroupRule `json:"egress_rules,omitempty"`
}
type InnerDesiredLRPCreateRequest DesiredLRPCreateRequest
type mDesiredLRPCreateRequest struct {
SetupRaw *json.RawMessage `json:"setup,omitempty"`
ActionRaw *json.RawMessage `json:"action"`
MonitorRaw *json.RawMessage `json:"monitor,omitempty"`
*InnerDesiredLRPCreateRequest
}
func (request DesiredLRPCreateRequest) MarshalJSON() ([]byte, error) {
var setupRaw, actionRaw, monitorRaw *json.RawMessage
if request.Action != nil {
raw, err := models.MarshalAction(request.Action)
if err != nil {
return nil, err
}
rm := json.RawMessage(raw)
actionRaw = &rm
}
if request.Setup != nil {
raw, err := models.MarshalAction(request.Setup)
if err != nil {
return nil, err
}
rm := json.RawMessage(raw)
setupRaw = &rm
}
if request.Monitor != nil {
raw, err := models.MarshalAction(request.Monitor)
if err != nil {
return nil, err
}
rm := json.RawMessage(raw)
monitorRaw = &rm
}
innerRequest := InnerDesiredLRPCreateRequest(request)
mRequest := &mDesiredLRPCreateRequest{
SetupRaw: setupRaw,
ActionRaw: actionRaw,
MonitorRaw: monitorRaw,
InnerDesiredLRPCreateRequest: &innerRequest,
}
return json.Marshal(mRequest)
}
func (request *DesiredLRPCreateRequest) UnmarshalJSON(payload []byte) error {
mRequest := &mDesiredLRPCreateRequest{InnerDesiredLRPCreateRequest: (*InnerDesiredLRPCreateRequest)(request)}
err := json.Unmarshal(payload, mRequest)
if err != nil {
return err
}
var a models.Action
if mRequest.ActionRaw == nil {
a = nil
} else {
a, err = models.UnmarshalAction(*mRequest.ActionRaw)
if err != nil {
return err
}
}
request.Action = a
if mRequest.SetupRaw == nil {
a = nil
} else {
a, err = models.UnmarshalAction(*mRequest.SetupRaw)
if err != nil {
return err
}
}
request.Setup = a
if mRequest.MonitorRaw == nil {
a = nil
} else {
a, err = models.UnmarshalAction(*mRequest.MonitorRaw)
if err != nil {
return err
}
}
request.Monitor = a
return nil
}
type DesiredLRPUpdateRequest struct {
Instances *int `json:"instances,omitempty"`
Routes RoutingInfo `json:"routes,omitempty"`
Annotation *string `json:"annotation,omitempty"`
}
type DesiredLRPResponse struct {
ProcessGuid string `json:"process_guid"`
Domain string `json:"domain"`
RootFSPath string `json:"rootfs"`
Instances int `json:"instances"`
Stack string `json:"stack"`
EnvironmentVariables []EnvironmentVariable `json:"env,omitempty"`
Setup models.Action `json:"setup"`
Action models.Action `json:"action"`
Monitor models.Action `json:"monitor"`
StartTimeout uint `json:"start_timeout"`
DiskMB int `json:"disk_mb"`
MemoryMB int `json:"memory_mb"`
CPUWeight uint `json:"cpu_weight"`
Privileged bool `json:"privileged"`
Ports []uint16 `json:"ports"`
Routes RoutingInfo `json:"routes,omitempty"`
LogGuid string `json:"log_guid"`
LogSource string `json:"log_source"`
Annotation string `json:"annotation,omitempty"`
EgressRules []models.SecurityGroupRule `json:"egress_rules,omitempty"`
}
type InnerDesiredLRPResponse DesiredLRPResponse
type mDesiredLRPResponse struct {
SetupRaw *json.RawMessage `json:"setup,omitempty"`
ActionRaw *json.RawMessage `json:"action"`
MonitorRaw *json.RawMessage `json:"monitor,omitempty"`
*InnerDesiredLRPResponse
}
func (response DesiredLRPResponse) MarshalJSON() ([]byte, error) {
var setupRaw, actionRaw, monitorRaw *json.RawMessage
if response.Action != nil {
raw, err := models.MarshalAction(response.Action)
if err != nil {
return nil, err
}
rm := json.RawMessage(raw)
actionRaw = &rm
}
if response.Setup != nil {
raw, err := models.MarshalAction(response.Setup)
if err != nil {
return nil, err
}
rm := json.RawMessage(raw)
setupRaw = &rm
}
if response.Monitor != nil {
raw, err := models.MarshalAction(response.Monitor)
if err != nil {
return nil, err
}
rm := json.RawMessage(raw)
monitorRaw = &rm
}
innerResponse := InnerDesiredLRPResponse(response)
mResponse := &mDesiredLRPResponse{
SetupRaw: setupRaw,
ActionRaw: actionRaw,
MonitorRaw: monitorRaw,
InnerDesiredLRPResponse: &innerResponse,
}
return json.Marshal(mResponse)
}
func (response *DesiredLRPResponse) UnmarshalJSON(payload []byte) error {
mResponse := &mDesiredLRPResponse{InnerDesiredLRPResponse: (*InnerDesiredLRPResponse)(response)}
err := json.Unmarshal(payload, mResponse)
if err != nil {
return err
}
var a models.Action
if mResponse.ActionRaw == nil {
a = nil
} else {
a, err = models.UnmarshalAction(*mResponse.ActionRaw)
if err != nil {
return err
}
}
response.Action = a
if mResponse.SetupRaw == nil {
a = nil
} else {
a, err = models.UnmarshalAction(*mResponse.SetupRaw)
if err != nil {
return err
}
}
response.Setup = a
if mResponse.MonitorRaw == nil {
a = nil
} else {
a, err = models.UnmarshalAction(*mResponse.MonitorRaw)
if err != nil {
return err
}
}
response.Monitor = a
return nil
}
type ActualLRPState string
const (
ActualLRPStateInvalid ActualLRPState = "INVALID"
ActualLRPStateUnclaimed ActualLRPState = "UNCLAIMED"
ActualLRPStateClaimed ActualLRPState = "CLAIMED"
ActualLRPStateRunning ActualLRPState = "RUNNING"
ActualLRPStateCrashed ActualLRPState = "CRASHED"
)
type ActualLRPResponse struct {
ProcessGuid string `json:"process_guid"`
InstanceGuid string `json:"instance_guid"`
CellID string `json:"cell_id"`
Domain string `json:"domain"`
Index int `json:"index"`
Address string `json:"address"`
Ports []PortMapping `json:"ports"`
State ActualLRPState `json:"state"`
CrashCount int `json:"crash_count"`
PlacementError string `json:"placement_error,omitempty"`
Since int64 `json:"since"`
}
type CellResponse struct {
CellID string `json:"cell_id"`
Stack string `json:"stack"`
Zone string `json:"zone"`
Capacity CellCapacity `json:"capacity"`
}
type CellCapacity struct {
MemoryMB int `json:"memory_mb"`
DiskMB int `json:"disk_mb"`
Containers int `json:"containers"`
}
type Event interface {
EventType() EventType
}
type EventType string
const (
EventTypeInvalid EventType = ""
EventTypeDesiredLRPCreated EventType = "desired_lrp_created"
EventTypeDesiredLRPChanged EventType = "desired_lrp_changed"
EventTypeDesiredLRPRemoved EventType = "desired_lrp_removed"
EventTypeActualLRPCreated EventType = "actual_lrp_created"
EventTypeActualLRPChanged EventType = "actual_lrp_changed"
EventTypeActualLRPRemoved EventType = "actual_lrp_removed"
)
type DesiredLRPCreatedEvent struct {
DesiredLRPResponse DesiredLRPResponse `json:"desired_lrp"`
}
func NewDesiredLRPCreatedEvent(desiredLRP DesiredLRPResponse) DesiredLRPCreatedEvent {
return DesiredLRPCreatedEvent{
DesiredLRPResponse: desiredLRP,
}
}
func (DesiredLRPCreatedEvent) EventType() EventType { return EventTypeDesiredLRPCreated }
type DesiredLRPChangedEvent struct {
Before DesiredLRPResponse `json:"desired_lrp_before"`
After DesiredLRPResponse `json:"desired_lrp_after"`
}
func NewDesiredLRPChangedEvent(before, after DesiredLRPResponse) DesiredLRPChangedEvent {
return DesiredLRPChangedEvent{
Before: before,
After: after,
}
}
func (DesiredLRPChangedEvent) EventType() EventType { return EventTypeDesiredLRPChanged }
type DesiredLRPRemovedEvent struct {
DesiredLRPResponse DesiredLRPResponse `json:"desired_lrp"`
}
func NewDesiredLRPRemovedEvent(desiredLRP DesiredLRPResponse) DesiredLRPRemovedEvent {
return DesiredLRPRemovedEvent{
DesiredLRPResponse: desiredLRP,
}
}
func (DesiredLRPRemovedEvent) EventType() EventType { return EventTypeDesiredLRPRemoved }
type ActualLRPCreatedEvent struct {
ActualLRPResponse ActualLRPResponse `json:"actual_lrp"`
}
func NewActualLRPCreatedEvent(actualLRP ActualLRPResponse) ActualLRPCreatedEvent {
return ActualLRPCreatedEvent{
ActualLRPResponse: actualLRP,
}
}
func (ActualLRPCreatedEvent) EventType() EventType { return EventTypeActualLRPCreated }
type ActualLRPChangedEvent struct {
Before ActualLRPResponse `json:"actual_lrp_before"`
After ActualLRPResponse `json:"actual_lrp_after"`
}
func NewActualLRPChangedEvent(before, after ActualLRPResponse) ActualLRPChangedEvent {
return ActualLRPChangedEvent{
Before: before,
After: after,
}
}
func (ActualLRPChangedEvent) EventType() EventType { return EventTypeActualLRPChanged }
type ActualLRPRemovedEvent struct {
ActualLRPResponse ActualLRPResponse `json:"actual_lrp"`
}
func NewActualLRPRemovedEvent(actualLRP ActualLRPResponse) ActualLRPRemovedEvent {
return ActualLRPRemovedEvent{
ActualLRPResponse: actualLRP,
}
}
func (ActualLRPRemovedEvent) EventType() EventType { return EventTypeActualLRPRemoved }