kalnagy | 93cc3e2 | 2019-09-19 11:29:29 +0200 | [diff] [blame] | 1 | /* |
| 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 | |
| 20 | package control |
| 21 | |
| 22 | import ( |
Juha Hyttinen | 31797b4 | 2020-01-16 14:05:01 +0200 | [diff] [blame] | 23 | "fmt" |
archagge | afbf95f | 2021-04-14 08:54:05 +0300 | [diff] [blame] | 24 | "strconv" |
| 25 | "strings" |
| 26 | "time" |
| 27 | |
kalnagy | 93cc3e2 | 2019-09-19 11:29:29 +0200 | [diff] [blame] | 28 | rtmgrclient "gerrit.o-ran-sc.org/r/ric-plt/submgr/pkg/rtmgr_client" |
| 29 | rtmgrhandle "gerrit.o-ran-sc.org/r/ric-plt/submgr/pkg/rtmgr_client/handle" |
| 30 | "gerrit.o-ran-sc.org/r/ric-plt/submgr/pkg/rtmgr_models" |
kalnagy | 93cc3e2 | 2019-09-19 11:29:29 +0200 | [diff] [blame] | 31 | "gerrit.o-ran-sc.org/r/ric-plt/xapp-frame/pkg/xapp" |
| 32 | ) |
| 33 | |
Juha Hyttinen | 31797b4 | 2020-01-16 14:05:01 +0200 | [diff] [blame] | 34 | //----------------------------------------------------------------------------- |
| 35 | // |
| 36 | //----------------------------------------------------------------------------- |
| 37 | type SubRouteInfo struct { |
Juha Hyttinen | 9dc5adc | 2020-08-13 10:02:40 +0300 | [diff] [blame] | 38 | EpList xapp.RmrEndpointList |
Juha Hyttinen | 83ada00 | 2020-01-30 10:36:33 +0200 | [diff] [blame] | 39 | SubID uint16 |
Juha Hyttinen | 31797b4 | 2020-01-16 14:05:01 +0200 | [diff] [blame] | 40 | } |
| 41 | |
| 42 | func (sri *SubRouteInfo) String() string { |
Juha Hyttinen | 83ada00 | 2020-01-30 10:36:33 +0200 | [diff] [blame] | 43 | return "routeinfo(" + strconv.FormatUint(uint64(sri.SubID), 10) + "/[" + sri.EpList.String() + "])" |
Juha Hyttinen | 31797b4 | 2020-01-16 14:05:01 +0200 | [diff] [blame] | 44 | } |
| 45 | |
| 46 | //----------------------------------------------------------------------------- |
| 47 | // |
| 48 | //----------------------------------------------------------------------------- |
kalnagy | 93cc3e2 | 2019-09-19 11:29:29 +0200 | [diff] [blame] | 49 | type RtmgrClient struct { |
Juha Hyttinen | 12d31af | 2020-01-22 12:59:01 +0200 | [diff] [blame] | 50 | rtClient *rtmgrclient.RoutingManager |
kalnagy | 93cc3e2 | 2019-09-19 11:29:29 +0200 | [diff] [blame] | 51 | } |
| 52 | |
Juha Hyttinen | 83ada00 | 2020-01-30 10:36:33 +0200 | [diff] [blame] | 53 | func (rc *RtmgrClient) SubscriptionRequestCreate(subRouteAction SubRouteInfo) error { |
kalnagy | 93cc3e2 | 2019-09-19 11:29:29 +0200 | [diff] [blame] | 54 | subID := int32(subRouteAction.SubID) |
Juha Hyttinen | 83ada00 | 2020-01-30 10:36:33 +0200 | [diff] [blame] | 55 | xapp.Logger.Debug("CREATE %s ongoing", subRouteAction.String()) |
| 56 | createData := rtmgr_models.XappSubscriptionData{&subRouteAction.EpList.Endpoints[0].Addr, &subRouteAction.EpList.Endpoints[0].Port, &subID} |
Anssi Mannila | 4abf180 | 2021-01-28 13:06:46 +0200 | [diff] [blame] | 57 | createHandle := rtmgrhandle.NewProvideXappSubscriptionHandleParamsWithTimeout(2 * time.Second) |
Juha Hyttinen | 83ada00 | 2020-01-30 10:36:33 +0200 | [diff] [blame] | 58 | createHandle.WithXappSubscriptionData(&createData) |
| 59 | _, err := rc.rtClient.Handle.ProvideXappSubscriptionHandle(createHandle) |
Juha Hyttinen | 31797b4 | 2020-01-16 14:05:01 +0200 | [diff] [blame] | 60 | if err != nil && !(strings.Contains(err.Error(), "status 200")) { |
Juha Hyttinen | 83ada00 | 2020-01-30 10:36:33 +0200 | [diff] [blame] | 61 | return fmt.Errorf("CREATE %s failed with error: %s", subRouteAction.String(), err.Error()) |
kalnagy | 93cc3e2 | 2019-09-19 11:29:29 +0200 | [diff] [blame] | 62 | } |
Juha Hyttinen | 83ada00 | 2020-01-30 10:36:33 +0200 | [diff] [blame] | 63 | xapp.Logger.Debug("CREATE %s successful", subRouteAction.String()) |
| 64 | return nil |
| 65 | } |
| 66 | |
| 67 | func (rc *RtmgrClient) SubscriptionRequestUpdate(subRouteAction SubRouteInfo) error { |
| 68 | xapp.Logger.Debug("UPDATE %s ongoing", subRouteAction.String()) |
| 69 | var updateData rtmgr_models.XappList |
| 70 | for i := range subRouteAction.EpList.Endpoints { |
| 71 | updateData = append(updateData, &rtmgr_models.XappElement{Address: &subRouteAction.EpList.Endpoints[i].Addr, Port: &subRouteAction.EpList.Endpoints[i].Port}) |
| 72 | } |
Anssi Mannila | 4abf180 | 2021-01-28 13:06:46 +0200 | [diff] [blame] | 73 | updateHandle := rtmgrhandle.NewUpdateXappSubscriptionHandleParamsWithTimeout(2 * time.Second) |
Juha Hyttinen | 83ada00 | 2020-01-30 10:36:33 +0200 | [diff] [blame] | 74 | updateHandle.WithSubscriptionID(subRouteAction.SubID) |
| 75 | updateHandle.WithXappList(updateData) |
| 76 | _, err := rc.rtClient.Handle.UpdateXappSubscriptionHandle(updateHandle) |
| 77 | if err != nil && !(strings.Contains(err.Error(), "status 200")) { |
| 78 | return fmt.Errorf("UPDATE %s failed with error: %s", subRouteAction.String(), err.Error()) |
| 79 | } |
| 80 | xapp.Logger.Debug("UPDATE %s successful", subRouteAction.String()) |
Juha Hyttinen | 31797b4 | 2020-01-16 14:05:01 +0200 | [diff] [blame] | 81 | return nil |
| 82 | |
kalnagy | 93cc3e2 | 2019-09-19 11:29:29 +0200 | [diff] [blame] | 83 | } |
Juha Hyttinen | 83ada00 | 2020-01-30 10:36:33 +0200 | [diff] [blame] | 84 | |
| 85 | func (rc *RtmgrClient) SubscriptionRequestDelete(subRouteAction SubRouteInfo) error { |
| 86 | subID := int32(subRouteAction.SubID) |
| 87 | xapp.Logger.Debug("DELETE %s ongoing", subRouteAction.String()) |
| 88 | deleteData := rtmgr_models.XappSubscriptionData{&subRouteAction.EpList.Endpoints[0].Addr, &subRouteAction.EpList.Endpoints[0].Port, &subID} |
Anssi Mannila | 4abf180 | 2021-01-28 13:06:46 +0200 | [diff] [blame] | 89 | deleteHandle := rtmgrhandle.NewDeleteXappSubscriptionHandleParamsWithTimeout(2 * time.Second) |
Juha Hyttinen | 83ada00 | 2020-01-30 10:36:33 +0200 | [diff] [blame] | 90 | deleteHandle.WithXappSubscriptionData(&deleteData) |
| 91 | _, _, err := rc.rtClient.Handle.DeleteXappSubscriptionHandle(deleteHandle) |
| 92 | if err != nil && !(strings.Contains(err.Error(), "status 200")) { |
| 93 | return fmt.Errorf("DELETE %s failed with error: %s", subRouteAction.String(), err.Error()) |
| 94 | } |
| 95 | xapp.Logger.Debug("DELETE %s successful", subRouteAction.String()) |
| 96 | return nil |
| 97 | } |