767c24fdd0ebd2f382549fadb72043d1e54bbfd2
[policy/apex-pdp.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2016-2018 Ericsson. All rights reserved.
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  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.apex.plugins.event.protocol.xml;
22
23 import java.io.ByteArrayInputStream;
24 import java.io.StringWriter;
25 import java.net.URL;
26 import java.util.ArrayList;
27 import java.util.List;
28 import java.util.Map.Entry;
29
30 import javax.xml.XMLConstants;
31 import javax.xml.bind.JAXBContext;
32 import javax.xml.bind.JAXBElement;
33 import javax.xml.bind.JAXBException;
34 import javax.xml.bind.Marshaller;
35 import javax.xml.bind.Unmarshaller;
36 import javax.xml.transform.stream.StreamSource;
37 import javax.xml.validation.Schema;
38 import javax.xml.validation.SchemaFactory;
39
40 import org.onap.policy.apex.plugins.event.protocol.xml.jaxb.ObjectFactory;
41 import org.onap.policy.apex.plugins.event.protocol.xml.jaxb.XMLApexEvent;
42 import org.onap.policy.apex.plugins.event.protocol.xml.jaxb.XMLApexEventData;
43 import org.onap.policy.apex.service.engine.event.ApexEvent;
44 import org.onap.policy.apex.service.engine.event.ApexEventException;
45 import org.onap.policy.apex.service.engine.event.ApexEventProtocolConverter;
46 import org.onap.policy.apex.service.engine.event.ApexEventRuntimeException;
47 import org.onap.policy.apex.service.parameters.eventprotocol.EventProtocolParameters;
48 import org.onap.policy.common.utils.resources.ResourceUtils;
49 import org.slf4j.ext.XLogger;
50 import org.slf4j.ext.XLoggerFactory;
51 import org.xml.sax.SAXException;
52
53 /**
54  * The Class Apex2XMLEventConverter converts {@link ApexEvent} instances into string instances of {@link XMLApexEvent}
55  * that are XML representations of Apex events defined in JAXB.
56  *
57  * @author Liam Fallon (liam.fallon@ericsson.com)
58  */
59 public final class Apex2XmlEventConverter implements ApexEventProtocolConverter {
60     private static final XLogger LOGGER = XLoggerFactory.getXLogger(Apex2XmlEventConverter.class);
61
62     private static final String MODEL_SCHEMA_NAME = "xml/apex-event.xsd";
63
64     // XML Unmarshaller and marshaller and object factory for events
65     private Unmarshaller unmarshaller;
66     private Marshaller marshaller;
67     private ObjectFactory objectFactory = new ObjectFactory();
68
69     /**
70      * Constructor to create the Apex to XML converter.
71      *
72      * @throws ApexEventException the apex event exception
73      */
74     public Apex2XmlEventConverter() throws ApexEventException {
75         try {
76             final URL schemaUrl = ResourceUtils.getUrlResource(MODEL_SCHEMA_NAME);
77             final Schema apexEventSchema =
78                     SchemaFactory.newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI).newSchema(schemaUrl);
79
80             final JAXBContext jaxbContext = JAXBContext.newInstance(XMLApexEvent.class);
81
82             // Set up the unmarshaller to carry out validation
83             unmarshaller = jaxbContext.createUnmarshaller();
84             unmarshaller.setEventHandler(new javax.xml.bind.helpers.DefaultValidationEventHandler());
85             unmarshaller.setSchema(apexEventSchema);
86
87             // Set up the marshaller
88             marshaller = jaxbContext.createMarshaller();
89             marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
90             marshaller.setSchema(apexEventSchema);
91         } catch (JAXBException | SAXException e) {
92             LOGGER.error("Unable to set up marshalling and unmarshalling for XML events", e);
93             throw new ApexEventException("Unable to set up marshalling and unmarshalling for XML events", e);
94         }
95     }
96
97     /*
98      * (non-Javadoc)
99      *
100      * @see org.onap.policy.apex.service.engine.event.ApexEventProtocolConverter#init(org.onap.policy.apex.service.
101      * parameters. eventprotocol.EventProtocolParameters)
102      */
103     @Override
104     public void init(final EventProtocolParameters parameters) {
105         // No initialization necessary on this class
106     }
107
108     /*
109      * (non-Javadoc)
110      *
111      * @see org.onap.policy.apex.service.engine.event.ApexEventConverter#toApexEvent(java.lang.String, java.lang.Object)
112      */
113     @Override
114     public List<ApexEvent> toApexEvent(final String eventName, final Object eventObject) throws ApexEventException {
115         // Check the XML event
116         if (eventObject == null) {
117             LOGGER.warn("event processing failed, XML event is null");
118             throw new ApexEventException("event processing failed, XML event is null");
119         }
120
121         // Cast the event to a string, if our conversion is correctly configured, this cast should always work
122         String xmlEventString = null;
123         try {
124             xmlEventString = (String) eventObject;
125         } catch (final Exception e) {
126             final String errorMessage = "error converting event \"" + eventObject + "\" to a string";
127             LOGGER.debug(errorMessage, e);
128             throw new ApexEventRuntimeException(errorMessage, e);
129         }
130
131         // The XML event
132         XMLApexEvent xmlApexEvent = null;
133
134         // Use JAXB to read and verify the event from the XML string
135         try {
136             final StreamSource source = new StreamSource(new ByteArrayInputStream(xmlEventString.getBytes()));
137             final JAXBElement<XMLApexEvent> rootElement = unmarshaller.unmarshal(source, XMLApexEvent.class);
138             xmlApexEvent = rootElement.getValue();
139         } catch (final JAXBException e) {
140             LOGGER.warn("Unable to unmarshal Apex XML event\n" + xmlEventString, e);
141             throw new ApexEventException("Unable to unmarshal Apex XML event\n" + xmlEventString, e);
142         }
143
144         // Create the Apex event
145         final ApexEvent apexEvent = new ApexEvent(xmlApexEvent.getName(), xmlApexEvent.getVersion(),
146                 xmlApexEvent.getNameSpace(), xmlApexEvent.getSource(), xmlApexEvent.getTarget());
147
148         // Set the data on the apex event
149         for (final XMLApexEventData xmlData : xmlApexEvent.getData()) {
150             apexEvent.put(xmlData.getKey(), xmlData.getValue());
151         }
152
153         // Return the event in a single element
154         final ArrayList<ApexEvent> eventList = new ArrayList<>();
155         eventList.add(apexEvent);
156         return eventList;
157     }
158
159     /*
160      * (non-Javadoc)
161      *
162      * @see
163      * org.onap.policy.apex.service.engine.event.ApexEventConverter#fromApexEvent(org.onap.policy.apex.service.engine.
164      * event. ApexEvent)
165      */
166     @Override
167     public String fromApexEvent(final ApexEvent apexEvent) throws ApexEventException {
168         // Check the Apex event
169         if (apexEvent == null) {
170             LOGGER.warn("event processing failed, Apex event is null");
171             throw new ApexEventException("event processing failed, Apex event is null");
172         }
173
174         // Get the Apex event data
175         final List<XMLApexEventData> xmlDataList = new ArrayList<>();
176
177         try {
178             for (final Entry<String, Object> apexDataEntry : apexEvent.entrySet()) {
179                 // Add an XML event data item
180                 if (apexDataEntry.getValue() != null) {
181                     xmlDataList.add(new XMLApexEventData(apexDataEntry.getKey(), apexDataEntry.getValue().toString()));
182                 } else {
183                     xmlDataList.add(new XMLApexEventData(apexDataEntry.getKey(), ""));
184                 }
185             }
186         } catch (final Exception e) {
187             LOGGER.warn("Unable to transfer Apex event data to XML\n" + apexEvent, e);
188             throw new ApexEventException("Unable to transfer Apex event data to XML\n" + apexEvent, e);
189         }
190
191         // Create the XML event
192         final XMLApexEvent xmlApexEvent = new XMLApexEvent(apexEvent.getName(), apexEvent.getVersion(),
193                 apexEvent.getNameSpace(), apexEvent.getSource(), apexEvent.getTarget(), xmlDataList);
194
195         // Write the event into a DOM document
196         try {
197             // Marshal the event into XML
198             final StringWriter writer = new StringWriter();
199             marshaller.marshal(objectFactory.createXmlApexEvent(xmlApexEvent), writer);
200
201             // Return the event as XML in a string
202             return writer.toString();
203         } catch (final JAXBException e) {
204             LOGGER.warn("Unable to unmarshal Apex event to XML\n" + apexEvent, e);
205             throw new ApexEventException("Unable to unmarshal Apex event to XML\n" + apexEvent, e);
206         }
207     }
208 }