Cell and Network slicing configuration over o1.
[o-du/l2.git] / src / o1 / NrCellList.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 List of the Cell and it's parameters values for CLA 
20    use case*/
21
22 #ifndef __NR_CELL_LIST_HPP__
23 #define __NR_CELL_LIST_HPP__
24
25 #include <string.h>
26 #include <stdlib.h>
27 #include <stdint.h>
28 #include <map>
29 #include "sysrepo-cpp/Session.hpp"
30 #include "CmInterface.h"
31 #include "GlobalDefs.hpp"
32 #include "Singleton.hpp"
33 #include "NrCellInfo.hpp"
34
35 class NrCellList : public Singleton<NrCellList>
36 {
37    public:
38       friend Singleton<NrCellList>;
39       typedef std::map<uint16_t, NrCellInfo> CellOpStateMap;
40
41       bool setCellOpState(uint16_t cellId, OpState opState, \
42                           CellState cellState);
43       const std::map<uint16_t, NrCellInfo> & getCellOpStateList();
44
45
46    private:
47       std::map<uint16_t, NrCellInfo> mCellOpStateMap;
48 };
49
50 #endif
51
52 /**********************************************************************
53          End of file
54 **********************************************************************/