1 /*******************************************************************************
2 ################################################################################
3 # Copyright (c) [2020-2021] [HCL Technologies Ltd.] #
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 #
9 # http://www.apache.org/licenses/LICENSE-2.0 #
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 *******************************************************************************/
19 /* This file contains the C interface for ODU to start the O1 module */
21 #include "O1Interface.h"
23 #include "GlobalDefs.hpp"
24 #include "PnfRegistrationThread.hpp"
25 #include "ConfigLoader.hpp"
31 /*******************************************************************
33 * @brief Wait for the O1 Module to start
37 * Function : check_O1_module_status
40 * - Checks if the O1App has started
44 * @return O1::SUCCESS - success
45 * O1::FAILURE - failure
46 ******************************************************************/
48 int static check_O1_module_status(void){
50 const int N_RETRY = 5;
51 const int RETRY_DELAY = 1;
53 for( int i = 0; i < N_RETRY; i++)
55 if( O1App::instance().getStartupStatus() == true)
68 /*******************************************************************
70 * @brief Starts the O1 Module
74 * Function : start_O1_module
77 * - Starts the O1 module by instantiating the O1App instance
78 * Invoked from the ODU-High main function
82 * @return O1::SUCCESS - success
83 * O1::FAILURE - failure
84 ******************************************************************/
86 int start_O1_module(void)
89 if( !ConfigLoader::instance().loadConfigurations() )
92 if(O1App::instance().start() == false){
93 O1_LOG("\nO1 O1Interface : Failed to start");
97 if(O1App::instance().setAffinity(O1::CPU_CORE))
99 O1_LOG("\nO1 O1Interface : CPU affinity set for O1App thread to" );
100 O1App::instance().printAffinity();
102 return check_O1_module_status();
105 /*******************************************************************
107 * @brief Send VES PNF Registration Request
111 * Function : sendPnfRegistration
114 * - Create a thread and send VES PNF Registration Request
119 ******************************************************************/
121 void sendPnfRegistration(void)
123 PnfRegistrationThread::instance().start();
124 if(PnfRegistrationThread::instance().setAffinity(O1::CPU_CORE))
126 O1_LOG("\nO1 O1Interface : CPU affinity set for PnfRegistration thread to " );
127 PnfRegistrationThread::instance().printAffinity();
132 /**********************************************************************
134 **********************************************************************/