Cell and Network slicing configuration over o1.
[o-du/l2.git] / src / o1 / NrCellDuCb.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 NrCellDu get and update handler . It handles
20    get and change callback for NrCellDu yang module  */
21
22 #ifndef __NR_CELL_DU_HPP__
23 #define __NR_CELL_DU_HPP__
24
25 #include <string.h>
26 #include <stdlib.h>
27 #include "sysrepo-cpp/Session.hpp"
28 #include "AlarmManager.hpp"
29 #include "GlobalDefs.hpp"
30 #include "CmInterface.h"
31 #include "NetconfUtils.hpp"
32
33 class NrCellDuCb: public sysrepo::Callback
34 {
35    public:
36       int oper_get_items(sysrepo::S_Session session,\
37                          const char *module_name,\
38                          const char *path,\
39                          const char *request_xpath,\
40                          uint32_t request_id,\
41                          libyang::S_Data_Node &parent,\
42                          void *private_data);
43
44       int module_change(sysrepo::S_Session sess, \
45                          const char *module_name, \
46                          const char *xpath, \
47                          sr_event_t event, \
48                          uint32_t request_id, \
49                          void *private_data); //override
50    private:
51       bool configureCell();
52       void updateParams(string &parent, string &leaf, string &val);
53       AdminState administrativeStateToEnum(string &val);
54
55 };
56
57 #endif
58
59 /**********************************************************************
60          End of file
61 **********************************************************************/