forked from istio/istio
-
Notifications
You must be signed in to change notification settings - Fork 1
/
route.go
84 lines (77 loc) · 2.62 KB
/
route.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
// Copyright 2018 Istio Authors
//
// 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 configdump
import (
"fmt"
"sort"
"time"
adminapi "github.com/envoyproxy/go-control-plane/envoy/admin/v2alpha"
proto "github.com/gogo/protobuf/types"
)
// GetLastUpdatedDynamicRouteTime retrieves the LastUpdated timestamp of the
// most recently updated DynamicRouteConfig
func (w *Wrapper) GetLastUpdatedDynamicRouteTime() (*time.Time, error) {
routeDump, err := w.GetRouteConfigDump()
if err != nil {
return nil, err
}
drc := routeDump.GetDynamicRouteConfigs()
lastUpdated := time.Unix(0, 0) // get the oldest possible timestamp
for i := range drc {
if drc[i].LastUpdated != nil {
if drLastUpdated, err := proto.TimestampFromProto(drc[i].LastUpdated); err != nil {
return nil, err
} else if drLastUpdated.After(lastUpdated) {
lastUpdated = drLastUpdated
}
}
}
if lastUpdated.After(time.Unix(0, 0)) { // if a timestamp was obtained from a drc
return &lastUpdated, nil
}
return nil, nil
}
// GetDynamicRouteDump retrieves a route dump with just dynamic active routes in it
func (w *Wrapper) GetDynamicRouteDump(stripVersions bool) (*adminapi.RoutesConfigDump, error) {
routeDump, err := w.GetRouteConfigDump()
if err != nil {
return nil, err
}
drc := routeDump.GetDynamicRouteConfigs()
sort.Slice(drc, func(i, j int) bool {
return drc[i].RouteConfig.Name < drc[j].RouteConfig.Name
})
if stripVersions {
for i := range drc {
drc[i].VersionInfo = ""
drc[i].LastUpdated = nil
}
}
return &adminapi.RoutesConfigDump{DynamicRouteConfigs: drc}, nil
}
// GetRouteConfigDump retrieves the route config dump from the ConfigDump
func (w *Wrapper) GetRouteConfigDump() (*adminapi.RoutesConfigDump, error) {
// The route dump is the fourth one in the list.
// See https://www.envoyproxy.io/docs/envoy/latest/api-v2/admin/v2alpha/config_dump.proto
if len(w.Configs) < 4 {
return nil, fmt.Errorf("config dump has no route dump")
}
routeDumpAny := w.Configs[3]
routeDump := &adminapi.RoutesConfigDump{}
err := proto.UnmarshalAny(&routeDumpAny, routeDump)
if err != nil {
return nil, err
}
return routeDump, nil
}