00655d21847baaf8e6539b4fd8b39ba285d8eba1
[o-du/l2.git] / src / o1 / NrCellCb.hpp
1 /*******************************************************************************
2 ################################################################################
3 #   Copyright (c) [2020-2021] [HCL Technologies Ltd.]                          #
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
19 /* This file contains Cell state update handler for CLA use case. It handles
20    get and change callback for o-ran-sc-du-hello-world yang module  */
21
22
23 #ifndef __NR_CELL_CB_HPP__
24 #define __NR_CELL_CB_HPP__
25
26 #include <string.h>
27 #include <stdlib.h>
28 #include <stdint.h>
29 #include "sysrepo-cpp/Session.hpp"
30 #include "ConfigInterface.h"
31 #include "GlobalDefs.hpp"
32 #include "Singleton.hpp"
33 #include "NrCellInfo.hpp"
34 #include "NrCellList.hpp"
35
36 class NrCellCb : public sysrepo::Callback
37 {
38
39    public:
40       int oper_get_items(sysrepo::S_Session session,\
41                          const char *module_name,\
42                          const char *path,\
43                          const char *request_xpath,\
44                          uint32_t request_id,\
45                          libyang::S_Data_Node &parent,\
46                          void *private_data); //override
47       int module_change(sysrepo::S_Session sess, \
48                          const char *module_name, \
49                          const char *xpath, \
50                          sr_event_t event, \
51                          uint32_t request_id, \
52                          void *private_data); //override
53
54       bool setAdminState(uint16_t cellId, AdminState newAdminState);
55
56    private:
57       static void printChange(sysrepo::S_Change change);
58       const char *evToStr(sr_event_t ev);
59 };
60
61 #endif
62
63 /**********************************************************************
64          End of file
65 **********************************************************************/