diff -r 000000000000 -r 373ffda63c9a src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/output/IndentingUTF8XmlOutput.java --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/output/IndentingUTF8XmlOutput.java Wed Apr 27 01:27:09 2016 +0800 @@ -0,0 +1,156 @@ +/* + * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved. + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 only, as + * published by the Free Software Foundation. Oracle designates this + * particular file as subject to the "Classpath" exception as provided + * by Oracle in the LICENSE file that accompanied this code. + * + * This code is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * version 2 for more details (a copy is included in the LICENSE file that + * accompanied this code). + * + * You should have received a copy of the GNU General Public License version + * 2 along with this work; if not, write to the Free Software Foundation, + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. + * + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA + * or visit www.oracle.com if you need additional information or have any + * questions. + */ + +package com.sun.xml.internal.bind.v2.runtime.output; + +import com.sun.xml.internal.bind.marshaller.CharacterEscapeHandler; +import java.io.IOException; +import java.io.OutputStream; + +import javax.xml.stream.XMLStreamException; + +import com.sun.xml.internal.bind.v2.runtime.Name; + +import org.xml.sax.SAXException; + +/** + * {@link UTF8XmlOutput} with indentation. + * + * TODO: not sure if it's a good idea to move the indenting functionality to another class. + * + * Doesn't have to be final, but it helps the JVM. + * + * @author Kohsuke Kawaguchi + */ +public final class IndentingUTF8XmlOutput extends UTF8XmlOutput { + + /** + * Null if the writer should perform no indentation. + * + * Otherwise this will keep the 8 copies of the string for indentation. + * (so that we can write 8 indentation at once.) + */ + private final Encoded indent8; + + /** + * Length of one indentation. + */ + private final int unitLen; + + private int depth = 0; + + private boolean seenText = false; + + /** + * + * @param indentStr + * set to null for no indentation and optimal performance. + * otherwise the string is used for indentation. + */ + public IndentingUTF8XmlOutput(OutputStream out, String indentStr, Encoded[] localNames, CharacterEscapeHandler escapeHandler) { + super(out, localNames, escapeHandler); + + if(indentStr!=null) { + Encoded e = new Encoded(indentStr); + indent8 = new Encoded(); + indent8.ensureSize(e.len*8); + unitLen = e.len; + for( int i=0; i<8; i++ ) + System.arraycopy(e.buf, 0, indent8.buf, unitLen*i, unitLen); + } else { + this.indent8 = null; + this.unitLen = 0; + } + } + + @Override + public void beginStartTag(int prefix, String localName) throws IOException { + indentStartTag(); + super.beginStartTag(prefix, localName); + } + + @Override + public void beginStartTag(Name name) throws IOException { + indentStartTag(); + super.beginStartTag(name); + } + + private void indentStartTag() throws IOException { + closeStartTag(); + if(!seenText) + printIndent(); + depth++; + seenText = false; + } + + @Override + public void endTag(Name name) throws IOException { + indentEndTag(); + super.endTag(name); + } + + @Override + public void endTag(int prefix, String localName) throws IOException { + indentEndTag(); + super.endTag(prefix, localName); + } + + private void indentEndTag() throws IOException { + depth--; + if(!closeStartTagPending && !seenText) + printIndent(); + seenText = false; + } + + private void printIndent() throws IOException { + write('\n'); + int i = depth%8; + + write( indent8.buf, 0, i*unitLen ); + + i>>=3; // really i /= 8; + + for( ; i>0; i-- ) + indent8.write(this); + } + + @Override + public void text(String value, boolean needSP) throws IOException { + seenText = true; + super.text(value, needSP); + } + + @Override + public void text(Pcdata value, boolean needSP) throws IOException { + seenText = true; + super.text(value, needSP); + } + + @Override + public void endDocument(boolean fragment) throws IOException, SAXException, XMLStreamException { + write('\n'); + super.endDocument(fragment); + } +}