aboutsummaryrefslogtreecommitdiffstats
path: root/UniversalVesAdapter/src/main/java/org/onap/universalvesadapter/utils/SmooksUtils.java
blob: e77c9654a8927677fef713bace38001b453e44b0 (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
/*
* ============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.utils;

import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.nio.charset.StandardCharsets;
import java.util.Locale;
import javax.xml.transform.stream.StreamSource;
import org.milyn.Smooks;
import org.milyn.container.ExecutionContext;
import org.milyn.payload.StringResult;
import org.onap.dcaegen2.ves.domain.VesEvent;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;


/**
 * Utility methods for smooks module
 * 
 * @author kmalbari
 *
 */


public class SmooksUtils {

	
	 private static final Logger debugLogger = LoggerFactory.getLogger("debugLogger");
	 private static final Logger errorLogger = LoggerFactory.getLogger("errorLogger");	
	
	/**
	 * converts the incoming json using passed smooks instance and return the pojo representation of VES event
	 * 
	 * @param smooks smooks object for the event type
	 * @param incomingJsonString 
	 * @return VES json's pojo representation
	 * @throws IOException
	 */
	public static VesEvent getTransformedObjectForInput(Smooks smooks, String incomingJsonString) {
		
		debugLogger.info("Transforming incoming json " );
		ExecutionContext executionContext = smooks.createExecutionContext();
		debugLogger.info("Context created");
		Locale defaultLocale = Locale.getDefault();
        Locale.setDefault(new Locale("en", "IE"));

        StringResult result = new StringResult();

        smooks.filterSource(executionContext, new StreamSource(new ByteArrayInputStream(incomingJsonString.getBytes(StandardCharsets.UTF_8))), result);
       
        Locale.setDefault(defaultLocale);
        VesEvent vesEvent = (VesEvent) executionContext.getBeanContext().getBean("vesEvent");
        debugLogger.debug("consversion successful to VES Event"); 
        
		return vesEvent;
	}

}