Merge "Bug 1293 - Switch packaging of config-util to bundle"
[controller.git] / opendaylight / md-sal / sal-rest-connector / src / main / java / org / opendaylight / controller / sal / rest / impl / XmlToCompositeNodeProvider.java
1 /*
2  * Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.controller.sal.rest.impl;
9
10 import java.io.IOException;
11 import java.io.InputStream;
12 import java.lang.annotation.Annotation;
13 import java.lang.reflect.Type;
14 import javax.ws.rs.Consumes;
15 import javax.ws.rs.WebApplicationException;
16 import javax.ws.rs.core.MediaType;
17 import javax.ws.rs.core.MultivaluedMap;
18 import javax.ws.rs.ext.MessageBodyReader;
19 import javax.ws.rs.ext.Provider;
20 import javax.xml.stream.XMLStreamException;
21 import org.opendaylight.controller.sal.rest.api.Draft02;
22 import org.opendaylight.controller.sal.rest.api.RestconfService;
23 import org.opendaylight.controller.sal.restconf.impl.RestconfDocumentedException;
24 import org.opendaylight.controller.sal.restconf.impl.RestconfError.ErrorTag;
25 import org.opendaylight.controller.sal.restconf.impl.RestconfError.ErrorType;
26 import org.opendaylight.yangtools.yang.data.api.CompositeNode;
27 import org.slf4j.Logger;
28 import org.slf4j.LoggerFactory;
29
30 @Provider
31 @Consumes({ Draft02.MediaTypes.DATA + RestconfService.XML, Draft02.MediaTypes.OPERATION + RestconfService.XML,
32         MediaType.APPLICATION_XML, MediaType.TEXT_XML })
33 public enum XmlToCompositeNodeProvider implements MessageBodyReader<CompositeNode> {
34     INSTANCE;
35
36     private final static Logger LOG = LoggerFactory.getLogger(XmlToCompositeNodeProvider.class);
37
38     @Override
39     public boolean isReadable(Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType) {
40         return true;
41     }
42
43     @Override
44     public CompositeNode readFrom(Class<CompositeNode> type, Type genericType, Annotation[] annotations,
45             MediaType mediaType, MultivaluedMap<String, String> httpHeaders, InputStream entityStream)
46             throws IOException, WebApplicationException {
47         XmlToCompositeNodeReader xmlReader = new XmlToCompositeNodeReader();
48         try {
49             return xmlReader.read(entityStream);
50         } catch (XMLStreamException | UnsupportedFormatException e) {
51             LOG.debug("Error parsing json input", e);
52             throw new RestconfDocumentedException("Error parsing input: " + e.getMessage(), ErrorType.PROTOCOL,
53                     ErrorTag.MALFORMED_MESSAGE);
54         }
55     }
56
57 }