Fixed the http request call for VES PM message [Issue-ID: ODUHIGH-412]
[o-du/l2.git] / src / o1 / ves / VesEvent.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 Base call functions to support send VES Event*/
20
21
22 #ifndef __VES_EVENT_HPP__
23 #define __VES_EVENT_HPP__
24
25 #include <iostream>
26 #include <string>
27 #include <cjson/cJSON.h>
28 #include <stdlib.h>
29 #include <stdio.h>
30 #include "VesUtils.hpp"
31 #include "VesCommonHeader.hpp"
32 #include "HttpClient.hpp"
33 #include "Message.hpp"
34 #include "ConfigLoader.hpp"
35
36 using namespace std;
37
38 class VesEvent{
39
40    public:
41       VesEvent();
42       VesEvent(VesEventType);
43       virtual ~VesEvent();
44       void init();
45       bool prepare(const Message* msg = NULL);
46       bool send();
47
48    protected:
49       virtual bool prepareEventFields(const Message* msg = NULL) = 0;
50       virtual void getConfig();
51       virtual void createUrl();
52       VesEventType mVesEventType;
53       cJSON* mVesEventFields;
54            string mVesServerIp;
55       string mVesServerPort;
56       string mVesServerUsername;
57       string mVesServerPassword;
58       string mVesUrl;
59           
60    private:
61       string getEventFieldName();
62       char * mSendData;
63       HttpClient *mHttpClient;
64       
65 };
66
67 #endif
68 /**********************************************************************
69   End of file
70  **********************************************************************/