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
9 * http://www.apache.org/licenses/LICENSE-2.0
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.
17 * SPDX-License-Identifier: Apache-2.0
18 * ============LICENSE_END=========================================================
21 package org.onap.policy.apex.plugins.event.protocol.xml;
23 import java.io.ByteArrayInputStream;
24 import java.io.StringWriter;
26 import java.util.ArrayList;
27 import java.util.List;
28 import java.util.Map.Entry;
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;
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;
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.
57 * @author Liam Fallon (liam.fallon@ericsson.com)
59 public final class Apex2XmlEventConverter implements ApexEventProtocolConverter {
60 private static final XLogger LOGGER = XLoggerFactory.getXLogger(Apex2XmlEventConverter.class);
62 private static final String MODEL_SCHEMA_NAME = "xml/apex-event.xsd";
64 // XML Unmarshaller and marshaller and object factory for events
65 private Unmarshaller unmarshaller;
66 private Marshaller marshaller;
67 private ObjectFactory objectFactory = new ObjectFactory();
70 * Constructor to create the Apex to XML converter.
72 * @throws ApexEventException the apex event exception
74 public Apex2XmlEventConverter() throws ApexEventException {
76 final URL schemaUrl = ResourceUtils.getUrlResource(MODEL_SCHEMA_NAME);
77 final Schema apexEventSchema =
78 SchemaFactory.newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI).newSchema(schemaUrl);
80 final JAXBContext jaxbContext = JAXBContext.newInstance(XMLApexEvent.class);
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);
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);
100 * @see org.onap.policy.apex.service.engine.event.ApexEventProtocolConverter#init(org.onap.policy.apex.service.
101 * parameters. eventprotocol.EventProtocolParameters)
104 public void init(final EventProtocolParameters parameters) {
105 // No initialization necessary on this class
111 * @see org.onap.policy.apex.service.engine.event.ApexEventConverter#toApexEvent(java.lang.String, java.lang.Object)
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");
121 // Cast the event to a string, if our conversion is correctly configured, this cast should always work
122 String xmlEventString = null;
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);
132 XMLApexEvent xmlApexEvent = null;
134 // Use JAXB to read and verify the event from the XML string
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);
144 // Create the Apex event
145 final ApexEvent apexEvent = new ApexEvent(xmlApexEvent.getName(), xmlApexEvent.getVersion(),
146 xmlApexEvent.getNameSpace(), xmlApexEvent.getSource(), xmlApexEvent.getTarget());
148 // Set the data on the apex event
149 for (final XMLApexEventData xmlData : xmlApexEvent.getData()) {
150 apexEvent.put(xmlData.getKey(), xmlData.getValue());
153 // Return the event in a single element
154 final ArrayList<ApexEvent> eventList = new ArrayList<>();
155 eventList.add(apexEvent);
163 * org.onap.policy.apex.service.engine.event.ApexEventConverter#fromApexEvent(org.onap.policy.apex.service.engine.
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");
174 // Get the Apex event data
175 final List<XMLApexEventData> xmlDataList = new ArrayList<>();
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()));
183 xmlDataList.add(new XMLApexEventData(apexDataEntry.getKey(), ""));
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);
191 // Create the XML event
192 final XMLApexEvent xmlApexEvent = new XMLApexEvent(apexEvent.getName(), apexEvent.getVersion(),
193 apexEvent.getNameSpace(), apexEvent.getSource(), apexEvent.getTarget(), xmlDataList);
195 // Write the event into a DOM document
197 // Marshal the event into XML
198 final StringWriter writer = new StringWriter();
199 marshaller.marshal(objectFactory.createXmlApexEvent(xmlApexEvent), writer);
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);