X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=pkg%2Fsbi%2Fnngpush.go;h=ec4d25a2da504b7d53ce34ae42bcc005072e96ea;hb=505e2497ce651c1127ffbcefe396b3f8c0d0f9dd;hp=1f0e0e6fa7d1ce6db934f37ad2d9a15555c03782;hpb=bce67475ab8f92b42841dba561fff27b7d239820;p=ric-plt%2Frtmgr.git diff --git a/pkg/sbi/nngpush.go b/pkg/sbi/nngpush.go index 1f0e0e6..ec4d25a 100644 --- a/pkg/sbi/nngpush.go +++ b/pkg/sbi/nngpush.go @@ -37,15 +37,20 @@ import ( "bytes" "crypto/md5" "errors" + "fmt" "gerrit.o-ran-sc.org/r/ric-plt/xapp-frame/pkg/xapp" "routing-manager/pkg/rtmgr" "strconv" "strings" - "fmt" + "sync" + "time" ) var rmrcallid = 1 var rmrdynamiccallid = 201 +var addendpointct = 1 + +var conn sync.Mutex type RmrPush struct { Sbi @@ -53,8 +58,8 @@ type RmrPush struct { } type EPStatus struct { - endpoint string - status bool + endpoint string + status bool } type RMRParams struct { @@ -82,12 +87,17 @@ func (c *RmrPush) Terminate() error { } func (c *RmrPush) AddEndpoint(ep *rtmgr.Endpoint) error { - - xapp.Logger.Debug("Invoked sbi.AddEndpoint") + addendpointct = addendpointct + 1 + count := addendpointct + xapp.Logger.Debug("Invoked sbi.AddEndpoint for %s with count = %d", ep.Ip, count) endpoint := ep.Ip + ":" + strconv.Itoa(DefaultRmrPipelineSocketNumber) ep.Whid = int(xapp.Rmr.Openwh(endpoint)) if ep.Whid < 0 { - return errors.New("can't open warmhole connection for endpoint:" + ep.Uuid + " due to invalid Wormhole ID: " + string(ep.Whid)) + time.Sleep(time.Duration(10) * time.Second) + ep.Whid = int(xapp.Rmr.Openwh(endpoint)) + if ep.Whid < 0 { + return errors.New("can't open warmhole connection for endpoint:" + ep.Uuid + " due to invalid Wormhole ID: " + string(ep.Whid) + " count: " + strconv.Itoa(count)) + } } else { xapp.Logger.Debug("Wormhole ID is %v and EP is %v", ep.Whid, endpoint) } @@ -114,94 +124,133 @@ func (c *RmrPush) DistributeAll(policies *[]string) error { /*for _, ep := range rtmgr.Eps { go c.send(ep, policies) }*/ - channel := make(chan EPStatus) + //channel := make(chan EPStatus) if rmrcallid == 200 { rmrcallid = 1 } - for _, ep := range rtmgr.Eps { - go c.send_sync(ep, policies, channel, rmrcallid) - } - rmrcallid++ - - count := 0 - result := make([]EPStatus, len(rtmgr.Eps)) - for i, _ := range result { - result[i] = <-channel - if result[i].status == true { - count++ - } else { - xapp.Logger.Error("RMR send failed for endpoint %v", result[i].endpoint) - } - } + for _, ep := range rtmgr.Eps { + go c.send_sync(ep, policies, rmrcallid) + } - if count < len(rtmgr.Eps) { - return errors.New(" RMR response count " + string(count) + " is less than half of endpoint list " + string(len(rtmgr.Eps))) - } + rmrcallid++ + /* + count := 0 + result := make([]EPStatus, len(rtmgr.Eps)) + for i, _ := range result { + result[i] = <-channel + if result[i].status == true { + count++ + } else { + xapp.Logger.Error("RMR send failed for endpoint %v", result[i].endpoint) + } + } + + if count < len(rtmgr.Eps) { + return errors.New(" RMR response count " + string(count) + " is less than half of endpoint list " + string(len(rtmgr.Eps))) + }*/ return nil } -func (c *RmrPush) send_sync(ep *rtmgr.Endpoint, policies *[]string, channel chan EPStatus, call_id int) { - xapp.Logger.Debug("Push policy to endpoint: " + ep.Uuid) +//func (c *RmrPush) send_sync(ep *rtmgr.Endpoint, policies *[]string, channel chan EPStatus, call_id int) { +func (c *RmrPush) send_sync(ep *rtmgr.Endpoint, policies *[]string, call_id int) { + xapp.Logger.Debug("Push policy to endpoint: " + ep.Uuid) ret := c.send_data(ep, policies, call_id) + conn.Lock() + rtmgr.RMRConnStatus[ep.Uuid] = ret + conn.Unlock() + // Handling per connection .. may be updating global map - channel <- EPStatus{ep.Uuid, ret} + //channel <- EPStatus{ep.Uuid, ret} } func (c *RmrPush) send_data(ep *rtmgr.Endpoint, policies *[]string, call_id int) bool { - xapp.Logger.Debug("Invoked send_data to endpoint: " + ep.Uuid + " call_id: " + strconv.Itoa(call_id)) - var state int - var retstr string + xapp.Logger.Debug("Invoked send_data to endpoint: " + ep.Uuid + " call_id: " + strconv.Itoa(call_id)) + var state int + var retstr string - var policy = []byte{} + var policy = []byte{} - for _, pe := range *policies { - b:= []byte(pe) - for j:=0; j