-
Notifications
You must be signed in to change notification settings - Fork 36
/
staticroute.go
130 lines (113 loc) · 3.83 KB
/
staticroute.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
// Copyright 2016 Canonical Ltd.
// Licensed under the LGPLv3, see LICENCE file for details.
package gomaasapi
import (
"github.com/juju/errors"
"github.com/juju/schema"
"github.com/juju/version"
)
type staticRoute struct {
resourceURI string
id int
source *subnet
destination *subnet
gatewayIP string
metric int
}
// Id implements StaticRoute.
func (s *staticRoute) ID() int {
return s.id
}
// Source implements StaticRoute.
func (s *staticRoute) Source() Subnet {
return s.source
}
// Destination implements StaticRoute.
func (s *staticRoute) Destination() Subnet {
return s.destination
}
// GatewayIP implements StaticRoute.
func (s *staticRoute) GatewayIP() string {
return s.gatewayIP
}
// Metric implements StaticRoute.
func (s *staticRoute) Metric() int {
return s.metric
}
func readStaticRoutes(controllerVersion version.Number, source interface{}) ([]*staticRoute, error) {
checker := schema.List(schema.StringMap(schema.Any()))
coerced, err := checker.Coerce(source, nil)
if err != nil {
return nil, errors.Annotatef(err, "static-route base schema check failed")
}
valid := coerced.([]interface{})
var deserialisationVersion version.Number
for v := range staticRouteDeserializationFuncs {
if v.Compare(deserialisationVersion) > 0 && v.Compare(controllerVersion) <= 0 {
deserialisationVersion = v
}
}
if deserialisationVersion == version.Zero {
return nil, errors.Errorf("no static-route read func for version %s", controllerVersion)
}
readFunc := staticRouteDeserializationFuncs[deserialisationVersion]
return readStaticRouteList(valid, readFunc)
}
// readStaticRouteList expects the values of the sourceList to be string maps.
func readStaticRouteList(sourceList []interface{}, readFunc staticRouteDeserializationFunc) ([]*staticRoute, error) {
result := make([]*staticRoute, 0, len(sourceList))
for i, value := range sourceList {
source, ok := value.(map[string]interface{})
if !ok {
return nil, errors.Errorf("unexpected value for static-route %d, %T", i, value)
}
staticRoute, err := readFunc(source)
if err != nil {
return nil, errors.Annotatef(err, "static-route %d", i)
}
result = append(result, staticRoute)
}
return result, nil
}
type staticRouteDeserializationFunc func(map[string]interface{}) (*staticRoute, error)
var staticRouteDeserializationFuncs = map[version.Number]staticRouteDeserializationFunc{
twoDotOh: staticRoute_2_0,
}
func staticRoute_2_0(source map[string]interface{}) (*staticRoute, error) {
fields := schema.Fields{
"resource_uri": schema.String(),
"id": schema.ForceInt(),
"source": schema.StringMap(schema.Any()),
"destination": schema.StringMap(schema.Any()),
"gateway_ip": schema.String(),
"metric": schema.ForceInt(),
}
checker := schema.FieldMap(fields, nil) // no defaults
coerced, err := checker.Coerce(source, nil)
if err != nil {
return nil, errors.Annotatef(err, "static-route 2.0 schema check failed")
}
valid := coerced.(map[string]interface{})
// From here we know that the map returned from the schema coercion
// contains fields of the right type.
// readSubnetList takes a list of interfaces. We happen to have 2 subnets
// to parse, that are in different keys, but we might as well wrap them up
// together and pass them in.
subnets, err := readSubnetList([]interface{}{valid["source"], valid["destination"]}, subnet_2_0)
if err != nil {
return nil, errors.Trace(err)
}
if len(subnets) != 2 {
// how could we get here?
return nil, errors.Errorf("subnets somehow parsed into the wrong number of items (expected 2): %d", len(subnets))
}
result := &staticRoute{
resourceURI: valid["resource_uri"].(string),
id: valid["id"].(int),
gatewayIP: valid["gateway_ip"].(string),
metric: valid["metric"].(int),
source: subnets[0],
destination: subnets[1],
}
return result, nil
}