Skip to content

Commit 44b5f42

Browse files
author
Satish Ramachandran
committed
Have a single external contracts array at epg level and changes around that.
1 parent 4344e0b commit 44b5f42

File tree

5 files changed

+60
-127
lines changed

5 files changed

+60
-127
lines changed

netctl/commands.go

+2-6
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,8 @@ var Commands = []cli.Command{
5656
Usage: "Policy List (separated by commas)",
5757
},
5858
cli.StringFlag{
59-
Name: "consumed-external-contracts, i",
60-
Usage: "Consumed external contracts(separated by commas)",
61-
},
62-
cli.StringFlag{
63-
Name: "provided-external-contracts, e",
64-
Usage: "Provided external contracts(separated by commas)",
59+
Name: "external-contracts, e",
60+
Usage: "External contracts(separated by commas)",
6561
},
6662
},
6763
Action: createEndpointGroup,

netctl/netctl.go

+8-14
Original file line numberDiff line numberDiff line change
@@ -401,23 +401,17 @@ func createEndpointGroup(ctx *cli.Context) {
401401
policies = []string{}
402402
}
403403

404-
consExtContractsGrps := strings.Split(ctx.String("consumed-external-contracts"), ",")
405-
if ctx.String("consumed-external-contracts") == "" {
406-
consExtContractsGrps = []string{}
407-
}
408-
409-
provExtContractsGrps := strings.Split(ctx.String("provided-external-contracts"), ",")
410-
if ctx.String("provided-external-contracts") == "" {
411-
provExtContractsGrps = []string{}
404+
extContractsGrps := strings.Split(ctx.String("external-contracts"), ",")
405+
if ctx.String("external-contracts") == "" {
406+
extContractsGrps = []string{}
412407
}
413408

414409
errCheck(ctx, getClient(ctx).EndpointGroupPost(&contivClient.EndpointGroup{
415-
TenantName: tenant,
416-
NetworkName: network,
417-
GroupName: group,
418-
Policies: policies,
419-
ConsExtContractsGrps: consExtContractsGrps,
420-
ProvExtContractsGrps: provExtContractsGrps,
410+
TenantName: tenant,
411+
NetworkName: network,
412+
GroupName: group,
413+
Policies: policies,
414+
ExtContractsGrps: extContractsGrps,
421415
}))
422416
}
423417

netmaster/objApi/apiController.go

+3-4
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,7 @@ func (ac *APIController) EndpointGroupCreate(endpointGroup *contivModel.Endpoint
428428
}
429429

