This repository was archived by the owner on Jul 31, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstatus_handler.go
344 lines (311 loc) · 11.5 KB
/
status_handler.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
/*
Copyright 2019 IBM Corporation
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License 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 main
import (
"fmt"
"strings"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
"k8s.io/client-go/dynamic"
)
// Send resource status change back to Kubernetes server
func sendResourceStatus(resController *ClusterWatcher, resInfo *resourceInfo, status string, flyoverText string, flyOverNLS string) error {
if logger.IsEnabled(LogTypeInfo) {
logger.Log(CallerName(), LogTypeInfo, fmt.Sprintf("%s set to %s\n", resInfo.name, status))
}
gvr, ok := resController.getWatchGVR(resInfo.gvr)
if ok {
var intfNoNS = resController.plugin.dynamicClient.Resource(gvr)
var intf dynamic.ResourceInterface
if resInfo.namespace != "" {
intf = intfNoNS.Namespace(resInfo.namespace)
} else {
intf = intfNoNS
}
// fetch the current resource
var unstructuredObj *unstructured.Unstructured
var err error
unstructuredObj, err = intf.Get(resInfo.name, metav1.GetOptions{})
if err != nil {
return err
}
var resInfo = &resourceInfo{}
resController.parseResource(unstructuredObj, resInfo)
if strings.Compare(resInfo.kappnavStatVal, status) != 0 {
// change status
if logger.IsEnabled(LogTypeInfo) {
logger.Log(CallerName(), LogTypeInfo, fmt.Sprintf("Setting kappnav status on Kubernetes server: resource: %s %s %s, status: %s, flyover: %s\n", resInfo.kind, resInfo.namespace, resInfo.name, status, flyoverText))
}
setkAppNavStatus(unstructuredObj, status, flyoverText, flyOverNLS)
_, err = intf.Update(unstructuredObj, metav1.UpdateOptions{})
if err != nil {
if logger.IsEnabled(LogTypeError) {
logger.Log(CallerName(), LogTypeError, fmt.Sprintf(" error setting kappnav status %s\n", err))
}
}
return err
}
return nil
}
return fmt.Errorf("Unable to find GVR for kind %s", resInfo.kind)
}
type statusChecker struct {
count map[string]int // counter number of each different status
precedence []string // precedence
unknownStatus string // value of unknown status
}
// Return a new Status checker
func newStatusChecker(precedence []string, unkownStatus string) *statusChecker {
var checker = statusChecker{}
checker.unknownStatus = unkownStatus
checker.precedence = precedence
checker.count = make(map[string]int)
for _, value := range precedence {
checker.count[value] = 0
}
return &checker
}
// Add another status to be checked
// Return :
// valid: true if the status value is valid
// alreadyHighest: indication whether current calculated status is already
// highest precedence status. Caller need not continue checking in
// that case
func (checker *statusChecker) addStatus(status string) (valid bool, alreadyHighest bool) {
// status is unknown
if status == "" {
status = checker.unknownStatus
}
value, ok := checker.count[status]
if !ok {
return false, false
}
checker.count[status] = value + 1
if status == checker.precedence[0] {
return true, true
}
return true, false
}
// Return the final status
func (checker *statusChecker) finalStatus() string {
var statusPrecedence = checker.precedence
for _, value := range statusPrecedence {
if checker.count[value] > 0 {
return value
}
}
/* no status on anything. Return unkown status
*/
return checker.unknownStatus
}
// Process one batch of changes
func processBatchOfApplicationsAndResources(ts *batchStore, resources *batchResources) error {
apps := make([]string, 0, len(resources.applications))
for appName := range resources.applications {
apps = append(apps, appName)
}
if logger.IsEnabled(LogTypeInfo) {
logger.Log(CallerName(), LogTypeInfo, fmt.Sprintf("applications: total: %d, application names: %s\n", len(resources.applications), apps))
}
hasStatus := make(map[string]*resourceInfo)
toChange := make(map[string]*resourceInfo)
// calculate application status for all affected applications
for _, res := range resources.applications {
visited := make(map[string]*resourceInfo)
_, stat, err := processOneApplication(ts.resController, res, visited, hasStatus, resources.nonApplications, toChange)
if err != nil {
return err
}
key := res.key()
if res.kappnavStatVal != stat {
// status changed
newRes := &resourceInfo{}
*newRes = *res
newRes.kappnavStatVal = stat
toChange[key] = newRes
hasStatus[key] = newRes
} else {
hasStatus[key] = res
}
}
// calculate resource status for non-application resources not yet processed
for _, resInfo := range resources.nonApplications {
// calculate resource status
_, err := processOneResource(ts.resController, resInfo, hasStatus, resources.nonApplications, toChange)
if err != nil {
return err
}
}
// update kappnav status for all resources whose status have changed
for _, res := range toChange {
var apps []*appResourceInfo
var autoCreate bool
kAppNavMonitoredResource := isKAppNavMonitoredResource(res)
if !kAppNavMonitoredResource {
_, autoCreate = res.labels[AppAutoCreate]
if !autoCreate {
apps = getApplicationsForResource(ts.resController, res)
}
}
if kAppNavMonitoredResource || autoCreate || (apps != nil && len(apps) != 0) {
err := sendResourceStatus(ts.resController, res, res.kappnavStatVal, res.flyOver, res.flyOverNLS)
if err != nil {
return err
}
} else {
if logger.IsEnabled(LogTypeInfo) {
logger.Log(CallerName(), LogTypeInfo, fmt.Sprintf("not updating status for %s %v", res.name, res.gvr))
}
}
}
return nil
}
/*
Process status for one application
res: the application
visited: application already visited when computing status for one top level application
hasStatus: accumulated resources with known status
toFetch: call API server to fetch current status. If not in this set, fetch status from cache.
toChange: accumulated resources with status change. call API server to update status
Return:
statusOK: true if OK, false to skip this application to avoid infinite recursion
status: the status of the application
processErr : any error captured
*/
func processOneApplication(resController *ClusterWatcher, res *resourceInfo, visited map[string]*resourceInfo, hasStatus map[string]*resourceInfo, toFetch map[string]*resourceInfo, toChange map[string]*resourceInfo) (statusOK bool, status string, processErr error) {
if logger.IsEnabled(LogTypeEntry) {
logger.Log(CallerName(), LogTypeEntry, fmt.Sprintf("for %s\n", res.name))
}
key := res.key()
_, ok := visited[key]
if ok {
if logger.IsEnabled(LogTypeDebug) {
logger.Log(CallerName(), LogTypeDebug, fmt.Sprintf(" application %s already visited\n", res.name))
}
// already visited
return false, "", nil
}
visited[key] = res
computed, exists := hasStatus[key]
if exists {
// return the already computed status
if logger.IsEnabled(LogTypeDebug) {
logger.Log(CallerName(), LogTypeDebug, fmt.Sprintf(" application %s already has status %s\n", computed.name, computed.kappnavStatVal))
}
return true, computed.kappnavStatVal, nil
}
obj := res.unstructuredObj
appInfo := &appResourceInfo{}
resController.parseAppResource(obj, appInfo)
checker := newStatusChecker(resController.getStatusPrecedence(), resController.unknownStatus)
var componentKinds = appInfo.componentKinds
// loop over all components kinds
for _, component := range componentKinds {
// loop over all resources of each component kind
gvrs, _, ok := resController.getGVRsForGroupKind(component.group, component.kind)
// handle every installed version of the group
for _, gvr := range gvrs {
var resources = resController.listResources(gvr)
for _, res := range resources {
var unstructuredObj = res.(*unstructured.Unstructured)
var resInfo = &resourceInfo{}
resController.parseResource(unstructuredObj, resInfo)
if isComponentOfApplication(resController, appInfo, resInfo) {
// not self and labels match selector
if logger.IsEnabled(LogTypeDebug) {
logger.Log(CallerName(), LogTypeDebug, fmt.Sprintf(" found component: %s\n", resInfo.name))
}
var stat string
var err error
if resInfo.kind == APPLICATION {
// recursively calculate application status
var tmpAppInfo = &appResourceInfo{}
err = resController.parseAppResource(unstructuredObj, tmpAppInfo)
if err != nil {
return false, "", err
}
ok, stat, err = processOneApplication(resController, &tmpAppInfo.resourceInfo, visited, hasStatus, toFetch, toChange)
if err != nil {
return false, "", err
}
if !ok {
// skip this one to avoid infinite recursion
if logger.IsEnabled(LogTypeDebug) {
logger.Log(CallerName(), LogTypeDebug, fmt.Sprintf(" skipping application: %s\n", resInfo.name))
}
continue
}
} else {
// calculate resource status
stat, err = processOneResource(resController, resInfo, hasStatus, toFetch, toChange)
if err != nil {
return false, stat, err
}
}
checker.addStatus(stat)
}
}
}
}
status = checker.finalStatus()
if logger.IsEnabled(LogTypeExit) {
logger.Log(CallerName(), LogTypeExit, fmt.Sprintf(" final status for application %s %s %s is %s\n", appInfo.kind, appInfo.namespace, appInfo.name, status))
}
return true, status, nil
}
/* Process status update for one non-application resource
resInfo: resource for which to compute status
hasStatus: resources that already has computed status
toFetch: resources whose status need to be computed from API server
toChange: resources whose status have changed, need to update API server
*/
func processOneResource(resController *ClusterWatcher, resInfo *resourceInfo, hasStatus map[string]*resourceInfo, toFetch map[string]*resourceInfo, toChange map[string]*resourceInfo) (string, error) {
key := resInfo.key()
if res, ok := hasStatus[key]; ok {
// status already computed
if logger.IsEnabled(LogTypeDebug) {
logger.Log(CallerName(), LogTypeDebug, fmt.Sprintf("Status already computed %s %s %s\n", resInfo.gvr, resInfo.namespace, resInfo.name))
}
return res.kappnavStatVal, nil
}
_, ok := toFetch[key]
if ok {
// Resource has changed. Compute status from api Server
if logger.IsEnabled(LogTypeDebug) {
logger.Log(CallerName(), LogTypeDebug, fmt.Sprintf("Fetching status for %s %s %s\n", resInfo.gvr, resInfo.namespace, resInfo.name))
}
stat, flyover, flyoverNLS, err := resController.plugin.statusFunc(apiURL, resInfo)
if err != nil {
if logger.IsEnabled(LogTypeDebug) {
logger.Log(CallerName(), LogTypeDebug, fmt.Sprintf("Error fetching status for %s %s %s\n", resInfo.gvr, resInfo.namespace, resInfo.name))
logger.Log(CallerName(), LogTypeDebug, fmt.Sprintf("%v\n", err))
}
return stat, err
}
if stat != resInfo.kappnavStatVal || flyover != resInfo.flyOver || flyoverNLS != resInfo.flyOverNLS {
newRes := &resourceInfo{}
*newRes = *resInfo
newRes.kappnavStatVal = stat
newRes.flyOver = flyover
newRes.flyOverNLS = flyoverNLS
toChange[key] = newRes
hasStatus[key] = newRes
} else {
hasStatus[key] = resInfo
}
return stat, nil
}
// Resource has not changed. Use pre-existig status
hasStatus[key] = resInfo
return resInfo.kappnavStatVal, nil
}