VES PNF Registration Request changes.
[o-du/l2.git] / src / o1 / ves / VesCommonHeader.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 functions to support the preparation of VES common header
20    parameters*/
21
22 #ifndef __VES_COMMON_HEADER_HPP__
23 #define __VES_COMMON_HEADER_HPP__
24
25
26 #include <iostream>
27 #include <string>
28 #include <cstdint>
29 #include <cjson/cJSON.h>
30 #include <sys/time.h>
31 #include <stdlib.h>
32 #include <stdio.h>
33 #include "VesUtils.hpp"
34
35 #define MAX_TIME_STR 11
36 using namespace std;
37
38 class VesCommonHeader{
39
40    public:
41       /* Default constructor/Destructor*/
42       VesCommonHeader(){}
43       ~VesCommonHeader(){}
44
45       bool prepare(cJSON *node, VesEventType type);
46
47    private:
48       uint16_t getSequenceNo();
49       uint16_t nextSequenceNo();
50       string getEventTypeToStr();
51       string getEventType();
52       string getEventId();
53       string getPriority();
54       string getEventName();
55       string getReportingEntityName();
56       string getSourceName();
57       string getNamingCode();
58       uint64_t getEpochTime();
59       string getCurrentTime();
60
61       VesEventType mEventType;
62 };
63
64 #endif
65 /**********************************************************************
66   End of file
67  **********************************************************************/