-
Notifications
You must be signed in to change notification settings - Fork 180
/
Copy pathendpointstate.go
executable file
·75 lines (64 loc) · 2.33 KB
/
endpointstate.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
/***
Copyright 2014 Cisco Systems Inc. All rights reserved.
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 drivers
import (
"encoding/json"
"fmt"
"github.com/contiv/netplugin/core"
"github.com/contiv/netplugin/netmaster/mastercfg"
)
// OperEndpointState is the necessary data used to perform operations on endpoints.
type OperEndpointState struct {
core.CommonState
NetID string `json:"netID"`
EndpointID string `json:"endpointID"`
ServiceName string `json:"serviceName"`
ContUUID string `json:"contUUID"`
IPAddress string `json:"ipAddress"`
IPv6Address string `json:"ipv6Address"`
MacAddress string `json:"macAddress"`
HomingHost string `json:"homingHost"`
IntfName string `json:"intfName"`
PortName string `json:"portName"`
VtepIP string `json:"vtepIP"`
}
// Matches matches the fields updated from configuration state
func (s *OperEndpointState) Matches(c *mastercfg.CfgEndpointState) bool {
return s.NetID == c.NetID &&
s.EndpointID == c.EndpointID &&
s.IPAddress == c.IPAddress &&
s.IPv6Address == c.IPv6Address &&
s.MacAddress == c.MacAddress &&
s.HomingHost == c.HomingHost &&
s.IntfName == c.IntfName &&
s.VtepIP == c.VtepIP
}
// Write the state.
func (s *OperEndpointState) Write() error {
key := fmt.Sprintf(endpointOperPath, s.ID)
return s.StateDriver.WriteState(key, s, json.Marshal)
}
// Read the state for a given identifier.
func (s *OperEndpointState) Read(id string) error {
key := fmt.Sprintf(endpointOperPath, id)
return s.StateDriver.ReadState(key, s, json.Unmarshal)
}
// ReadAll reads all state into separate objects.
func (s *OperEndpointState) ReadAll() ([]core.State, error) {
return s.StateDriver.ReadAllState(endpointOperPathPrefix, s, json.Unmarshal)
}
// Clear removes the state.
func (s *OperEndpointState) Clear() error {
key := fmt.Sprintf(endpointOperPath, s.ID)
return s.StateDriver.ClearState(key)
}