@@ -38,8 +38,8 @@ const (
38
38
var netDriverName = "netplugin"
39
39
var ipamDriverName = "netplugin"
40
40
41
- // OperState has oper state of docker network
42
- type OperState struct {
41
+ // DnetOperState has oper state of docker network
42
+ type DnetOperState struct {
43
43
core.CommonState
44
44
TenantName string `json:"tenantName"`
45
45
NetworkName string `json:"networkName"`
@@ -48,30 +48,30 @@ type OperState struct {
48
48
}
49
49
50
50
// Write the state.
51
- func (s * OperState ) Write () error {
51
+ func (s * DnetOperState ) Write () error {
52
52
key := fmt .Sprintf (docknetOperPath , s .ID )
53
53
return s .StateDriver .WriteState (key , s , json .Marshal )
54
54
}
55
55
56
56
// Read the state for a given identifier
57
- func (s * OperState ) Read (id string ) error {
57
+ func (s * DnetOperState ) Read (id string ) error {
58
58
key := fmt .Sprintf (docknetOperPath , id )
59
59
return s .StateDriver .ReadState (key , s , json .Unmarshal )
60
60
}
61
61
62
62
// ReadAll state and return the collection.
63
- func (s * OperState ) ReadAll () ([]core.State , error ) {
63
+ func (s * DnetOperState ) ReadAll () ([]core.State , error ) {
64
64
return s .StateDriver .ReadAllState (docknetOperPrefix , s , json .Unmarshal )
65
65
}
66
66
67
67
// WatchAll state transitions and send them through the channel.
68
- func (s * OperState ) WatchAll (rsps chan core.WatchState ) error {
68
+ func (s * DnetOperState ) WatchAll (rsps chan core.WatchState ) error {
69
69
return s .StateDriver .WatchAllState (docknetOperPrefix , s , json .Unmarshal ,
70
70
rsps )
71
71
}
72
72
73
73
// Clear removes the state.
74
- func (s * OperState ) Clear () error {
74
+ func (s * DnetOperState ) Clear () error {
75
75
key := fmt .Sprintf (docknetOperPath , s .ID )
76
76
return s .StateDriver .ClearState (key )
77
77
}
@@ -186,7 +186,7 @@ func CreateDockNet(tenantName, networkName, serviceName string, nwCfg *mastercfg
186
186
}
187
187
188
188
// save docknet oper state
189
- dnetOper := OperState {
189
+ dnetOper := DnetOperState {
190
190
TenantName : tenantName ,
191
191
NetworkName : networkName ,
192
192
ServiceName : serviceName ,
@@ -233,7 +233,7 @@ func DeleteDockNet(tenantName, networkName, serviceName string) error {
233
233
}
234
234
235
235
// save docknet oper state
236
- dnetOper := OperState {}
236
+ dnetOper := DnetOperState {}
237
237
dnetOper .ID = fmt .Sprintf ("%s.%s.%s" , tenantName , networkName , serviceName )
238
238
dnetOper .StateDriver = stateDriver
239
239
@@ -247,15 +247,15 @@ func DeleteDockNet(tenantName, networkName, serviceName string) error {
247
247
}
248
248
249
249
// FindDocknetByUUID find the docknet by UUID
250
- func FindDocknetByUUID (dnetID string ) (* OperState , error ) {
250
+ func FindDocknetByUUID (dnetID string ) (* DnetOperState , error ) {
251
251
// Get the state driver
252
252
stateDriver , err := utils .GetStateDriver ()
253
253
if err != nil {
254
254
log .Warnf ("Couldn't read global config %v" , err )
255
255
return nil , err
256
256
}
257
257
258
- tmpDnet := OperState {}
258
+ tmpDnet := DnetOperState {}
259
259
tmpDnet .StateDriver = stateDriver
260
260
dnetOperList , err := tmpDnet .ReadAll ()
261
261
if err != nil {
@@ -265,8 +265,8 @@ func FindDocknetByUUID(dnetID string) (*OperState, error) {
265
265
266
266
// Walk all dnets and find the matching UUID
267
267
for _ , dnet := range dnetOperList {
268
- if dnet .(* OperState ).DocknetUUID == dnetID {
269
- return dnet .(* OperState ), nil
268
+ if dnet .(* DnetOperState ).DocknetUUID == dnetID {
269
+ return dnet .(* DnetOperState ), nil
270
270
}
271
271
}
272
272
0 commit comments