com.sun.xml.ws.encoding.XmlDataContentHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rt Show documentation
Show all versions of rt Show documentation
JAX-WS Reference Implementation Runtime
The newest version!
/*
* Copyright (c) 1997, 2022 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Distribution License v. 1.0, which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
package com.sun.xml.ws.encoding;
import com.sun.xml.ws.util.xml.XmlUtil;
import jakarta.activation.ActivationDataFlavor;
import jakarta.activation.DataContentHandler;
import jakarta.activation.DataSource;
import javax.xml.transform.OutputKeys;
import javax.xml.transform.Source;
import javax.xml.transform.Transformer;
import javax.xml.transform.stream.StreamResult;
import javax.xml.transform.stream.StreamSource;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.io.OutputStreamWriter;
import java.util.Arrays;
/**
* JAF data handler for XML content
*
* @author Jitendra Kotamraju
*/
public class XmlDataContentHandler implements DataContentHandler {
private final ActivationDataFlavor[] flavors;
public XmlDataContentHandler() throws ClassNotFoundException {
flavors = new ActivationDataFlavor[3];
flavors[0] = new ActivationDataFlavor(StreamSource.class, "text/xml", "XML");
flavors[1] = new ActivationDataFlavor(StreamSource.class, "application/xml", "XML");
flavors[2] = new ActivationDataFlavor(String.class, "text/xml", "XML String");
}
@Override
public ActivationDataFlavor[] getTransferDataFlavors() {
return Arrays.copyOf(flavors, flavors.length);
}
@Override
public Object getTransferData(ActivationDataFlavor df, DataSource ds)
throws IOException {
for (ActivationDataFlavor aFlavor : flavors) {
if (aFlavor.equals(df)) {
return getContent(ds);
}
}
return null;
}
/**
* Create an object from the input stream
*/
@Override
public Object getContent(DataSource ds) throws IOException {
String ctStr = ds.getContentType();
String charset = null;
if (ctStr != null) {
ContentType ct = new ContentType(ctStr);
if (!isXml(ct)) {
throw new IOException(
"Cannot convert DataSource with content type \""
+ ctStr + "\" to object in XmlDataContentHandler");
}
charset = ct.getParameter("charset");
}
return (charset != null)
? new StreamSource(new InputStreamReader(ds.getInputStream()), charset)
: new StreamSource(ds.getInputStream());
}
/**
* Convert the object to a byte stream
*/
@Override
public void writeTo(Object obj, String mimeType, OutputStream os)
throws IOException {
if (!(obj instanceof DataSource || obj instanceof Source || obj instanceof String)) {
throw new IOException("Invalid Object type = "+obj.getClass()+
". XmlDataContentHandler can only convert DataSource|Source|String to XML.");
}
ContentType ct = new ContentType(mimeType);
if (!isXml(ct)) {
throw new IOException(
"Invalid content type \"" + mimeType + "\" for XmlDataContentHandler");
}
String charset = ct.getParameter("charset");
if (obj instanceof String) {
String s = (String) obj;
if (charset == null) {
charset = "utf-8";
}
OutputStreamWriter osw = new OutputStreamWriter(os, charset);
osw.write(s, 0, s.length());
osw.flush();
return;
}
Source source = (obj instanceof DataSource)
? (Source)getContent((DataSource)obj) : (Source)obj;
try {
Transformer transformer = XmlUtil.newTransformer();
if (charset != null) {
transformer.setOutputProperty(OutputKeys.ENCODING, charset);
}
StreamResult result = new StreamResult(os);
transformer.transform(source, result);
} catch (Exception ex) {
throw new IOException(
"Unable to run the JAXP transformer in XmlDataContentHandler "
+ ex.getMessage());
}
}
private boolean isXml(ContentType ct) {
final String primaryType = ct.getPrimaryType();
return ct.getSubType().equalsIgnoreCase("xml") &&
(primaryType.equalsIgnoreCase("text") || primaryType.equalsIgnoreCase("application"));
}
}