VES PM data for slicing use case. [Issue-Id: ODUHIGH-384]
[o-du/l2.git] / src / o1 / ves / PnfRegistrationEvent.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_EVENT_HPP__
24 #define __PNF_REGISTRATION_EVENT_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 #include "Message.hpp"
34
35 #define MAX_TIME_STR 11
36
37 using namespace std;
38
39 class PnfRegistrationEvent : public VesEvent
40 {
41
42    public:
43       /* Default constructor/Destructor */
44       PnfRegistrationEvent();
45       ~PnfRegistrationEvent();
46
47    protected:
48       bool prepareEventFields(const Message* msg = NULL);
49
50    private:
51       bool prepareAdditionalFields(cJSON *addFields);
52       string getCurrentDate();
53       string getNetconfMacAddr();
54       string getNetconfV4ServerIP();
55       string getNetconfV6ServerIP();
56       string getNetconfPort();
57       string getUsername();
58       string getPassword();
59       string getSerialNumber();
60       string getUnitFamily();
61       void getNetconfConfig();
62
63       //member variables
64       string mNetconfMacAddr;
65       string mNetconfIpv4;
66       string mNetconfIpv6;
67       string mNetconfPort;
68       string mNetconfUsername;
69       string mNetconfPassword;
70 };
71
72 #endif
73 /**********************************************************************
74   End of file
75  **********************************************************************/