2f151311bfe4d34f10730c9401c18e0aeb99009c
[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       bool prepare(const Message* msg = NULL);
45       bool send();
46
47    protected:
48       virtual bool prepareEventFields(const Message* msg = NULL) = 0;
49       virtual void getConfig();
50       virtual void createUrl();
51       VesEventType mVesEventType;
52       cJSON* mVesEventFields;
53            string mVesServerIp;
54       string mVesServerPort;
55       string mVesServerUsername;
56       string mVesServerPassword;
57       string mVesUrl;
58           
59    private:
60       string getEventFieldName();
61       char * mSendData;
62       HttpClient *mHttpClient;
63       
64 };
65
66 #endif
67 /**********************************************************************
68   End of file
69  **********************************************************************/