forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprocess_resource.go
142 lines (122 loc) · 4.56 KB
/
process_resource.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
package resources
import (
"encoding/json"
"fmt"
"code.cloudfoundry.org/cli/api/cloudcontroller"
"code.cloudfoundry.org/cli/api/cloudcontroller/ccv3/constant"
"code.cloudfoundry.org/cli/types"
)
type Process struct {
GUID string
Type string
// Command is the process start command. Note: This value will be obfuscated when obtained from listing.
Command types.FilteredString
HealthCheckType constant.HealthCheckType
HealthCheckEndpoint string
HealthCheckInvocationTimeout int64
HealthCheckTimeout int64
Instances types.NullInt
MemoryInMB types.NullUint64
DiskInMB types.NullUint64
LogRateLimitInBPS types.NullInt
AppGUID string
}
func (p Process) MarshalJSON() ([]byte, error) {
var ccProcess marshalProcess
marshalCommand(p, &ccProcess)
marshalInstances(p, &ccProcess)
marshalMemory(p, &ccProcess)
marshalDisk(p, &ccProcess)
marshalLogRateLimit(p, &ccProcess)
marshalHealthCheck(p, &ccProcess)
return json.Marshal(ccProcess)
}
func (p *Process) UnmarshalJSON(data []byte) error {
var ccProcess struct {
Command types.FilteredString `json:"command"`
DiskInMB types.NullUint64 `json:"disk_in_mb"`
GUID string `json:"guid"`
Instances types.NullInt `json:"instances"`
MemoryInMB types.NullUint64 `json:"memory_in_mb"`
LogRateLimitInBPS types.NullInt `json:"log_rate_limit_in_bytes_per_second"`
Type string `json:"type"`
Relationships Relationships `json:"relationships"`
HealthCheck struct {
Type constant.HealthCheckType `json:"type"`
Data struct {
Endpoint string `json:"endpoint"`
InvocationTimeout int64 `json:"invocation_timeout"`
Timeout int64 `json:"timeout"`
} `json:"data"`
} `json:"health_check"`
}
err := cloudcontroller.DecodeJSON(data, &ccProcess)
if err != nil {
return err
}
p.Command = ccProcess.Command
p.DiskInMB = ccProcess.DiskInMB
p.GUID = ccProcess.GUID
p.HealthCheckEndpoint = ccProcess.HealthCheck.Data.Endpoint
p.HealthCheckInvocationTimeout = ccProcess.HealthCheck.Data.InvocationTimeout
p.HealthCheckTimeout = ccProcess.HealthCheck.Data.Timeout
p.HealthCheckType = ccProcess.HealthCheck.Type
p.Instances = ccProcess.Instances
p.MemoryInMB = ccProcess.MemoryInMB
p.LogRateLimitInBPS = ccProcess.LogRateLimitInBPS
p.Type = ccProcess.Type
p.AppGUID = ccProcess.Relationships[constant.RelationshipTypeApplication].GUID
return nil
}
type healthCheck struct {
Type constant.HealthCheckType `json:"type,omitempty"`
Data struct {
Endpoint interface{} `json:"endpoint,omitempty"`
InvocationTimeout int64 `json:"invocation_timeout,omitempty"`
Timeout int64 `json:"timeout,omitempty"`
} `json:"data"`
}
type marshalProcess struct {
Command interface{} `json:"command,omitempty"`
Instances json.Number `json:"instances,omitempty"`
MemoryInMB json.Number `json:"memory_in_mb,omitempty"`
DiskInMB json.Number `json:"disk_in_mb,omitempty"`
LogRateLimitInBPS json.Number `json:"log_rate_limit_in_bytes_per_second,omitempty"`
HealthCheck *healthCheck `json:"health_check,omitempty"`
}
func marshalCommand(p Process, ccProcess *marshalProcess) {
if p.Command.IsSet {
ccProcess.Command = &p.Command
}
}
func marshalDisk(p Process, ccProcess *marshalProcess) {
if p.DiskInMB.IsSet {
ccProcess.DiskInMB = json.Number(fmt.Sprint(p.DiskInMB.Value))
}
}
func marshalHealthCheck(p Process, ccProcess *marshalProcess) {
if p.HealthCheckType != "" || p.HealthCheckEndpoint != "" || p.HealthCheckInvocationTimeout != 0 || p.HealthCheckTimeout != 0 {
ccProcess.HealthCheck = new(healthCheck)
ccProcess.HealthCheck.Type = p.HealthCheckType
ccProcess.HealthCheck.Data.InvocationTimeout = p.HealthCheckInvocationTimeout
ccProcess.HealthCheck.Data.Timeout = p.HealthCheckTimeout
if p.HealthCheckEndpoint != "" {
ccProcess.HealthCheck.Data.Endpoint = p.HealthCheckEndpoint
}
}
}
func marshalInstances(p Process, ccProcess *marshalProcess) {
if p.Instances.IsSet {
ccProcess.Instances = json.Number(fmt.Sprint(p.Instances.Value))
}
}
func marshalMemory(p Process, ccProcess *marshalProcess) {
if p.MemoryInMB.IsSet {
ccProcess.MemoryInMB = json.Number(fmt.Sprint(p.MemoryInMB.Value))
}
}
func marshalLogRateLimit(p Process, ccProcess *marshalProcess) {
if p.LogRateLimitInBPS.IsSet {
ccProcess.LogRateLimitInBPS = json.Number(fmt.Sprint(p.LogRateLimitInBPS.Value))
}
}