forked from stmcginnis/gofish
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclassofservice.go
244 lines (207 loc) · 8.13 KB
/
classofservice.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
//
// SPDX-License-Identifier: BSD-3-Clause
//
package swordfish
import (
"encoding/json"
"github.com/stmcginnis/gofish/common"
)
// ClassOfService shall define a service option composed
// of one or more line of service entities. ITIL defines a service
// option as a choice of utility or warranty for a service.
type ClassOfService struct {
common.Entity
// ODataContext is the odata context.
ODataContext string `json:"@odata.context"`
// ODataType is the odata type.
ODataType string `json:"@odata.type"`
// ClassOfServiceVersion is the version describing the creation or last
// modification of this service option specification. The string
// representing the version shall be in the form: M + '.' + N + '.' + U
// Where: M - The major version (in numeric form). N - The minor version
// (in numeric form). U - The update (e.g. errata or patch in numeric
// form).
ClassOfServiceVersion string
// DataProtectionLinesOfService shall be a set of data protection service
// options. Within a class of service, one data protection service option
// shall be present for each replication session.
dataProtectionLinesOfService []string
// DataProtectionLinesOfServiceCount is the number of DataProtectionLineOfService.
DataProtectionLinesOfServiceCount int `json:"[email protected]"`
// DataSecurityLinesOfService shall be a set of data security service options.
dataSecurityLinesOfService []string
// DataSecurityLinesOfServiceCount is number of DataSecurityLineOfService.
DataSecurityLinesOfServiceCount int `json:"[email protected]"`
// DataStorageLinesOfService shall be a set of data protection service options.
dataStorageLinesOfService []string
// DataStorageLinesOfServiceCount is the number of DataStorageLinesOfService.
DataStorageLinesOfServiceCount int `json:"[email protected]"`
// Description provides a description of this resource.
Description string
// IOConnectivityLinesOfService shall be a set of IO connectivity service
// options. Within a class of service, at most one IO connectivity service
// option may be present for a value of AccessProtocol.
ioConnectivityLinesOfService []string
// IOConnectivityLinesOfServiceCount is the number of IOConnectivityLinesOfService.
IOConnectivityLinesOfServiceCount int `json:"[email protected]"`
// IOPerformanceLinesOfService shall be a set of IO performance service options.
ioPerformanceLinesOfService []string
// IOPerformanceLinesOfServiceCount is the number of IOPerformanceLinesOfService.
IOPerformanceLinesOfServiceCount int `json:"[email protected]"`
// Identifier shall be unique within the managed ecosystem.
Identifier common.Identifier
}
// UnmarshalJSON unmarshals a ClassOfService object from the raw JSON.
func (classofservice *ClassOfService) UnmarshalJSON(b []byte) error {
type temp ClassOfService
var t struct {
temp
DataProtectionLinesOfService common.Links
DataSecurityLinesOfService common.Links
DataStorageLinesOfService common.Links
IOConnectivityLinesOfService common.Links
IOPerformanceLinesOfService common.Links
}
err := json.Unmarshal(b, &t)
if err != nil {
return err
}
// Extract the links to other entities for later
*classofservice = ClassOfService(t.temp)
classofservice.dataProtectionLinesOfService = t.DataProtectionLinesOfService.ToStrings()
classofservice.dataSecurityLinesOfService = t.DataSecurityLinesOfService.ToStrings()
classofservice.dataStorageLinesOfService = t.DataStorageLinesOfService.ToStrings()
classofservice.ioConnectivityLinesOfService = t.IOConnectivityLinesOfService.ToStrings()
classofservice.ioPerformanceLinesOfService = t.IOPerformanceLinesOfService.ToStrings()
return nil
}
// GetClassOfService will get a ClassOfService instance from the service.
func GetClassOfService(c common.Client, uri string) (*ClassOfService, error) {
resp, err := c.Get(uri)
if err != nil {
return nil, err
}
defer resp.Body.Close()
var classofservice ClassOfService
err = json.NewDecoder(resp.Body).Decode(&classofservice)
if err != nil {
return nil, err
}
classofservice.SetClient(c)
return &classofservice, nil
}
// ListReferencedClassOfServices gets the collection of ClassOfService from
// a provided reference.
func ListReferencedClassOfServices(c common.Client, link string) ([]*ClassOfService, error) { //nolint:dupl
var result []*ClassOfService
if link == "" {
return result, nil
}
links, err := common.GetCollection(c, link)
if err != nil {
return result, err
}
collectionError := common.NewCollectionError()
for _, classofserviceLink := range links.ItemLinks {
classofservice, err := GetClassOfService(c, classofserviceLink)
if err != nil {
collectionError.Failures[classofserviceLink] = err
} else {
result = append(result, classofservice)
}
}
if collectionError.Empty() {
return result, nil
}
return result, collectionError
}
// DataProtectionLinesOfServices gets the DataProtectionLinesOfService that are
// part of this ClassOfService.
func (classofservice *ClassOfService) DataProtectionLinesOfServices() ([]*DataProtectionLineOfService, error) {
var result []*DataProtectionLineOfService
collectionError := common.NewCollectionError()
for _, dpLosLink := range classofservice.dataProtectionLinesOfService {
dpLos, err := GetDataProtectionLineOfService(classofservice.Client, dpLosLink)
if err != nil {
collectionError.Failures[dpLosLink] = err
} else {
result = append(result, dpLos)
}
}
if collectionError.Empty() {
return result, nil
}
return result, collectionError
}
// DataSecurityLinesOfServices gets the DataSecurityLinesOfService that are
// part of this ClassOfService.
func (classofservice *ClassOfService) DataSecurityLinesOfServices() ([]*DataSecurityLineOfService, error) {
var result []*DataSecurityLineOfService
collectionError := common.NewCollectionError()
for _, dsLosLink := range classofservice.dataSecurityLinesOfService {
dsLos, err := GetDataSecurityLineOfService(classofservice.Client, dsLosLink)
if err != nil {
collectionError.Failures[dsLosLink] = err
} else {
result = append(result, dsLos)
}
}
if collectionError.Empty() {
return result, nil
}
return result, collectionError
}
// DataStorageLinesOfServices gets the DataStorageLinesOfService that are
// part of this ClassOfService.
func (classofservice *ClassOfService) DataStorageLinesOfServices() ([]*DataStorageLineOfService, error) {
var result []*DataStorageLineOfService
collectionError := common.NewCollectionError()
for _, dsLosLink := range classofservice.dataStorageLinesOfService {
dsLos, err := GetDataStorageLineOfService(classofservice.Client, dsLosLink)
if err != nil {
collectionError.Failures[dsLosLink] = err
} else {
result = append(result, dsLos)
}
}
if collectionError.Empty() {
return result, nil
}
return result, collectionError
}
// IOConnectivityLinesOfServices gets the IOConnectivityLinesOfService that are
// part of this ClassOfService.
func (classofservice *ClassOfService) IOConnectivityLinesOfServices() ([]*IOConnectivityLineOfService, error) {
var result []*IOConnectivityLineOfService
collectionError := common.NewCollectionError()
for _, ioLosLink := range classofservice.dataSecurityLinesOfService {
ioLos, err := GetIOConnectivityLineOfService(classofservice.Client, ioLosLink)
if err != nil {
collectionError.Failures[ioLosLink] = err
} else {
result = append(result, ioLos)
}
}
if collectionError.Empty() {
return result, nil
}
return result, collectionError
}
// IOPerformanceLinesOfServices gets the IOPerformanceLinesOfService that are
// part of this ClassOfService.
func (classofservice *ClassOfService) IOPerformanceLinesOfServices() ([]*IOPerformanceLineOfService, error) {
var result []*IOPerformanceLineOfService
collectionError := common.NewCollectionError()
for _, ioLosLink := range classofservice.dataSecurityLinesOfService {
ioLos, err := GetIOPerformanceLineOfService(classofservice.Client, ioLosLink)
if err != nil {
collectionError.Failures[ioLosLink] = err
} else {
result = append(result, ioLos)
}
}
if collectionError.Empty() {
return result, nil
}
return result, collectionError
}