/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 1997-2014 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution License("CDDL") (collectively, the "License"). You * may not use this file except in compliance with the License. You can * obtain a copy of the License at * http://glassfish.java.net/public/CDDL+GPL_1_1.html * or packager/legal/LICENSE.txt. See the License for the specific * language governing permissions and limitations under the License. * * When distributing the software, include this License Header Notice in each * file and include the License file at packager/legal/LICENSE.txt. * * GPL Classpath Exception: * Oracle designates this particular file as subject to the "Classpath" * exception as provided by Oracle in the GPL Version 2 section of the License * file that accompanied this code. * * Modifications: * If applicable, add the following below the License Header, with the fields * enclosed by brackets [] replaced by your own identifying information: * "Portions Copyright [year] [name of copyright owner]" * * Contributor(s): * If you wish your version of this file to be governed by only the CDDL or * only the GPL Version 2, indicate your decision by adding "[Contributor] * elects to include this software in this distribution under the [CDDL or GPL * Version 2] license." If you don't indicate a single choice of license, a * recipient has the option to distribute your version of this file under * either the CDDL, the GPL Version 2 or to extend the choice of license to * its licensees as provided above. However, if you add GPL Version 2 code * and therefore, elected the GPL Version 2 license, then the option applies * only if the new code is made subject to such option by the copyright * holder. */ package com.sun.xml.ws.api.streaming; import com.sun.istack.NotNull; import com.sun.istack.Nullable; import com.sun.xml.ws.encoding.HasEncoding; import com.sun.xml.ws.encoding.SOAPBindingCodec; import com.sun.xml.ws.streaming.XMLReaderException; import com.sun.xml.ws.util.xml.XMLStreamWriterFilter; import javax.xml.stream.XMLOutputFactory; import javax.xml.stream.XMLStreamException; import javax.xml.stream.XMLStreamReader; import javax.xml.stream.XMLStreamWriter; import javax.xml.transform.stream.StreamResult; import javax.xml.ws.WebServiceException; import java.io.OutputStream; import java.io.StringWriter; import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; import java.security.AccessController; import java.security.PrivilegedAction; import java.util.logging.Level; import java.util.logging.Logger; /** * Factory for {@link XMLStreamWriter}. * * <p> * This wraps {@link XMLOutputFactory} and allows us to reuse {@link XMLStreamWriter} instances * when appropriate. * * @author Kohsuke Kawaguchi */ @SuppressWarnings("StaticNonFinalUsedInInitialization") public abstract class XMLStreamWriterFactory { private static final Logger LOGGER = Logger.getLogger(XMLStreamWriterFactory.class.getName()); /** * Singleton instance. */ private static volatile ContextClassloaderLocal<XMLStreamWriterFactory> writerFactory = new ContextClassloaderLocal<XMLStreamWriterFactory>() { @Override protected XMLStreamWriterFactory initialValue() { XMLOutputFactory xof = null; if (Boolean.getBoolean(XMLStreamWriterFactory.class.getName()+".woodstox")) { try { xof = (XMLOutputFactory)Class.forName("com.ctc.wstx.stax.WstxOutputFactory").newInstance(); } catch (Exception e) { // Ignore and fallback to default XMLOutputFactory } } if (xof == null) { xof = XMLOutputFactory.newInstance(); } XMLStreamWriterFactory f=null; // this system property can be used to disable the pooling altogether, // in case someone hits an issue with pooling in the production system. if (!Boolean.getBoolean(XMLStreamWriterFactory.class.getName()+".noPool")) { try { Class<?> clazz = xof.createXMLStreamWriter(new StringWriter()).getClass(); if (clazz.getName().startsWith("com.sun.xml.stream.")) { f = new Zephyr(xof,clazz); } } catch (XMLStreamException ex) { Logger.getLogger(XMLStreamWriterFactory.class.getName()).log(Level.INFO, null, ex); } } if(f==null) { // is this Woodstox? if(xof.getClass().getName().equals("com.ctc.wstx.stax.WstxOutputFactory")) f = new NoLock(xof); } if (f == null) f = new Default(xof); if (LOGGER.isLoggable(Level.FINE)) { LOGGER.log(Level.FINE, "XMLStreamWriterFactory instance is = {0}", f); } return f; } }; /** * See {@link #create(OutputStream)} for the contract. * This method may be invoked concurrently. */ public abstract XMLStreamWriter doCreate(OutputStream out); /** * See {@link #create(OutputStream,String)} for the contract. * This method may be invoked concurrently. */ public abstract XMLStreamWriter doCreate(OutputStream out, String encoding); /** * See {@link #recycle(XMLStreamWriter)} for the contract. * This method may be invoked concurrently. */ public abstract void doRecycle(XMLStreamWriter r); /** * Should be invoked when the code finished using an {@link XMLStreamWriter}. * * <p> * If the recycled instance implements {@link RecycleAware}, * {@link RecycleAware#onRecycled()} will be invoked to let the instance * know that it's being recycled. * * <p> * It is not a hard requirement to call this method on every {@link XMLStreamReader} * instance. Not doing so just reduces the performance by throwing away * possibly reusable instances. So the caller should always consider the effort * it takes to recycle vs the possible performance gain by doing so. * * <p> * This method may be invked by multiple threads concurrently. * * @param r * The {@link XMLStreamReader} instance that the caller finished using. * This could be any {@link XMLStreamReader} implementation, not just * the ones that were created from this factory. So the implementation * of this class needs to be aware of that. */ public static void recycle(XMLStreamWriter r) { get().doRecycle(r); } /** * Interface that can be implemented by {@link XMLStreamWriter} to * be notified when it's recycled. * * <p> * This provides a filtering {@link XMLStreamWriter} an opportunity to * recycle its inner {@link XMLStreamWriter}. */ public interface RecycleAware { void onRecycled(); } /** * Gets the singleton instance. */ public static @NotNull XMLStreamWriterFactory get() { return writerFactory.get(); } /** * Overrides the singleton {@link XMLStreamWriterFactory} instance that * the JAX-WS RI uses. * * @param f * must not be null. */ @SuppressWarnings({"null", "ConstantConditions"}) public static void set(@NotNull XMLStreamWriterFactory f) { if(f==null) throw new IllegalArgumentException(); writerFactory.set(f); } /** * Short-cut for {@link #create(OutputStream, String)} with UTF-8. */ public static XMLStreamWriter create(OutputStream out) { return get().doCreate(out); } public static XMLStreamWriter create(OutputStream out, String encoding) { return get().doCreate(out, encoding); } /** * @deprecated * Use {@link #create(OutputStream)} */ public static XMLStreamWriter createXMLStreamWriter(OutputStream out) { return create(out); } /** * @deprecated * Use {@link #create(OutputStream, String)} */ public static XMLStreamWriter createXMLStreamWriter(OutputStream out, String encoding) { return create(out, encoding); } /** * @deprecated * Use {@link #create(OutputStream, String)}. The boolean flag was unused anyway. */ public static XMLStreamWriter createXMLStreamWriter(OutputStream out, String encoding, boolean declare) { return create(out,encoding); } /** * Default {@link XMLStreamWriterFactory} implementation * that can work with any {@link XMLOutputFactory}. * * <p> * {@link XMLOutputFactory} is not required to be thread-safe, so the * create method on this implementation is synchronized. */ public static final class Default extends XMLStreamWriterFactory { private final XMLOutputFactory xof; public Default(XMLOutputFactory xof) { this.xof = xof; } @Override public XMLStreamWriter doCreate(OutputStream out) { return doCreate(out,"UTF-8"); } @Override public synchronized XMLStreamWriter doCreate(OutputStream out, String encoding) { try { XMLStreamWriter writer = xof.createXMLStreamWriter(out,encoding); return new HasEncodingWriter(writer, encoding); } catch (XMLStreamException e) { throw new XMLReaderException("stax.cantCreate",e); } } @Override public void doRecycle(XMLStreamWriter r) { // no recycling } } /** * {@link XMLStreamWriterFactory} implementation for Sun's StaX implementation. * * <p> * This implementation supports instance reuse. */ public static final class Zephyr extends XMLStreamWriterFactory { private final XMLOutputFactory xof; private final ThreadLocal<XMLStreamWriter> pool = new ThreadLocal<XMLStreamWriter>(); private final Method resetMethod; private final Method setOutputMethod; private final Class zephyrClass; public static XMLStreamWriterFactory newInstance(XMLOutputFactory xof) { try { Class<?> clazz = xof.createXMLStreamWriter(new StringWriter()).getClass(); if(!clazz.getName().startsWith("com.sun.xml.stream.")) return null; // nope return new Zephyr(xof,clazz); } catch (XMLStreamException e) { return null; // impossible } } private Zephyr(XMLOutputFactory xof, Class clazz) { this.xof = xof; zephyrClass = clazz; setOutputMethod = getMethod(clazz, "setOutput", StreamResult.class, String.class); resetMethod = getMethod(clazz, "reset"); } private static Method getMethod(final Class<?> c, final String methodname, final Class<?>... params) { return AccessController.doPrivileged( new PrivilegedAction<Method>() { @Override public Method run() { try { return c.getMethod(methodname, params); } catch (NoSuchMethodException e) { // impossible throw new NoSuchMethodError(e.getMessage()); } } } ); } /** * Fetchs an instance from the pool if available, otherwise null. */ private @Nullable XMLStreamWriter fetch() { XMLStreamWriter sr = pool.get(); if(sr==null) return null; pool.set(null); return sr; } @Override public XMLStreamWriter doCreate(OutputStream out) { return doCreate(out,"UTF-8"); } @Override public XMLStreamWriter doCreate(OutputStream out, String encoding) { XMLStreamWriter xsw = fetch(); if(xsw!=null) { // try to reuse try { resetMethod.invoke(xsw); setOutputMethod.invoke(xsw,new StreamResult(out),encoding); } catch (IllegalAccessException e) { throw new XMLReaderException("stax.cantCreate",e); } catch (InvocationTargetException e) { throw new XMLReaderException("stax.cantCreate",e); } } else { // create a new instance try { xsw = xof.createXMLStreamWriter(out,encoding); } catch (XMLStreamException e) { throw new XMLReaderException("stax.cantCreate",e); } } return new HasEncodingWriter(xsw, encoding); } @Override public void doRecycle(XMLStreamWriter r) { if (r instanceof HasEncodingWriter) { r = ((HasEncodingWriter)r).getWriter(); } if(zephyrClass.isInstance(r)) { // this flushes the underlying stream, so it might cause chunking issue try { r.close(); } catch (XMLStreamException e) { throw new WebServiceException(e); } pool.set(r); } if(r instanceof RecycleAware) ((RecycleAware)r).onRecycled(); } } /** * * For {@link javax.xml.stream.XMLOutputFactory} is thread safe. */ public static final class NoLock extends XMLStreamWriterFactory { private final XMLOutputFactory xof; public NoLock(XMLOutputFactory xof) { this.xof = xof; } @Override public XMLStreamWriter doCreate(OutputStream out) { return doCreate(out, SOAPBindingCodec.UTF8_ENCODING); } @Override public XMLStreamWriter doCreate(OutputStream out, String encoding) { try { XMLStreamWriter writer = xof.createXMLStreamWriter(out,encoding); return new HasEncodingWriter(writer, encoding); } catch (XMLStreamException e) { throw new XMLReaderException("stax.cantCreate",e); } } @Override public void doRecycle(XMLStreamWriter r) { // no recycling } } private static class HasEncodingWriter extends XMLStreamWriterFilter implements HasEncoding { private final String encoding; HasEncodingWriter(XMLStreamWriter writer, String encoding) { super(writer); this.encoding = encoding; } @Override public String getEncoding() { return encoding; } XMLStreamWriter getWriter() { return writer; } } }