[RICPLT-1852] Supports E2T Initialize + ExecuteSetup + prepare setup request on init
[ric-plt/e2mgr.git] / E2Manager / managers / ran_reconnection_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
18 package managers
19
20 import (
21         "e2mgr/configuration"
22         "e2mgr/logger"
23         "e2mgr/rNibWriter"
24         "e2mgr/services"
25         "gerrit.o-ran-sc.org/r/ric-plt/nodeb-rnib.git/common"
26         "gerrit.o-ran-sc.org/r/ric-plt/nodeb-rnib.git/entities"
27         "gerrit.o-ran-sc.org/r/ric-plt/nodeb-rnib.git/reader"
28 )
29
30 type IRanReconnectionManager interface {
31         ReconnectRan(inventoryName string) error
32 }
33
34 type RanReconnectionManager struct {
35         logger             *logger.Logger
36         config             *configuration.Configuration
37         rnibReaderProvider func() reader.RNibReader
38         rnibWriterProvider func() rNibWriter.RNibWriter
39         ranSetupManager    *RanSetupManager
40 }
41
42 func NewRanReconnectionManager(logger *logger.Logger, config *configuration.Configuration, rnibReaderProvider func() reader.RNibReader, rnibWriterProvider func() rNibWriter.RNibWriter, rmrService *services.RmrService) *RanReconnectionManager {
43         return &RanReconnectionManager{
44                 logger:             logger,
45                 config:             config,
46                 rnibReaderProvider: rnibReaderProvider,
47                 rnibWriterProvider: rnibWriterProvider,
48                 ranSetupManager:    NewRanSetupManager(logger,rmrService,rnibWriterProvider),
49         }
50 }
51
52 func (m *RanReconnectionManager) ReconnectRan(inventoryName string) error {
53         nodebInfo, rnibErr := m.rnibReaderProvider().GetNodeb(inventoryName)
54
55         if rnibErr != nil {
56                 m.logger.Errorf("#ReconnectRan - RAN name: %s - Failed fetching RAN from rNib. Error: %v", inventoryName, rnibErr)
57                 return rnibErr
58         }
59
60         if !m.canReconnectRan(nodebInfo) {
61                 m.logger.Warnf("#ReconnectRan - RAN name: %s - Cannot reconnect RAN", inventoryName)
62                 return m.setConnectionStatusOfUnconnectableRan(nodebInfo)
63         }
64
65         err := m.ranSetupManager.ExecuteSetup(nodebInfo)
66
67         if err != nil {
68                 m.logger.Errorf("#ReconnectRan - RAN name: %s - Failed executing setup. Error: %v", inventoryName, err)
69                 return err
70         }
71
72         m.logger.Infof("#ReconnectRan - RAN name: %s - Successfully done executing setup", inventoryName)
73         return nil
74 }
75
76 func (m *RanReconnectionManager) canReconnectRan(nodebInfo *entities.NodebInfo) bool {
77         connectionStatus := nodebInfo.GetConnectionStatus()
78         return connectionStatus != entities.ConnectionStatus_SHUT_DOWN && connectionStatus != entities.ConnectionStatus_SHUTTING_DOWN &&
79                 int(nodebInfo.GetConnectionAttempts()) < m.config.MaxConnectionAttempts
80 }
81
82 func (m *RanReconnectionManager) updateNodebInfoStatus(nodebInfo *entities.NodebInfo, connectionStatus entities.ConnectionStatus) common.IRNibError {
83         nodebInfo.ConnectionStatus = connectionStatus;
84         err := m.rnibWriterProvider().UpdateNodebInfo(nodebInfo)
85
86         if err != nil {
87                 m.logger.Errorf("#updateNodebInfoStatus - RAN name: %s - Failed updating RAN's connection status to %s in rNib. Error: %v", nodebInfo.RanName, connectionStatus, err)
88                 return err
89         }
90
91         m.logger.Infof("#updateNodebInfoStatus - RAN name: %s - Successfully updated RAN's connection status to %s in rNib", nodebInfo.RanName, connectionStatus)
92         return nil
93 }
94
95 func (m *RanReconnectionManager) setConnectionStatusOfUnconnectableRan(nodebInfo *entities.NodebInfo) common.IRNibError {
96         connectionStatus := nodebInfo.GetConnectionStatus()
97         m.logger.Warnf("#setConnectionStatusOfUnconnectableRan - RAN name: %s, RAN's connection status: %s, RAN's connection attempts: %d", nodebInfo.RanName, nodebInfo.ConnectionStatus, nodebInfo.ConnectionAttempts)
98
99         if connectionStatus == entities.ConnectionStatus_SHUTTING_DOWN {
100                 return m.updateNodebInfoStatus(nodebInfo, entities.ConnectionStatus_SHUT_DOWN)
101         }
102
103         if int(nodebInfo.GetConnectionAttempts()) >= m.config.MaxConnectionAttempts {
104                 m.logger.Warnf("#setConnectionStatusOfUnconnectableRan - RAN name: %s - RAN's connection attempts are greater than %d", nodebInfo.RanName, m.config.MaxConnectionAttempts)
105                 return m.updateNodebInfoStatus(nodebInfo, entities.ConnectionStatus_DISCONNECTED)
106         }
107
108         return nil
109 }