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