blob: fdafcb6c0914c2cd253bf87d5680f4ba67f00edc [file] [log] [blame]
kalnagy93cc3e22019-09-19 11:29:29 +02001/*
2==================================================================================
3 Copyright (c) 2019 AT&T Intellectual Property.
4 Copyright (c) 2019 Nokia
5
6 Licensed under the Apache License, Version 2.0 (the "License");
7 you may not use this file except in compliance with the License.
8 You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12 Unless required by applicable law or agreed to in writing, software
13 distributed under the License is distributed on an "AS IS" BASIS,
14 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 See the License for the specific language governing permissions and
16 limitations under the License.
17==================================================================================
18*/
19
20package control
21
22import (
Juha Hyttinen31797b42020-01-16 14:05:01 +020023 "fmt"
kalnagy93cc3e22019-09-19 11:29:29 +020024 rtmgrclient "gerrit.o-ran-sc.org/r/ric-plt/submgr/pkg/rtmgr_client"
25 rtmgrhandle "gerrit.o-ran-sc.org/r/ric-plt/submgr/pkg/rtmgr_client/handle"
26 "gerrit.o-ran-sc.org/r/ric-plt/submgr/pkg/rtmgr_models"
kalnagy93cc3e22019-09-19 11:29:29 +020027 "gerrit.o-ran-sc.org/r/ric-plt/xapp-frame/pkg/xapp"
kalnagy1455c852019-10-21 13:06:23 +020028 "strconv"
29 "strings"
Juha Hyttinen12d31af2020-01-22 12:59:01 +020030 "time"
kalnagy93cc3e22019-09-19 11:29:29 +020031)
32
Juha Hyttinen31797b42020-01-16 14:05:01 +020033//-----------------------------------------------------------------------------
34//
35//-----------------------------------------------------------------------------
36type SubRouteInfo struct {
Juha Hyttinen83ada002020-01-30 10:36:33 +020037 EpList RmrEndpointList
38 SubID uint16
Juha Hyttinen31797b42020-01-16 14:05:01 +020039}
40
41func (sri *SubRouteInfo) String() string {
Juha Hyttinen83ada002020-01-30 10:36:33 +020042 return "routeinfo(" + strconv.FormatUint(uint64(sri.SubID), 10) + "/[" + sri.EpList.String() + "])"
Juha Hyttinen31797b42020-01-16 14:05:01 +020043}
44
45//-----------------------------------------------------------------------------
46//
47//-----------------------------------------------------------------------------
kalnagy93cc3e22019-09-19 11:29:29 +020048type RtmgrClient struct {
Juha Hyttinen12d31af2020-01-22 12:59:01 +020049 rtClient *rtmgrclient.RoutingManager
kalnagy93cc3e22019-09-19 11:29:29 +020050}
51
Juha Hyttinen83ada002020-01-30 10:36:33 +020052func (rc *RtmgrClient) SubscriptionRequestCreate(subRouteAction SubRouteInfo) error {
kalnagy93cc3e22019-09-19 11:29:29 +020053 subID := int32(subRouteAction.SubID)
Juha Hyttinen83ada002020-01-30 10:36:33 +020054 xapp.Logger.Debug("CREATE %s ongoing", subRouteAction.String())
55 createData := rtmgr_models.XappSubscriptionData{&subRouteAction.EpList.Endpoints[0].Addr, &subRouteAction.EpList.Endpoints[0].Port, &subID}
56 createHandle := rtmgrhandle.NewProvideXappSubscriptionHandleParamsWithTimeout(10 * time.Second)
57 createHandle.WithXappSubscriptionData(&createData)
58 _, err := rc.rtClient.Handle.ProvideXappSubscriptionHandle(createHandle)
Juha Hyttinen31797b42020-01-16 14:05:01 +020059 if err != nil && !(strings.Contains(err.Error(), "status 200")) {
Juha Hyttinen83ada002020-01-30 10:36:33 +020060 return fmt.Errorf("CREATE %s failed with error: %s", subRouteAction.String(), err.Error())
kalnagy93cc3e22019-09-19 11:29:29 +020061 }
Juha Hyttinen83ada002020-01-30 10:36:33 +020062 xapp.Logger.Debug("CREATE %s successful", subRouteAction.String())
63 return nil
64}
65
66func (rc *RtmgrClient) SubscriptionRequestUpdate(subRouteAction SubRouteInfo) error {
67 xapp.Logger.Debug("UPDATE %s ongoing", subRouteAction.String())
68 var updateData rtmgr_models.XappList
69 for i := range subRouteAction.EpList.Endpoints {
70 updateData = append(updateData, &rtmgr_models.XappElement{Address: &subRouteAction.EpList.Endpoints[i].Addr, Port: &subRouteAction.EpList.Endpoints[i].Port})
71 }
72 updateHandle := rtmgrhandle.NewUpdateXappSubscriptionHandleParamsWithTimeout(10 * time.Second)
73 updateHandle.WithSubscriptionID(subRouteAction.SubID)
74 updateHandle.WithXappList(updateData)
75 _, err := rc.rtClient.Handle.UpdateXappSubscriptionHandle(updateHandle)
76 if err != nil && !(strings.Contains(err.Error(), "status 200")) {
77 return fmt.Errorf("UPDATE %s failed with error: %s", subRouteAction.String(), err.Error())
78 }
79 xapp.Logger.Debug("UPDATE %s successful", subRouteAction.String())
Juha Hyttinen31797b42020-01-16 14:05:01 +020080 return nil
81
kalnagy93cc3e22019-09-19 11:29:29 +020082}
Juha Hyttinen83ada002020-01-30 10:36:33 +020083
84func (rc *RtmgrClient) SubscriptionRequestDelete(subRouteAction SubRouteInfo) error {
85 subID := int32(subRouteAction.SubID)
86 xapp.Logger.Debug("DELETE %s ongoing", subRouteAction.String())
87 deleteData := rtmgr_models.XappSubscriptionData{&subRouteAction.EpList.Endpoints[0].Addr, &subRouteAction.EpList.Endpoints[0].Port, &subID}
88 deleteHandle := rtmgrhandle.NewDeleteXappSubscriptionHandleParamsWithTimeout(10 * time.Second)
89 deleteHandle.WithXappSubscriptionData(&deleteData)
90 _, _, err := rc.rtClient.Handle.DeleteXappSubscriptionHandle(deleteHandle)
91 if err != nil && !(strings.Contains(err.Error(), "status 200")) {
92 return fmt.Errorf("DELETE %s failed with error: %s", subRouteAction.String(), err.Error())
93 }
94 xapp.Logger.Debug("DELETE %s successful", subRouteAction.String())
95 return nil
96}