[ Jira id - ODUHIGH-593 ] Pack and unpack function nomenclature correction
[o-du/l2.git] / src / o1 / NetconfManager.hpp
1 /*******************************************************************************
2 ################################################################################
3 #   Copyright (c) [2020] [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 class is the netconf manager class. It creates instance of the 
20    SessionHandler that provides connections/sessions related funtionality
21    and signal handling. 
22 */
23
24 #ifndef __NETCONF_MANAGER_HPP__
25 #define __NETCONF_MANAGER_HPP__
26
27 #include "SessionHandler.hpp"
28 #include "Singleton.hpp"
29
30 class NetconfManager : public Singleton<NetconfManager>
31 {
32
33    friend Singleton<NetconfManager>;
34
35    public:
36       /*initialize variables*/
37       bool init();
38
39       /*handler for netopeer server*/
40       bool startNetopeerServer(void);
41       static bool stopNetopeerServer(void);
42       static void sigintHandler(int signum);
43
44       /*getter setter for  SessionHandler obj*/
45       bool setSessionHandler (SessionHandler  sessMgr);
46       SessionHandler  getSessionHandler(void);
47
48
49    protected:
50       NetconfManager();
51       ~NetconfManager();
52
53    private:
54       SessionHandler *mSessHndl;
55 };
56
57
58 #endif
59
60 /**********************************************************************
61          End of file
62 **********************************************************************/