RIC-244 - Eliminate Setup/Reset request from dashboard & connectionAttempts
[ric-plt/e2mgr.git] / E2Manager / managers / ran_setup_manager.go
1 //
2 // Copyright 2019 AT&T Intellectual Property
3 // Copyright 2019 Nokia
4 //
5 // Licensed under the Apache License, Version 2.0 (the "License");
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 //      http://www.apache.org/licenses/LICENSE-2.0
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16
17 //  This source code is part of the near-RT RIC (RAN Intelligent Controller)
18 //  platform project (RICP).
19
20
21 package managers
22
23 import (
24         "e2mgr/e2managererrors"
25         "e2mgr/e2pdus"
26         "e2mgr/logger"
27         "e2mgr/models"
28         "e2mgr/rmrCgo"
29         "e2mgr/services"
30         "e2mgr/services/rmrsender"
31         "gerrit.o-ran-sc.org/r/ric-plt/nodeb-rnib.git/entities"
32         "unsafe"
33 )
34
35 type RanSetupManager struct {
36         logger          *logger.Logger
37         rnibDataService services.RNibDataService
38         rmrSender       *rmrsender.RmrSender
39 }
40
41 type IRanSetupManager interface {
42         ExecuteSetup(nodebInfo *entities.NodebInfo, status entities.ConnectionStatus) error
43 }
44
45 func NewRanSetupManager(logger *logger.Logger, rmrSender *rmrsender.RmrSender, rnibDataService services.RNibDataService) *RanSetupManager {
46         return &RanSetupManager{
47                 logger:          logger,
48                 rnibDataService: rnibDataService,
49                 rmrSender:       rmrSender,
50         }
51 }
52
53 // Update retries and connection status 
54 func (m *RanSetupManager) updateConnectionStatus(nodebInfo *entities.NodebInfo, status entities.ConnectionStatus) error {
55         // Update retries and connection status
56         nodebInfo.ConnectionStatus = status
57         err := m.rnibDataService.UpdateNodebInfo(nodebInfo)
58         if err != nil {
59                 m.logger.Errorf("#RanSetupManager.updateConnectionStatus - Ran name: %s - Failed updating RAN's connection status to %v : %s", nodebInfo.RanName, status, err)
60         } else {
61                 m.logger.Infof("#RanSetupManager.updateConnectionStatus - Ran name: %s - Successfully updated rNib. RAN's current connection status: %v", nodebInfo.RanName, status)
62         }
63         return err
64 }
65
66 // Decrement retries and connection status (disconnected)
67 func (m *RanSetupManager) updateConnectionStatusDisconnected(nodebInfo *entities.NodebInfo) error {
68         // Update retries and connection status
69         nodebInfo.ConnectionStatus = entities.ConnectionStatus_DISCONNECTED
70         err := m.rnibDataService.UpdateNodebInfo(nodebInfo)
71         if err != nil {
72                 m.logger.Errorf("#RanSetupManager.updateConnectionStatusDisconnected - Ran name: %s - Failed updating RAN's connection status to DISCONNECTED : %s", nodebInfo.RanName, err)
73         } else {
74                 m.logger.Infof("#RanSetupManager.updateConnectionStatusDisconnected - Ran name: %s - Successfully updated rNib. RAN's current connection status: DISCONNECTED", nodebInfo.RanName)
75         }
76         return err
77 }
78
79 func (m *RanSetupManager) prepareSetupRequest(nodebInfo *entities.NodebInfo) (int, *models.E2RequestMessage, error) {
80         // Build the endc/x2 setup request
81         switch nodebInfo.E2ApplicationProtocol {
82         case entities.E2ApplicationProtocol_X2_SETUP_REQUEST:
83                 rmrMsgType := rmrCgo.RIC_X2_SETUP_REQ
84                 request := models.NewE2RequestMessage(nodebInfo.RanName /*tid*/, nodebInfo.Ip, uint16(nodebInfo.Port), nodebInfo.RanName, e2pdus.PackedX2setupRequest)
85                 return rmrMsgType, request, nil
86         case entities.E2ApplicationProtocol_ENDC_X2_SETUP_REQUEST:
87                 rmrMsgType := rmrCgo.RIC_ENDC_X2_SETUP_REQ
88                 request := models.NewE2RequestMessage(nodebInfo.RanName /*tid*/, nodebInfo.Ip, uint16(nodebInfo.Port), nodebInfo.RanName, e2pdus.PackedEndcX2setupRequest)
89                 return rmrMsgType, request, nil
90         }
91
92         m.logger.Errorf("#RanSetupManager.prepareSetupRequest - Unsupported nodebInfo.E2ApplicationProtocol %d ", nodebInfo.E2ApplicationProtocol)
93         return 0, nil, e2managererrors.NewInternalError()
94 }
95
96 // ExecuteSetup updates the connection status and number of attempts in the nodebInfo and send an endc/x2 setup request to establish a connection with the RAN
97 func (m *RanSetupManager) ExecuteSetup(nodebInfo *entities.NodebInfo, status entities.ConnectionStatus) error {
98
99         // Update retries and connection status
100         if err := m.updateConnectionStatus(nodebInfo, status); err != nil {
101                 return e2managererrors.NewRnibDbError()
102         }
103
104         // Build the endc/x2 setup request
105         rmrMsgType, request, err := m.prepareSetupRequest(nodebInfo)
106         if err != nil {
107                 return err
108         }
109
110         // Send the endc/x2 setup request
111         var xAction []byte
112         var msgSrc unsafe.Pointer
113         msg := models.NewRmrMessage(rmrMsgType, nodebInfo.RanName, request.GetMessageAsBytes(m.logger), xAction, msgSrc)
114
115         err = m.rmrSender.Send(msg)
116
117         if err != nil {
118                 m.logger.Errorf("#RanSetupManager.ExecuteSetup - failed sending setup request to RMR: %s", err)
119
120                 err := m.updateConnectionStatusDisconnected(nodebInfo)
121
122                 // Decrement retries and connection status (disconnected)
123                 if err != nil {
124                         return e2managererrors.NewRnibDbError()
125                 }
126
127                 return e2managererrors.NewRmrError()
128         }
129
130         return nil
131 }