aboutsummaryrefslogtreecommitdiffstats
path: root/UniversalVesAdapter/src/main/java/org/onap/universalvesadapter/adapter/UniversalEventAdapter.java
blob: 65c7b9c98a6ef0343f7497f438a6f01b8815e4e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
/*
* ============LICENSE_START=======================================================
* ONAP : DCAE
* ================================================================================
* Copyright 2018 TechMahindra
*=================================================================================
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*     http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* ============LICENSE_END=========================================================
*/
package org.onap.universalvesadapter.adapter;

import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.nio.charset.StandardCharsets;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
import javax.annotation.PreDestroy;
import org.milyn.Smooks;
import org.onap.dcaegen2.ves.domain.VesEvent;
import org.onap.universalvesadapter.exception.ConfigFileSmooksConversionException;
import org.onap.universalvesadapter.exception.VesException;
import org.onap.universalvesadapter.service.VESAdapterInitializer;
import org.onap.universalvesadapter.utils.SmooksUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;
import org.xml.sax.SAXException;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.google.gson.Gson;
import com.google.gson.JsonElement;
import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.JsonSyntaxException;

/**
 * Default implementation of the Generic Adapter
 * 
 * @author kmalbari
 *
 */

@Component
public class UniversalEventAdapter implements GenericAdapter {

	private final Logger LOGGER = LoggerFactory.getLogger(this.getClass());

	private String enterpriseId;
	@Value("${defaultMappingFileName}")
	private String defaulMappingFileName;
	private Map<String, Smooks> eventToSmooksMapping = new ConcurrentHashMap<>();

	public UniversalEventAdapter() {

	}

	/**
	 * transforms JSON to VES format and and returns the ves Event
	 * 
	 * @param IncomingJason,eventType
	 * @return ves Event
	 */
	@Override
	public String transform(String incomingJsonString, String eventType)
			throws  ConfigFileSmooksConversionException, VesException {
		String result = "";
		String configFileData;
		try {

				Gson gson = new Gson();
				JsonObject body = gson.fromJson(incomingJsonString, JsonObject.class);
				JsonElement results = body.get("notify OID");
				String notifyOid = results.getAsString();

				// extracting enterprise id from notify OID of SNMP trap.
				enterpriseId = notifyOid.substring(0, notifyOid.length() - 4);

				if (VESAdapterInitializer.getMappingFiles().containsKey(enterpriseId)) {
					configFileData = VESAdapterInitializer.getMappingFiles().get(enterpriseId);
					LOGGER.debug("Using Mapping file as Mapping file is not available for Enterprise Id:{}",enterpriseId);
				} else {

					configFileData = VESAdapterInitializer.getMappingFiles().get(defaulMappingFileName);
					LOGGER.debug("Using Default Mapping file as Mapping file is not available for Enterprise Id:{}",enterpriseId);
				}

				Smooks smooksTemp = new Smooks(new ByteArrayInputStream(configFileData.getBytes(StandardCharsets.UTF_8)));
				eventToSmooksMapping.put(eventType, smooksTemp);

			VesEvent vesEvent = SmooksUtils.getTransformedObjectForInput(smooksTemp,incomingJsonString);
			LOGGER.debug("Incoming json transformed to VES format successfully");
			ObjectMapper objectMapper = new ObjectMapper();
			result = objectMapper.writeValueAsString(vesEvent);
			LOGGER.debug("Serialized VES json");
		} catch (JsonProcessingException exception) {
			throw new VesException("Unable to convert pojo to VES format, Reason :{}", exception);
		} catch (SAXException | IOException exception) {
			//Invalid Mapping file
			LOGGER.error("Dropping this Trap :{},due to error Occured  :Reason:", incomingJsonString, exception); 

		} catch (JsonSyntaxException exception) {
			// Invalid Trap
			LOGGER.error("Dropping this Invalid json Trap :{},  Reason:", incomingJsonString, exception);
		}catch (JsonParseException exception) {
			// Invalid Trap
			LOGGER.error("Dropping this Invalid json Trap :{},  Reason:", incomingJsonString, exception);
		} 
		catch (RuntimeException exception) {

			LOGGER.error("Dropping this Trap :{},Reason:", incomingJsonString, exception);

		}
		return result;
	}

	/**
	 * Closes all open smooks' instances before bean is destroyed
	 */
	@PreDestroy
	public void destroy() {
		for (Smooks smooks : eventToSmooksMapping.values())
			smooks.close();
		LOGGER.debug("All Smooks objects closed");
	}

}