430430
// Setup external contracts this EPG might have.
431-
err = setupExternalContracts(endpointGroup, endpointGroup.ConsExtContractsGrps, endpointGroup.ProvExtContractsGrps)
431+
err = setupExternalContracts(endpointGroup, endpointGroup.ExtContractsGrps)
432432
if err != nil {
433433
log.Errorf("Error setting up external contracts for epg %s", endpointGroup.Key)
434434
endpointGroupCleanup(endpointGroup)
@@ -537,14 +537,13 @@ func (ac *APIController) EndpointGroupUpdate(endpointGroup, params *contivModel.
537537
}
538538
// Step 2: Add contracts from the update.
539539
// Consumed contracts
540-
err = setupExternalContracts(endpointGroup, params.ConsExtContractsGrps, params.ProvExtContractsGrps)
540+
err = setupExternalContracts(endpointGroup, params.ExtContractsGrps)
541541
if err != nil {
542542
return err
543543
}
544544

545545
// Update the epg itself with the new contracts groups.
546-
endpointGroup.ConsExtContractsGrps = params.ConsExtContractsGrps
547-
endpointGroup.ProvExtContractsGrps = params.ProvExtContractsGrps
546+
endpointGroup.ExtContractsGrps = params.ExtContractsGrps
548547

549548
// if there is an associated app profiles, update that as well
550549
profKey := endpointGroup.Links.AppProfile.ObjKey

netmaster/objApi/extContracts.go

+30-88
Original file line numberDiff line numberDiff line change
@@ -21,88 +21,29 @@ import (
2121
"github.com/contiv/contivmodel"
2222
"github.com/contiv/netplugin/core"
2323
"github.com/contiv/objdb/modeldb"
24-
"strings"
2524
)
2625

2726
// Some utility functions to work with the external contracts
28-
// Severe the connections between EPGs and external contracts.
29-
func extContractsGrpDeregister(epg *contivModel.EndpointGroup,
30-
contractsGrp *contivModel.ExtContractsGroup,
31-
contractType string) error {
32-
if contractsGrp == nil {
33-
errStr := fmt.Sprintf("%s External contracts group not found", contractType)
34-
log.Errorf(errStr)
35-
return core.Errorf(errStr)
36-
}
37-
38-
modeldb.RemoveLinkSet(&contractsGrp.LinkSets.EndpointGroups, epg)
39-
modeldb.RemoveLinkSet(&epg.LinkSets.ExtContractsGrps, contractsGrp)
40-
41-
// Links broken, update the contracts group object.
42-
err := contractsGrp.Write()
43-
if err != nil {
44-
return err
45-
}
46-
47-
return nil
48-
}
49-
50-
// Check for the presence of external contracts, and also make sure that
51-
// they are of the right type. If yes, establish necessary relationships
52-
// between the epg and the external contracts.
53-
func extContractsGrpValidateAndRegister(epg *contivModel.EndpointGroup,
54-
contractsGrp *contivModel.ExtContractsGroup,
55-
contractType string) error {
56-
if contractsGrp == nil {
57-
errStr := fmt.Sprintf("%s External contracts group not found", contractType)
58-
log.Errorf(errStr)
59-
return core.Errorf(errStr)
60-
}
61-
62-
if strings.ToLower(contractsGrp.ContractsType) != contractType {
63-
errStr := fmt.Sprintf("Incorrect type for contract group: %v", contractsGrp)
64-
log.Errorf(errStr)
65-
return core.Errorf(errStr)
66-
}
67-
68-
// Establish the necessary links.
69-
modeldb.AddLinkSet(&contractsGrp.LinkSets.EndpointGroups, epg)
70-
modeldb.AddLinkSet(&epg.LinkSets.ExtContractsGrps, contractsGrp)
71-
72-
// Links made, write the policy set object.
73-
err := contractsGrp.Write()
74-
if err != nil {
75-
return err
76-
}
77-
78-
return nil
79-
}
8027

8128
// Cleanup external contracts from an epg.
8229
func cleanupExternalContracts(endpointGroup *contivModel.EndpointGroup) error {
83-
// Cleanup consumed external contracts
8430
tenant := endpointGroup.TenantName
85-
for _, consExtContractsGrp := range endpointGroup.ConsExtContractsGrps {
86-
contractsGrpKey := tenant + ":" + consExtContractsGrp
87-
contractsGrp := contivModel.FindExtContractsGroup(contractsGrpKey)
88-
err := extContractsGrpDeregister(endpointGroup, contractsGrp, "consumed")
89-
if err != nil {
90-
if contractsGrp != nil {
91-
log.Errorf("Error cleaning up consumed ext contract %s", contractsGrp.ContractsGroupName)
92-
}
93-
continue
94-
}
95-
}
96-
97-
// Cleanup provided external contracts
98-
for _, provExtContractsGrp := range endpointGroup.ProvExtContractsGrps {
99-
contractsGrpKey := tenant + ":" + provExtContractsGrp
100-
contractsGrp := contivModel.FindExtContractsGroup(contractsGrpKey)
101-
err := extContractsGrpDeregister(endpointGroup, contractsGrp, "provided")
102-
if err != nil {
103-
if contractsGrp != nil {
104-
log.Errorf("Error cleaning up provided ext contract %s", contractsGrp.ContractsGroupName)
31+
for _, contractsGrp := range endpointGroup.ExtContractsGrps {
32+
contractsGrpKey := tenant + ":" + contractsGrp
33+
contractsGrpObj := contivModel.FindExtContractsGroup(contractsGrpKey)
34+
35+
if contractsGrpObj != nil {
36+
// Break any linkeage we might have set.
37+
modeldb.RemoveLinkSet(&contractsGrpObj.LinkSets.EndpointGroups, endpointGroup)
38+
modeldb.RemoveLinkSet(&endpointGroup.LinkSets.ExtContractsGrps, contractsGrpObj)
39+
40+
// Links broken, update the contracts group object.
41+
err := contractsGrpObj.Write()
42+
if err != nil {
43+
return err
10544
}
45+
} else {
46+
log.Errorf("Error cleaning up consumed ext contract %s", contractsGrp)
10647
continue
10748
}
10849
}
@@ -111,24 +52,25 @@ func cleanupExternalContracts(endpointGroup *contivModel.EndpointGroup) error {
11152
}
11253

11354
// Setup external contracts for an epg.
114-
func setupExternalContracts(endpointGroup *contivModel.EndpointGroup,
115-
consContractsGrps, provContractsGrps []string) error {
55+
func setupExternalContracts(endpointGroup *contivModel.EndpointGroup, extContractsGrps []string) error {
11656
// Validate presence and register consumed external contracts
11757
tenant := endpointGroup.TenantName
118-
for _, consExtContractsGrp := range consContractsGrps {
119-
contractsGrpKey := tenant + ":" + consExtContractsGrp
120-
contractsGrp := contivModel.FindExtContractsGroup(contractsGrpKey)
121-
err := extContractsGrpValidateAndRegister(endpointGroup, contractsGrp, "consumed")
122-
if err != nil {
123-
return err
58+
for _, contractsGrp := range extContractsGrps {
59+
contractsGrpKey := tenant + ":" + contractsGrp
60+
contractsGrpObj := contivModel.FindExtContractsGroup(contractsGrpKey)
61+
62+
if contractsGrpObj == nil {
63+
errStr := fmt.Sprintf("%External contracts group %s not found", contractsGrp)
64+
log.Errorf(errStr)
65+
return core.Errorf(errStr)
12466
}
125-
}
12667

127-
// Validate presence and register provided external contracts
128-
for _, provExtContractsGrp := range provContractsGrps {
129-
contractsGrpKey := tenant + ":" + provExtContractsGrp
130-
contractsGrp := contivModel.FindExtContractsGroup(contractsGrpKey)
131-
err := extContractsGrpValidateAndRegister(endpointGroup, contractsGrp, "provided")
68+
// Establish the necessary links.
69+
modeldb.AddLinkSet(&contractsGrpObj.LinkSets.EndpointGroups, endpointGroup)
70+
modeldb.AddLinkSet(&endpointGroup.LinkSets.ExtContractsGrps, contractsGrpObj)
71+
72+
// Links made, write the policy set object.
73+
err := contractsGrpObj.Write()
13274
if err != nil {
13375
return err
13476
}

netmaster/objApi/infraproxy.go

+17-15
Original file line numberDiff line numberDiff line change
@@ -169,26 +169,28 @@ func appendEpgInfo(eMap *epgMap, epgObj *contivModel.EndpointGroup, stateDriver
169169

170170
}
171171

172-
// Append external consumed contracts.
173-
for _, contractGrp := range epgObj.ConsExtContractsGrps {
174-
contractGrpObj := contivModel.FindExtContractsGroup(contractGrp)
175-
if contractGrpObj == nil {
176-
errStr := fmt.Sprintf("Consumed contracts %v not found for epg: %v", contractGrp, epg.Name)
172+
// Append external contracts.
173+
tenant := epgObj.TenantName
174+
for _, contractsGrp := range epgObj.ExtContractsGrps {
175+
contractsGrpKey := tenant + ":" + contractsGrp
176+
contractsGrpObj := contivModel.FindExtContractsGroup(contractsGrpKey)
177+
178+
if contractsGrpObj == nil {
179+
errStr := fmt.Sprintf("Contracts %v not found for epg: %v", contractsGrp, epg.Name)
177180
return errors.New(errStr)
178181
}
179-
epg.ConsContracts = append(epg.ConsContracts, contractGrpObj.Contracts...)
180-
}
181-
log.Debugf("Copied over %d externally defined consumed contracts", len(epg.ConsContracts))
182-
183-
// Append external provided contracts.
184-
for _, contractGrp := range epgObj.ProvExtContractsGrps {
185-
contractGrpObj := contivModel.FindExtContractsGroup(contractGrp)
186-
if contractGrpObj == nil {
187-
errStr := fmt.Sprintf("Provided contracts %v not found for epg: %v", contractGrp, epg.Name)
182+
if contractsGrpObj.ContractsType == "consumed" {
183+
epg.ConsContracts = append(epg.ConsContracts, contractsGrpObj.Contracts...)
184+
} else if contractsGrpObj.ContractsType == "provided" {
185+
epg.ProvContracts = append(epg.ProvContracts, contractsGrpObj.Contracts...)
186+
} else {
187+
// Should not be here.
188+
errStr := fmt.Sprintf("Invalid contracts type %v", contractsGrp)
188189
return errors.New(errStr)
189190
}
190-
epg.ProvContracts = append(epg.ProvContracts, contractGrpObj.Contracts...)
191191
}
192+
193+
log.Debugf("Copied over %d externally defined consumed contracts", len(epg.ConsContracts))
192194
log.Debugf("Copied over %d externally defined provided contracts", len(epg.ProvContracts))
193195

194196
// add any saved uses info before overwriting

0 commit comments

Comments
 (0)