All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
org.apache.cxf.jaxrs.provider.SourceProvider Maven / Gradle / Ivy
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*/
package org.apache.cxf.jaxrs.provider;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.lang.annotation.Annotation;
import java.lang.reflect.Type;
import javax.ws.rs.Consumes;
import javax.ws.rs.InternalServerErrorException;
import javax.ws.rs.Produces;
import javax.ws.rs.WebApplicationException;
import javax.ws.rs.core.Context;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.MultivaluedMap;
import javax.ws.rs.ext.MessageBodyReader;
import javax.ws.rs.ext.MessageBodyWriter;
import javax.ws.rs.ext.Provider;
import javax.xml.stream.XMLStreamException;
import javax.xml.stream.XMLStreamReader;
import javax.xml.stream.XMLStreamWriter;
import javax.xml.transform.Source;
import javax.xml.transform.dom.DOMSource;
import javax.xml.transform.sax.SAXSource;
import javax.xml.transform.stream.StreamSource;
import org.w3c.dom.Document;
import org.apache.cxf.io.CachedOutputStream;
import org.apache.cxf.jaxrs.ext.MessageContext;
import org.apache.cxf.jaxrs.ext.xml.XMLSource;
import org.apache.cxf.jaxrs.utils.HttpUtils;
import org.apache.cxf.staxutils.DepthExceededStaxException;
import org.apache.cxf.staxutils.StaxSource;
import org.apache.cxf.staxutils.StaxUtils;
@Provider
@Produces({"application/xml", "application/*+xml", "text/xml" })
@Consumes({"application/xml", "application/*+xml", "text/xml", "text/html" })
public class SourceProvider extends AbstractConfigurableProvider implements
MessageBodyReader, MessageBodyWriter {
private static final String PREFERRED_FORMAT = "source-preferred-format";
@Context
private MessageContext context;
public boolean isWriteable(Class> type, Type genericType, Annotation[] annotations, MediaType mt) {
return Source.class.isAssignableFrom(type)
|| Document.class.isAssignableFrom(type);
}
public boolean isReadable(Class> type, Type genericType, Annotation[] annotations, MediaType mt) {
return Source.class.isAssignableFrom(type)
|| XMLSource.class.isAssignableFrom(type)
|| Document.class.isAssignableFrom(type);
}
public T readFrom(Class source, Type genericType, Annotation[] annotations, MediaType m,
MultivaluedMap headers, InputStream is)
throws IOException {
Class> theSource = source;
if (theSource == Source.class) {
String s = getPreferredSource();
if ("sax".equalsIgnoreCase(s) || "cxf.stax".equalsIgnoreCase(s)) {
theSource = SAXSource.class;
}
}
if (DOMSource.class.isAssignableFrom(theSource) || Document.class.isAssignableFrom(theSource)) {
boolean docRequired = Document.class.isAssignableFrom(theSource);
XMLStreamReader reader = getReader(is);
try {
Document doc = StaxUtils.read(reader);
return source.cast(docRequired ? doc : new DOMSource(doc));
} catch (DepthExceededStaxException e) {
throw new WebApplicationException(413);
} catch (Exception e) {
IOException ioex = new IOException("Problem creating a Source object");
ioex.setStackTrace(e.getStackTrace());
throw ioex;
} finally {
try {
reader.close();
} catch (XMLStreamException e) {
//ignore
}
}
} else if (SAXSource.class.isAssignableFrom(theSource)
|| StaxSource.class.isAssignableFrom(theSource)) {
return source.cast(new StaxSource(getReader(is)));
} else if (StreamSource.class.isAssignableFrom(theSource)
|| Source.class.isAssignableFrom(theSource)) {
return source.cast(new StreamSource(getRealStream(is)));
} else if (XMLSource.class.isAssignableFrom(theSource)) {
return source.cast(new XMLSource(getRealStream(is)));
}
throw new IOException("Unrecognized source");
}
protected XMLStreamReader getReader(InputStream is) {
XMLStreamReader reader = getReaderFromMessage();
return reader == null ? StaxUtils.createXMLStreamReader(is) : reader;
}
protected InputStream getRealStream(InputStream is) throws IOException {
XMLStreamReader reader = getReaderFromMessage();
return reader == null ? is : getStreamFromReader(reader);
}
private InputStream getStreamFromReader(XMLStreamReader input)
throws IOException {
CachedOutputStream out = new CachedOutputStream();
try {
StaxUtils.copy(input, out);
return out.getInputStream();
} catch (XMLStreamException ex) {
throw new IOException("XMLStreamException:" + ex.getMessage());
} finally {
out.close();
}
}
protected XMLStreamReader getReaderFromMessage() {
MessageContext mc = getContext();
if (mc != null) {
return mc.getContent(XMLStreamReader.class);
} else {
return null;
}
}
public void writeTo(T source, Class> clazz, Type genericType, Annotation[] annotations,
MediaType mt, MultivaluedMap headers, OutputStream os)
throws IOException {
String encoding = HttpUtils.getSetEncoding(mt, headers, "UTF-8");
XMLStreamReader reader =
source instanceof Source ? StaxUtils.createXMLStreamReader((Source)source)
: StaxUtils.createXMLStreamReader((Document)source);
XMLStreamWriter writer = StaxUtils.createXMLStreamWriter(os, encoding);
try {
StaxUtils.copy(reader, writer);
} catch (XMLStreamException e) {
throw new InternalServerErrorException(e);
} finally {
try {
reader.close();
} catch (XMLStreamException e) {
//ignore
}
try {
writer.flush();
writer.close();
} catch (XMLStreamException e) {
//ignore
}
}
}
public long getSize(T source, Class> type, Type genericType, Annotation[] annotations,
MediaType mt) {
return -1;
}
protected String getPreferredSource() {
MessageContext mc = getContext();
String source = null;
if (mc != null) {
source = (String)mc.getContextualProperty(PREFERRED_FORMAT);
}
return source != null ? source : "sax";
}
protected MessageContext getContext() {
return context;
}
}