3 ==================================================================================
4 Copyright (c) 2019 AT&T Intellectual Property.
5 Copyright (c) 2019 Nokia
7 Licensed under the Apache License, Version 2.0 (the "License");
8 you may not use this file except in compliance with the License.
9 You may obtain a copy of the License at
11 http://www.apache.org/licenses/LICENSE-2.0
13 Unless required by applicable law or agreed to in writing, software
14 distributed under the License is distributed on an "AS IS" BASIS,
15 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 See the License for the specific language governing permissions and
17 limitations under the License.
18 ==================================================================================
22 Abstract: Contains SBI (SouthBound Interface) module definitions and generic SBI components
35 const DEFAULT_NNG_PUBSUB_SOCKET_PREFIX = "tcp://"
36 const DEFAULT_NNG_PUBSUB_SOCKET_NUMBER = 4560
37 const DEFAULT_NNG_PIPELINE_SOCKET_PREFIX = "tcp://"
38 const DEFAULT_NNG_PIPELINE_SOCKET_NUMBER = 4561
41 SupportedSbis = []*SbiEngineConfig{
46 Protocol: "nngpubsub",
48 openSocket(openNngPub),
49 closeSocket(closeNngPub),
50 createEndpointSocket(createNngPubEndpointSocket),
51 destroyEndpointSocket(createNngPubEndpointSocket),
52 distributeAll(publishAll),
59 Protocol: "nngpipeline",
61 openSocket(openNngPush),
62 closeSocket(closeNngPush),
63 createEndpointSocket(createNngPushEndpointSocket),
64 destroyEndpointSocket(destroyNngPushEndpointSocket),
65 distributeAll(pushAll),
73 for _, sbi := range SupportedSbis {
75 rtmgr.Logger.Info(sbi.Engine.Name + "/" + sbi.Engine.Version)
80 func GetSbi(sbiName string) (*SbiEngineConfig, error) {
81 for _, sbi := range SupportedSbis {
82 if (*sbi).Engine.Name == sbiName && (*sbi).IsAvailable {
86 return nil, errors.New("SBI:" + sbiName + " is not supported or still not available")
89 func pruneEndpointList(sbii *SbiEngineConfig) {
90 for _, ep := range rtmgr.Eps {
92 sbii.DestroyEndpointSocket(ep)
93 delete(rtmgr.Eps, ep.Uuid)
95 rtmgr.Eps[ep.Uuid].Keepalive = false
100 func UpdateEndpointList(xapps *[]rtmgr.XApp, sbii *SbiEngineConfig) {
101 for _, xapp := range *xapps {
102 for _, instance := range xapp.Instances {
103 uuid := instance.Ip + ":" + strconv.Itoa(int(instance.Port))
104 if _, ok := rtmgr.Eps[uuid]; ok {
105 rtmgr.Eps[uuid].Keepalive = true
107 ep := &rtmgr.Endpoint{
119 if err := sbii.CreateEndpointSocket(ep); err != nil {
120 rtmgr.Logger.Error("can't create socket for endpoint: " + ep.Name + " due to:" + err.Error())
127 pruneEndpointList(sbii)