Skip to content

Commit bbba353

Browse files
author
Vipin Jain
committed
global oper state
1 parent 018d768 commit bbba353

File tree

3 files changed

+63
-0
lines changed

3 files changed

+63
-0
lines changed

client/contivModelClient.go

+11
Original file line numberDiff line numberDiff line change
@@ -246,8 +246,19 @@ type Global struct {
246246

247247
}
248248

249+
type GlobalOper struct {
250+
DefaultNetwork string `json:"defaultNetwork,omitempty"` //
251+
FreeVXLANsStart int `json:"freeVXLANsStart,omitempty"` //
252+
NumNetworks int `json:"numNetworks,omitempty"` //
253+
VlansInUse string `json:"vlansInUse,omitempty"` //
254+
VxlansInUse string `json:"vxlansInUse,omitempty"` //
255+
256+
}
257+
249258
type GlobalInspect struct {
250259
Config Global
260+
261+
Oper GlobalOper
251262
}
252263

253264
type Network struct {

contivModel.go

+35
Original file line numberDiff line numberDiff line change
@@ -124,8 +124,19 @@ type Global struct {
124124

125125
}
126126

127+
type GlobalOper struct {
128+
DefaultNetwork string `json:"defaultNetwork,omitempty"` //
129+
FreeVXLANsStart int `json:"freeVXLANsStart,omitempty"` //
130+
NumNetworks int `json:"numNetworks,omitempty"` //
131+
VlansInUse string `json:"vlansInUse,omitempty"` //
132+
VxlansInUse string `json:"vxlansInUse,omitempty"` //
133+
134+
}
135+
127136
type GlobalInspect struct {
128137
Config Global
138+
139+
Oper GlobalOper
129140
}
130141
type Network struct {
131142
// every object has a key
@@ -367,6 +378,7 @@ type ExtContractsGroupCallbacks interface {
367378
}
368379

369380
type GlobalCallbacks interface {
381+
GlobalGetOper(global *GlobalInspect) error
370382
GlobalCreate(global *Global) error
371383
GlobalUpdate(global, params *Global) error
372384
GlobalDelete(global *Global) error
@@ -1843,10 +1855,33 @@ func httpInspectGlobal(w http.ResponseWriter, r *http.Request, vars map[string]s
18431855
}
18441856
obj.Config = *objConfig
18451857

1858+
if err := GetOperGlobal(&obj); err != nil {
1859+
log.Errorf("GetGlobal error for: %+v. Err: %v", obj, err)
1860+
return nil, err
1861+
}
1862+
18461863
// Return the obj
18471864
return &obj, nil
18481865
}
18491866

1867+
// Get a globalOper object
1868+
func GetOperGlobal(obj *GlobalInspect) error {
1869+
// Check if we handle this object
1870+
if objCallbackHandler.GlobalCb == nil {
1871+
log.Errorf("No callback registered for global object")
1872+
return errors.New("Invalid object type")
1873+
}
1874+
1875+
// Perform callback
1876+
err := objCallbackHandler.GlobalCb.GlobalGetOper(obj)
1877+
if err != nil {
1878+
log.Errorf("GlobalDelete retruned error for: %+v. Err: %v", obj, err)
1879+
return err
1880+
}
1881+
1882+
return nil
1883+
}
1884+
18501885
// CREATE REST call
18511886
func httpCreateGlobal(w http.ResponseWriter, r *http.Request, vars map[string]string) (interface{}, error) {
18521887
log.Debugf("Received httpGetGlobal: %+v", vars)

global.json

+17
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,23 @@
3131
"title": "Allwed vxlan range",
3232
"format": "^([0-9]{1,8}?-[0-9]{1,8}?)$"
3333
}
34+
},
35+
"operProperties": {
36+
"numNetworks": {
37+
"type": "int"
38+
},
39+
"defaultNetwork": {
40+
"type": "string"
41+
},
42+
"vlansInUse": {
43+
"type": "string"
44+
},
45+
"vxlansInUse": {
46+
"type": "string"
47+
},
48+
"freeVXLANsStart": {
49+
"type": "int"
50+
}
3451
}
3552
}
3653
]

0 commit comments

Comments
 (0)