72f0d22f4f0dfb15df512b8653d68b33d21117d7
[o-du/l2.git] / src / o1 / ves / PnfRegistration.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 macros and functions to support the preparation of pnf
20    Registration VES Event*/
21
22
23 #ifndef __PNF_REGISTRATION_HPP__
24 #define __PNF_REGISTRATION_HPP__
25
26 #include <iostream>
27 #include <string>
28 #include <cjson/cJSON.h>
29 #include <stdlib.h>
30 #include <stdio.h>
31 #include "VesUtils.hpp"
32 #include "VesEvent.hpp"
33
34 #define MAX_TIME_STR 11
35
36 using namespace std;
37
38 class PnfRegistration : public VesEvent
39 {
40
41    public:
42       /* Default constructor/Destructor */
43       PnfRegistration();
44       ~PnfRegistration();
45
46    protected:
47       bool prepareEventFields();
48
49    private:
50       bool prepareAdditionalFields(cJSON *addFields);
51       string getCurrentDate();
52       string getNetconfMacAddr();
53       string getNetconfV4ServerIP();
54       string getNetconfV6ServerIP();
55       string getNetconfPort();
56       string getUsername();
57       string getPassword();
58       string getSerialNumber();
59       string getUnitFamily();
60       bool readConfigFile();
61
62       //member variables
63       string mNetconfMacAddr;
64       string mNetconfIpv4;
65       string mNetconfIpv6;
66       string mNetconfPort;
67       string mNetconfUsername;
68       string mNetconfPassword;
69 };
70
71 #endif
72 /**********************************************************************
73   End of file
74  **********************************************************************/