jaxp/src/com/sun/org/apache/xml/internal/serializer/ToStream.java
author joehw
Mon, 18 Feb 2013 11:33:35 -0800
changeset 16953 a44e04deb948
parent 12902 0a840d92fa30
child 24888 2e493ac78624
permissions -rw-r--r--
6657673: Issues with JAXP Reviewed-by: alanb, lancea, ahgross, mullan
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
6
7f561c08de6b Initial load
duke
parents:
diff changeset
     1
/*
7f561c08de6b Initial load
duke
parents:
diff changeset
     2
 * reserved comment block
7f561c08de6b Initial load
duke
parents:
diff changeset
     3
 * DO NOT REMOVE OR ALTER!
7f561c08de6b Initial load
duke
parents:
diff changeset
     4
 */
7f561c08de6b Initial load
duke
parents:
diff changeset
     5
/*
7f561c08de6b Initial load
duke
parents:
diff changeset
     6
 * Copyright 2001-2004 The Apache Software Foundation.
7f561c08de6b Initial load
duke
parents:
diff changeset
     7
 *
7f561c08de6b Initial load
duke
parents:
diff changeset
     8
 * Licensed under the Apache License, Version 2.0 (the "License");
7f561c08de6b Initial load
duke
parents:
diff changeset
     9
 * you may not use this file except in compliance with the License.
7f561c08de6b Initial load
duke
parents:
diff changeset
    10
 * You may obtain a copy of the License at
7f561c08de6b Initial load
duke
parents:
diff changeset
    11
 *
7f561c08de6b Initial load
duke
parents:
diff changeset
    12
 *     http://www.apache.org/licenses/LICENSE-2.0
7f561c08de6b Initial load
duke
parents:
diff changeset
    13
 *
7f561c08de6b Initial load
duke
parents:
diff changeset
    14
 * Unless required by applicable law or agreed to in writing, software
7f561c08de6b Initial load
duke
parents:
diff changeset
    15
 * distributed under the License is distributed on an "AS IS" BASIS,
7f561c08de6b Initial load
duke
parents:
diff changeset
    16
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
7f561c08de6b Initial load
duke
parents:
diff changeset
    17
 * See the License for the specific language governing permissions and
7f561c08de6b Initial load
duke
parents:
diff changeset
    18
 * limitations under the License.
7f561c08de6b Initial load
duke
parents:
diff changeset
    19
 */
7f561c08de6b Initial load
duke
parents:
diff changeset
    20
/*
7f561c08de6b Initial load
duke
parents:
diff changeset
    21
 * $Id: ToStream.java,v 1.4 2005/11/10 06:43:26 suresh_emailid Exp $
7f561c08de6b Initial load
duke
parents:
diff changeset
    22
 */
7f561c08de6b Initial load
duke
parents:
diff changeset
    23
package com.sun.org.apache.xml.internal.serializer;
7f561c08de6b Initial load
duke
parents:
diff changeset
    24
16953
a44e04deb948 6657673: Issues with JAXP
joehw
parents: 12902
diff changeset
    25
import com.sun.org.apache.xalan.internal.utils.SecuritySupport;
6
7f561c08de6b Initial load
duke
parents:
diff changeset
    26
import java.io.IOException;
7f561c08de6b Initial load
duke
parents:
diff changeset
    27
import java.io.OutputStream;
7f561c08de6b Initial load
duke
parents:
diff changeset
    28
import java.io.UnsupportedEncodingException;
7f561c08de6b Initial load
duke
parents:
diff changeset
    29
import java.io.Writer;
7f561c08de6b Initial load
duke
parents:
diff changeset
    30
import java.util.Properties;
7f561c08de6b Initial load
duke
parents:
diff changeset
    31
import java.util.StringTokenizer;
7f561c08de6b Initial load
duke
parents:
diff changeset
    32
import java.util.Vector;
7f561c08de6b Initial load
duke
parents:
diff changeset
    33
7f561c08de6b Initial load
duke
parents:
diff changeset
    34
import javax.xml.transform.ErrorListener;
7f561c08de6b Initial load
duke
parents:
diff changeset
    35
import javax.xml.transform.OutputKeys;
7f561c08de6b Initial load
duke
parents:
diff changeset
    36
import javax.xml.transform.Transformer;
7f561c08de6b Initial load
duke
parents:
diff changeset
    37
import javax.xml.transform.TransformerException;
7f561c08de6b Initial load
duke
parents:
diff changeset
    38
7f561c08de6b Initial load
duke
parents:
diff changeset
    39
import com.sun.org.apache.xml.internal.serializer.utils.MsgKey;
7f561c08de6b Initial load
duke
parents:
diff changeset
    40
import com.sun.org.apache.xml.internal.serializer.utils.Utils;
7f561c08de6b Initial load
duke
parents:
diff changeset
    41
import com.sun.org.apache.xml.internal.serializer.utils.WrappedRuntimeException;
7f561c08de6b Initial load
duke
parents:
diff changeset
    42
import org.w3c.dom.Node;
7f561c08de6b Initial load
duke
parents:
diff changeset
    43
import org.xml.sax.Attributes;
7f561c08de6b Initial load
duke
parents:
diff changeset
    44
import org.xml.sax.ContentHandler;
7f561c08de6b Initial load
duke
parents:
diff changeset
    45
import org.xml.sax.SAXException;
7f561c08de6b Initial load
duke
parents:
diff changeset
    46
7f561c08de6b Initial load
duke
parents:
diff changeset
    47
//import com.sun.media.sound.IESecurity;
7f561c08de6b Initial load
duke
parents:
diff changeset
    48
7f561c08de6b Initial load
duke
parents:
diff changeset
    49
/**
7f561c08de6b Initial load
duke
parents:
diff changeset
    50
 * This abstract class is a base class for other stream
7f561c08de6b Initial load
duke
parents:
diff changeset
    51
 * serializers (xml, html, text ...) that write output to a stream.
7f561c08de6b Initial load
duke
parents:
diff changeset
    52
 *
7f561c08de6b Initial load
duke
parents:
diff changeset
    53
 * @xsl.usage internal
7f561c08de6b Initial load
duke
parents:
diff changeset
    54
 */
7f561c08de6b Initial load
duke
parents:
diff changeset
    55
abstract public class ToStream extends SerializerBase
7f561c08de6b Initial load
duke
parents:
diff changeset
    56
{
7f561c08de6b Initial load
duke
parents:
diff changeset
    57
7f561c08de6b Initial load
duke
parents:
diff changeset
    58
    private static final String COMMENT_BEGIN = "<!--";
7f561c08de6b Initial load
duke
parents:
diff changeset
    59
    private static final String COMMENT_END = "-->";
7f561c08de6b Initial load
duke
parents:
diff changeset
    60
7f561c08de6b Initial load
duke
parents:
diff changeset
    61
    /** Stack to keep track of disabling output escaping. */
7f561c08de6b Initial load
duke
parents:
diff changeset
    62
    protected BoolStack m_disableOutputEscapingStates = new BoolStack();
7f561c08de6b Initial load
duke
parents:
diff changeset
    63
7f561c08de6b Initial load
duke
parents:
diff changeset
    64
7f561c08de6b Initial load
duke
parents:
diff changeset
    65
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
    66
     * The encoding information associated with this serializer.
7f561c08de6b Initial load
duke
parents:
diff changeset
    67
     * Although initially there is no encoding,
7f561c08de6b Initial load
duke
parents:
diff changeset
    68
     * there is a dummy EncodingInfo object that will say
7f561c08de6b Initial load
duke
parents:
diff changeset
    69
     * that every character is in the encoding. This is useful
7f561c08de6b Initial load
duke
parents:
diff changeset
    70
     * for a serializer that is in temporary output state and has
7f561c08de6b Initial load
duke
parents:
diff changeset
    71
     * no associated encoding. A serializer in final output state
7f561c08de6b Initial load
duke
parents:
diff changeset
    72
     * will have an encoding, and will worry about whether
7f561c08de6b Initial load
duke
parents:
diff changeset
    73
     * single chars or surrogate pairs of high/low chars form
7f561c08de6b Initial load
duke
parents:
diff changeset
    74
     * characters in the output encoding.
7f561c08de6b Initial load
duke
parents:
diff changeset
    75
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
    76
    EncodingInfo m_encodingInfo = new EncodingInfo(null,null);
7f561c08de6b Initial load
duke
parents:
diff changeset
    77
7f561c08de6b Initial load
duke
parents:
diff changeset
    78
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
    79
     * Method reference to the sun.io.CharToByteConverter#canConvert method
7f561c08de6b Initial load
duke
parents:
diff changeset
    80
     * for this encoding.  Invalid if m_charToByteConverter is null.
7f561c08de6b Initial load
duke
parents:
diff changeset
    81
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
    82
    java.lang.reflect.Method m_canConvertMeth;
7f561c08de6b Initial load
duke
parents:
diff changeset
    83
7f561c08de6b Initial load
duke
parents:
diff changeset
    84
7f561c08de6b Initial load
duke
parents:
diff changeset
    85
7f561c08de6b Initial load
duke
parents:
diff changeset
    86
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
    87
     * Boolean that tells if we already tried to get the converter.
7f561c08de6b Initial load
duke
parents:
diff changeset
    88
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
    89
    boolean m_triedToGetConverter = false;
7f561c08de6b Initial load
duke
parents:
diff changeset
    90
7f561c08de6b Initial load
duke
parents:
diff changeset
    91
7f561c08de6b Initial load
duke
parents:
diff changeset
    92
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
    93
     * Opaque reference to the sun.io.CharToByteConverter for this
7f561c08de6b Initial load
duke
parents:
diff changeset
    94
     * encoding.
7f561c08de6b Initial load
duke
parents:
diff changeset
    95
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
    96
    Object m_charToByteConverter = null;
7f561c08de6b Initial load
duke
parents:
diff changeset
    97
7f561c08de6b Initial load
duke
parents:
diff changeset
    98
7f561c08de6b Initial load
duke
parents:
diff changeset
    99
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   100
     * Stack to keep track of whether or not we need to
7f561c08de6b Initial load
duke
parents:
diff changeset
   101
     * preserve whitespace.
7f561c08de6b Initial load
duke
parents:
diff changeset
   102
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
   103
     * Used to push/pop values used for the field m_ispreserve, but
7f561c08de6b Initial load
duke
parents:
diff changeset
   104
     * m_ispreserve is only relevant if m_doIndent is true.
7f561c08de6b Initial load
duke
parents:
diff changeset
   105
     * If m_doIndent is false this field has no impact.
7f561c08de6b Initial load
duke
parents:
diff changeset
   106
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
   107
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   108
    protected BoolStack m_preserves = new BoolStack();
7f561c08de6b Initial load
duke
parents:
diff changeset
   109
7f561c08de6b Initial load
duke
parents:
diff changeset
   110
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   111
     * State flag to tell if preservation of whitespace
7f561c08de6b Initial load
duke
parents:
diff changeset
   112
     * is important.
7f561c08de6b Initial load
duke
parents:
diff changeset
   113
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
   114
     * Used only in shouldIndent() but only if m_doIndent is true.
7f561c08de6b Initial load
duke
parents:
diff changeset
   115
     * If m_doIndent is false this flag has no impact.
7f561c08de6b Initial load
duke
parents:
diff changeset
   116
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
   117
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   118
    protected boolean m_ispreserve = false;
7f561c08de6b Initial load
duke
parents:
diff changeset
   119
7f561c08de6b Initial load
duke
parents:
diff changeset
   120
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   121
     * State flag that tells if the previous node processed
7f561c08de6b Initial load
duke
parents:
diff changeset
   122
     * was text, so we can tell if we should preserve whitespace.
7f561c08de6b Initial load
duke
parents:
diff changeset
   123
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
   124
     * Used in endDocument() and shouldIndent() but
7f561c08de6b Initial load
duke
parents:
diff changeset
   125
     * only if m_doIndent is true.
7f561c08de6b Initial load
duke
parents:
diff changeset
   126
     * If m_doIndent is false this flag has no impact.
7f561c08de6b Initial load
duke
parents:
diff changeset
   127
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   128
    protected boolean m_isprevtext = false;
7f561c08de6b Initial load
duke
parents:
diff changeset
   129
7f561c08de6b Initial load
duke
parents:
diff changeset
   130
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   131
     * The maximum character size before we have to resort
7f561c08de6b Initial load
duke
parents:
diff changeset
   132
     * to escaping.
7f561c08de6b Initial load
duke
parents:
diff changeset
   133
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   134
    protected int m_maxCharacter = Encodings.getLastPrintable();
7f561c08de6b Initial load
duke
parents:
diff changeset
   135
7f561c08de6b Initial load
duke
parents:
diff changeset
   136
7f561c08de6b Initial load
duke
parents:
diff changeset
   137
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   138
     * The system line separator for writing out line breaks.
7f561c08de6b Initial load
duke
parents:
diff changeset
   139
     * The default value is from the system property,
7f561c08de6b Initial load
duke
parents:
diff changeset
   140
     * but this value can be set through the xsl:output
7f561c08de6b Initial load
duke
parents:
diff changeset
   141
     * extension attribute xalan:line-separator.
7f561c08de6b Initial load
duke
parents:
diff changeset
   142
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   143
    protected char[] m_lineSep =
16953
a44e04deb948 6657673: Issues with JAXP
joehw
parents: 12902
diff changeset
   144
        SecuritySupport.getSystemProperty("line.separator").toCharArray();
6
7f561c08de6b Initial load
duke
parents:
diff changeset
   145
7f561c08de6b Initial load
duke
parents:
diff changeset
   146
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   147
     * True if the the system line separator is to be used.
7f561c08de6b Initial load
duke
parents:
diff changeset
   148
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   149
    protected boolean m_lineSepUse = true;
7f561c08de6b Initial load
duke
parents:
diff changeset
   150
7f561c08de6b Initial load
duke
parents:
diff changeset
   151
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   152
     * The length of the line seperator, since the write is done
7f561c08de6b Initial load
duke
parents:
diff changeset
   153
     * one character at a time.
7f561c08de6b Initial load
duke
parents:
diff changeset
   154
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   155
    protected int m_lineSepLen = m_lineSep.length;
7f561c08de6b Initial load
duke
parents:
diff changeset
   156
7f561c08de6b Initial load
duke
parents:
diff changeset
   157
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   158
     * Map that tells which characters should have special treatment, and it
7f561c08de6b Initial load
duke
parents:
diff changeset
   159
     *  provides character to entity name lookup.
7f561c08de6b Initial load
duke
parents:
diff changeset
   160
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   161
    protected CharInfo m_charInfo;
7f561c08de6b Initial load
duke
parents:
diff changeset
   162
7f561c08de6b Initial load
duke
parents:
diff changeset
   163
    /** True if we control the buffer, and we should flush the output on endDocument. */
7f561c08de6b Initial load
duke
parents:
diff changeset
   164
    boolean m_shouldFlush = true;
7f561c08de6b Initial load
duke
parents:
diff changeset
   165
7f561c08de6b Initial load
duke
parents:
diff changeset
   166
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   167
     * Add space before '/>' for XHTML.
7f561c08de6b Initial load
duke
parents:
diff changeset
   168
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   169
    protected boolean m_spaceBeforeClose = false;
7f561c08de6b Initial load
duke
parents:
diff changeset
   170
7f561c08de6b Initial load
duke
parents:
diff changeset
   171
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   172
     * Flag to signal that a newline should be added.
7f561c08de6b Initial load
duke
parents:
diff changeset
   173
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
   174
     * Used only in indent() which is called only if m_doIndent is true.
7f561c08de6b Initial load
duke
parents:
diff changeset
   175
     * If m_doIndent is false this flag has no impact.
7f561c08de6b Initial load
duke
parents:
diff changeset
   176
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   177
    boolean m_startNewLine;
7f561c08de6b Initial load
duke
parents:
diff changeset
   178
7f561c08de6b Initial load
duke
parents:
diff changeset
   179
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   180
     * Tells if we're in an internal document type subset.
7f561c08de6b Initial load
duke
parents:
diff changeset
   181
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   182
    protected boolean m_inDoctype = false;
7f561c08de6b Initial load
duke
parents:
diff changeset
   183
7f561c08de6b Initial load
duke
parents:
diff changeset
   184
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   185
       * Flag to quickly tell if the encoding is UTF8.
7f561c08de6b Initial load
duke
parents:
diff changeset
   186
       */
7f561c08de6b Initial load
duke
parents:
diff changeset
   187
    boolean m_isUTF8 = false;
7f561c08de6b Initial load
duke
parents:
diff changeset
   188
7f561c08de6b Initial load
duke
parents:
diff changeset
   189
    /** The xsl:output properties. */
7f561c08de6b Initial load
duke
parents:
diff changeset
   190
    protected Properties m_format;
7f561c08de6b Initial load
duke
parents:
diff changeset
   191
7f561c08de6b Initial load
duke
parents:
diff changeset
   192
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   193
     * remembers if we are in between the startCDATA() and endCDATA() callbacks
7f561c08de6b Initial load
duke
parents:
diff changeset
   194
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   195
    protected boolean m_cdataStartCalled = false;
7f561c08de6b Initial load
duke
parents:
diff changeset
   196
7f561c08de6b Initial load
duke
parents:
diff changeset
   197
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   198
     * If this flag is true DTD entity references are not left as-is,
7f561c08de6b Initial load
duke
parents:
diff changeset
   199
     * which is exiting older behavior.
7f561c08de6b Initial load
duke
parents:
diff changeset
   200
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   201
    private boolean m_expandDTDEntities = true;
7f561c08de6b Initial load
duke
parents:
diff changeset
   202
7f561c08de6b Initial load
duke
parents:
diff changeset
   203
7f561c08de6b Initial load
duke
parents:
diff changeset
   204
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   205
     * Default constructor
7f561c08de6b Initial load
duke
parents:
diff changeset
   206
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   207
    public ToStream()
7f561c08de6b Initial load
duke
parents:
diff changeset
   208
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   209
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   210
7f561c08de6b Initial load
duke
parents:
diff changeset
   211
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   212
     * This helper method to writes out "]]>" when closing a CDATA section.
7f561c08de6b Initial load
duke
parents:
diff changeset
   213
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
   214
     * @throws org.xml.sax.SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
   215
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   216
    protected void closeCDATA() throws org.xml.sax.SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
   217
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   218
        try
7f561c08de6b Initial load
duke
parents:
diff changeset
   219
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
   220
            m_writer.write(CDATA_DELIMITER_CLOSE);
7f561c08de6b Initial load
duke
parents:
diff changeset
   221
            // write out a CDATA section closing "]]>"
7f561c08de6b Initial load
duke
parents:
diff changeset
   222
            m_cdataTagOpen = false; // Remember that we have done so.
7f561c08de6b Initial load
duke
parents:
diff changeset
   223
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
   224
        catch (IOException e)
7f561c08de6b Initial load
duke
parents:
diff changeset
   225
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
   226
            throw new SAXException(e);
7f561c08de6b Initial load
duke
parents:
diff changeset
   227
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
   228
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   229
7f561c08de6b Initial load
duke
parents:
diff changeset
   230
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   231
     * Serializes the DOM node. Throws an exception only if an I/O
7f561c08de6b Initial load
duke
parents:
diff changeset
   232
     * exception occured while serializing.
7f561c08de6b Initial load
duke
parents:
diff changeset
   233
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
   234
     * @param node Node to serialize.
7f561c08de6b Initial load
duke
parents:
diff changeset
   235
     * @throws IOException An I/O exception occured while serializing
7f561c08de6b Initial load
duke
parents:
diff changeset
   236
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   237
    public void serialize(Node node) throws IOException
7f561c08de6b Initial load
duke
parents:
diff changeset
   238
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   239
7f561c08de6b Initial load
duke
parents:
diff changeset
   240
        try
7f561c08de6b Initial load
duke
parents:
diff changeset
   241
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
   242
            TreeWalker walker =
7f561c08de6b Initial load
duke
parents:
diff changeset
   243
                new TreeWalker(this);
7f561c08de6b Initial load
duke
parents:
diff changeset
   244
7f561c08de6b Initial load
duke
parents:
diff changeset
   245
            walker.traverse(node);
7f561c08de6b Initial load
duke
parents:
diff changeset
   246
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
   247
        catch (org.xml.sax.SAXException se)
7f561c08de6b Initial load
duke
parents:
diff changeset
   248
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
   249
            throw new WrappedRuntimeException(se);
7f561c08de6b Initial load
duke
parents:
diff changeset
   250
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
   251
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   252
7f561c08de6b Initial load
duke
parents:
diff changeset
   253
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   254
     * Return true if the character is the high member of a surrogate pair.
7f561c08de6b Initial load
duke
parents:
diff changeset
   255
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
   256
     * NEEDSDOC @param c
7f561c08de6b Initial load
duke
parents:
diff changeset
   257
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
   258
     * NEEDSDOC ($objectName$) @return
7f561c08de6b Initial load
duke
parents:
diff changeset
   259
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   260
    static final boolean isUTF16Surrogate(char c)
7f561c08de6b Initial load
duke
parents:
diff changeset
   261
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   262
        return (c & 0xFC00) == 0xD800;
7f561c08de6b Initial load
duke
parents:
diff changeset
   263
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   264
7f561c08de6b Initial load
duke
parents:
diff changeset
   265
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   266
     * Taken from XSLTC
7f561c08de6b Initial load
duke
parents:
diff changeset
   267
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   268
    private boolean m_escaping = true;
7f561c08de6b Initial load
duke
parents:
diff changeset
   269
7f561c08de6b Initial load
duke
parents:
diff changeset
   270
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   271
     * Flush the formatter's result stream.
7f561c08de6b Initial load
duke
parents:
diff changeset
   272
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
   273
     * @throws org.xml.sax.SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
   274
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   275
    protected final void flushWriter() throws org.xml.sax.SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
   276
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   277
        final java.io.Writer writer = m_writer;
7f561c08de6b Initial load
duke
parents:
diff changeset
   278
        if (null != writer)
7f561c08de6b Initial load
duke
parents:
diff changeset
   279
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
   280
            try
7f561c08de6b Initial load
duke
parents:
diff changeset
   281
            {
7f561c08de6b Initial load
duke
parents:
diff changeset
   282
                if (writer instanceof WriterToUTF8Buffered)
7f561c08de6b Initial load
duke
parents:
diff changeset
   283
                {
7f561c08de6b Initial load
duke
parents:
diff changeset
   284
                    if (m_shouldFlush)
7f561c08de6b Initial load
duke
parents:
diff changeset
   285
                         ((WriterToUTF8Buffered) writer).flush();
7f561c08de6b Initial load
duke
parents:
diff changeset
   286
                    else
7f561c08de6b Initial load
duke
parents:
diff changeset
   287
                         ((WriterToUTF8Buffered) writer).flushBuffer();
7f561c08de6b Initial load
duke
parents:
diff changeset
   288
                }
7f561c08de6b Initial load
duke
parents:
diff changeset
   289
                if (writer instanceof WriterToASCI)
7f561c08de6b Initial load
duke
parents:
diff changeset
   290
                {
7f561c08de6b Initial load
duke
parents:
diff changeset
   291
                    if (m_shouldFlush)
7f561c08de6b Initial load
duke
parents:
diff changeset
   292
                        writer.flush();
7f561c08de6b Initial load
duke
parents:
diff changeset
   293
                }
7f561c08de6b Initial load
duke
parents:
diff changeset
   294
                else
7f561c08de6b Initial load
duke
parents:
diff changeset
   295
                {
7f561c08de6b Initial load
duke
parents:
diff changeset
   296
                    // Flush always.
7f561c08de6b Initial load
duke
parents:
diff changeset
   297
                    // Not a great thing if the writer was created
7f561c08de6b Initial load
duke
parents:
diff changeset
   298
                    // by this class, but don't have a choice.
7f561c08de6b Initial load
duke
parents:
diff changeset
   299
                    writer.flush();
7f561c08de6b Initial load
duke
parents:
diff changeset
   300
                }
7f561c08de6b Initial load
duke
parents:
diff changeset
   301
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
   302
            catch (IOException ioe)
7f561c08de6b Initial load
duke
parents:
diff changeset
   303
            {
7f561c08de6b Initial load
duke
parents:
diff changeset
   304
                throw new org.xml.sax.SAXException(ioe);
7f561c08de6b Initial load
duke
parents:
diff changeset
   305
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
   306
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
   307
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   308
7f561c08de6b Initial load
duke
parents:
diff changeset
   309
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   310
     * Get the output stream where the events will be serialized to.
7f561c08de6b Initial load
duke
parents:
diff changeset
   311
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
   312
     * @return reference to the result stream, or null of only a writer was
7f561c08de6b Initial load
duke
parents:
diff changeset
   313
     * set.
7f561c08de6b Initial load
duke
parents:
diff changeset
   314
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   315
    public OutputStream getOutputStream()
7f561c08de6b Initial load
duke
parents:
diff changeset
   316
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   317
7f561c08de6b Initial load
duke
parents:
diff changeset
   318
        if (m_writer instanceof WriterToUTF8Buffered)
7f561c08de6b Initial load
duke
parents:
diff changeset
   319
            return ((WriterToUTF8Buffered) m_writer).getOutputStream();
7f561c08de6b Initial load
duke
parents:
diff changeset
   320
        if (m_writer instanceof WriterToASCI)
7f561c08de6b Initial load
duke
parents:
diff changeset
   321
            return ((WriterToASCI) m_writer).getOutputStream();
7f561c08de6b Initial load
duke
parents:
diff changeset
   322
        else
7f561c08de6b Initial load
duke
parents:
diff changeset
   323
            return null;
7f561c08de6b Initial load
duke
parents:
diff changeset
   324
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   325
7f561c08de6b Initial load
duke
parents:
diff changeset
   326
    // Implement DeclHandler
7f561c08de6b Initial load
duke
parents:
diff changeset
   327
7f561c08de6b Initial load
duke
parents:
diff changeset
   328
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   329
     *   Report an element type declaration.
7f561c08de6b Initial load
duke
parents:
diff changeset
   330
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
   331
     *   <p>The content model will consist of the string "EMPTY", the
7f561c08de6b Initial load
duke
parents:
diff changeset
   332
     *   string "ANY", or a parenthesised group, optionally followed
7f561c08de6b Initial load
duke
parents:
diff changeset
   333
     *   by an occurrence indicator.  The model will be normalized so
7f561c08de6b Initial load
duke
parents:
diff changeset
   334
     *   that all whitespace is removed,and will include the enclosing
7f561c08de6b Initial load
duke
parents:
diff changeset
   335
     *   parentheses.</p>
7f561c08de6b Initial load
duke
parents:
diff changeset
   336
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
   337
     *   @param name The element type name.
7f561c08de6b Initial load
duke
parents:
diff changeset
   338
     *   @param model The content model as a normalized string.
7f561c08de6b Initial load
duke
parents:
diff changeset
   339
     *   @exception SAXException The application may raise an exception.
7f561c08de6b Initial load
duke
parents:
diff changeset
   340
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   341
    public void elementDecl(String name, String model) throws SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
   342
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   343
        // Do not inline external DTD
7f561c08de6b Initial load
duke
parents:
diff changeset
   344
        if (m_inExternalDTD)
7f561c08de6b Initial load
duke
parents:
diff changeset
   345
            return;
7f561c08de6b Initial load
duke
parents:
diff changeset
   346
        try
7f561c08de6b Initial load
duke
parents:
diff changeset
   347
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
   348
            final java.io.Writer writer = m_writer;
7f561c08de6b Initial load
duke
parents:
diff changeset
   349
            DTDprolog();
7f561c08de6b Initial load
duke
parents:
diff changeset
   350
7f561c08de6b Initial load
duke
parents:
diff changeset
   351
            writer.write("<!ELEMENT ");
7f561c08de6b Initial load
duke
parents:
diff changeset
   352
            writer.write(name);
7f561c08de6b Initial load
duke
parents:
diff changeset
   353
            writer.write(' ');
7f561c08de6b Initial load
duke
parents:
diff changeset
   354
            writer.write(model);
7f561c08de6b Initial load
duke
parents:
diff changeset
   355
            writer.write('>');
7f561c08de6b Initial load
duke
parents:
diff changeset
   356
            writer.write(m_lineSep, 0, m_lineSepLen);
7f561c08de6b Initial load
duke
parents:
diff changeset
   357
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
   358
        catch (IOException e)
7f561c08de6b Initial load
duke
parents:
diff changeset
   359
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
   360
            throw new SAXException(e);
7f561c08de6b Initial load
duke
parents:
diff changeset
   361
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
   362
7f561c08de6b Initial load
duke
parents:
diff changeset
   363
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   364
7f561c08de6b Initial load
duke
parents:
diff changeset
   365
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   366
     * Report an internal entity declaration.
7f561c08de6b Initial load
duke
parents:
diff changeset
   367
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
   368
     * <p>Only the effective (first) declaration for each entity
7f561c08de6b Initial load
duke
parents:
diff changeset
   369
     * will be reported.</p>
7f561c08de6b Initial load
duke
parents:
diff changeset
   370
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
   371
     * @param name The name of the entity.  If it is a parameter
7f561c08de6b Initial load
duke
parents:
diff changeset
   372
     *        entity, the name will begin with '%'.
7f561c08de6b Initial load
duke
parents:
diff changeset
   373
     * @param value The replacement text of the entity.
7f561c08de6b Initial load
duke
parents:
diff changeset
   374
     * @exception SAXException The application may raise an exception.
7f561c08de6b Initial load
duke
parents:
diff changeset
   375
     * @see #externalEntityDecl
7f561c08de6b Initial load
duke
parents:
diff changeset
   376
     * @see org.xml.sax.DTDHandler#unparsedEntityDecl
7f561c08de6b Initial load
duke
parents:
diff changeset
   377
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   378
    public void internalEntityDecl(String name, String value)
7f561c08de6b Initial load
duke
parents:
diff changeset
   379
        throws SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
   380
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   381
        // Do not inline external DTD
7f561c08de6b Initial load
duke
parents:
diff changeset
   382
        if (m_inExternalDTD)
7f561c08de6b Initial load
duke
parents:
diff changeset
   383
            return;
7f561c08de6b Initial load
duke
parents:
diff changeset
   384
        try
7f561c08de6b Initial load
duke
parents:
diff changeset
   385
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
   386
            DTDprolog();
7f561c08de6b Initial load
duke
parents:
diff changeset
   387
            outputEntityDecl(name, value);
7f561c08de6b Initial load
duke
parents:
diff changeset
   388
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
   389
        catch (IOException e)
7f561c08de6b Initial load
duke
parents:
diff changeset
   390
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
   391
            throw new SAXException(e);
7f561c08de6b Initial load
duke
parents:
diff changeset
   392
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
   393
7f561c08de6b Initial load
duke
parents:
diff changeset
   394
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   395
7f561c08de6b Initial load
duke
parents:
diff changeset
   396
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   397
     * Output the doc type declaration.
7f561c08de6b Initial load
duke
parents:
diff changeset
   398
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
   399
     * @param name non-null reference to document type name.
7f561c08de6b Initial load
duke
parents:
diff changeset
   400
     * NEEDSDOC @param value
7f561c08de6b Initial load
duke
parents:
diff changeset
   401
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
   402
     * @throws org.xml.sax.SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
   403
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   404
    void outputEntityDecl(String name, String value) throws IOException
7f561c08de6b Initial load
duke
parents:
diff changeset
   405
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   406
        final java.io.Writer writer = m_writer;
7f561c08de6b Initial load
duke
parents:
diff changeset
   407
        writer.write("<!ENTITY ");
7f561c08de6b Initial load
duke
parents:
diff changeset
   408
        writer.write(name);
7f561c08de6b Initial load
duke
parents:
diff changeset
   409
        writer.write(" \"");
7f561c08de6b Initial load
duke
parents:
diff changeset
   410
        writer.write(value);
7f561c08de6b Initial load
duke
parents:
diff changeset
   411
        writer.write("\">");
7f561c08de6b Initial load
duke
parents:
diff changeset
   412
        writer.write(m_lineSep, 0, m_lineSepLen);
7f561c08de6b Initial load
duke
parents:
diff changeset
   413
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   414
7f561c08de6b Initial load
duke
parents:
diff changeset
   415
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   416
     * Output a system-dependent line break.
7f561c08de6b Initial load
duke
parents:
diff changeset
   417
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
   418
     * @throws org.xml.sax.SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
   419
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   420
    protected final void outputLineSep() throws IOException
7f561c08de6b Initial load
duke
parents:
diff changeset
   421
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   422
7f561c08de6b Initial load
duke
parents:
diff changeset
   423
        m_writer.write(m_lineSep, 0, m_lineSepLen);
7f561c08de6b Initial load
duke
parents:
diff changeset
   424
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   425
7f561c08de6b Initial load
duke
parents:
diff changeset
   426
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   427
     * Specifies an output format for this serializer. It the
7f561c08de6b Initial load
duke
parents:
diff changeset
   428
     * serializer has already been associated with an output format,
7f561c08de6b Initial load
duke
parents:
diff changeset
   429
     * it will switch to the new format. This method should not be
7f561c08de6b Initial load
duke
parents:
diff changeset
   430
     * called while the serializer is in the process of serializing
7f561c08de6b Initial load
duke
parents:
diff changeset
   431
     * a document.
7f561c08de6b Initial load
duke
parents:
diff changeset
   432
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
   433
     * @param format The output format to use
7f561c08de6b Initial load
duke
parents:
diff changeset
   434
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   435
    public void setOutputFormat(Properties format)
7f561c08de6b Initial load
duke
parents:
diff changeset
   436
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   437
7f561c08de6b Initial load
duke
parents:
diff changeset
   438
        boolean shouldFlush = m_shouldFlush;
7f561c08de6b Initial load
duke
parents:
diff changeset
   439
7f561c08de6b Initial load
duke
parents:
diff changeset
   440
        init(m_writer, format, false, false);
7f561c08de6b Initial load
duke
parents:
diff changeset
   441
7f561c08de6b Initial load
duke
parents:
diff changeset
   442
        m_shouldFlush = shouldFlush;
7f561c08de6b Initial load
duke
parents:
diff changeset
   443
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   444
7f561c08de6b Initial load
duke
parents:
diff changeset
   445
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   446
     * Initialize the serializer with the specified writer and output format.
7f561c08de6b Initial load
duke
parents:
diff changeset
   447
     * Must be called before calling any of the serialize methods.
7f561c08de6b Initial load
duke
parents:
diff changeset
   448
     * This method can be called multiple times and the xsl:output properties
7f561c08de6b Initial load
duke
parents:
diff changeset
   449
     * passed in the 'format' parameter are accumulated across calls.
7f561c08de6b Initial load
duke
parents:
diff changeset
   450
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
   451
     * @param writer The writer to use
7f561c08de6b Initial load
duke
parents:
diff changeset
   452
     * @param format The output format
7f561c08de6b Initial load
duke
parents:
diff changeset
   453
     * @param shouldFlush True if the writer should be flushed at EndDocument.
7f561c08de6b Initial load
duke
parents:
diff changeset
   454
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   455
    private synchronized void init(
7f561c08de6b Initial load
duke
parents:
diff changeset
   456
        Writer writer,
7f561c08de6b Initial load
duke
parents:
diff changeset
   457
        Properties format,
7f561c08de6b Initial load
duke
parents:
diff changeset
   458
        boolean defaultProperties,
7f561c08de6b Initial load
duke
parents:
diff changeset
   459
        boolean shouldFlush)
7f561c08de6b Initial load
duke
parents:
diff changeset
   460
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   461
7f561c08de6b Initial load
duke
parents:
diff changeset
   462
        m_shouldFlush = shouldFlush;
7f561c08de6b Initial load
duke
parents:
diff changeset
   463
7f561c08de6b Initial load
duke
parents:
diff changeset
   464
7f561c08de6b Initial load
duke
parents:
diff changeset
   465
        // if we are tracing events we need to trace what
7f561c08de6b Initial load
duke
parents:
diff changeset
   466
        // characters are written to the output writer.
7f561c08de6b Initial load
duke
parents:
diff changeset
   467
        if (m_tracer != null
7f561c08de6b Initial load
duke
parents:
diff changeset
   468
         && !(writer instanceof SerializerTraceWriter)  )
7f561c08de6b Initial load
duke
parents:
diff changeset
   469
            m_writer = new SerializerTraceWriter(writer, m_tracer);
7f561c08de6b Initial load
duke
parents:
diff changeset
   470
        else
7f561c08de6b Initial load
duke
parents:
diff changeset
   471
            m_writer = writer;
7f561c08de6b Initial load
duke
parents:
diff changeset
   472
7f561c08de6b Initial load
duke
parents:
diff changeset
   473
7f561c08de6b Initial load
duke
parents:
diff changeset
   474
        m_format = format;
7f561c08de6b Initial load
duke
parents:
diff changeset
   475
        //        m_cdataSectionNames =
7f561c08de6b Initial load
duke
parents:
diff changeset
   476
        //            OutputProperties.getQNameProperties(
7f561c08de6b Initial load
duke
parents:
diff changeset
   477
        //                OutputKeys.CDATA_SECTION_ELEMENTS,
7f561c08de6b Initial load
duke
parents:
diff changeset
   478
        //                format);
7f561c08de6b Initial load
duke
parents:
diff changeset
   479
        setCdataSectionElements(OutputKeys.CDATA_SECTION_ELEMENTS, format);
7f561c08de6b Initial load
duke
parents:
diff changeset
   480
7f561c08de6b Initial load
duke
parents:
diff changeset
   481
        setIndentAmount(
7f561c08de6b Initial load
duke
parents:
diff changeset
   482
            OutputPropertyUtils.getIntProperty(
7f561c08de6b Initial load
duke
parents:
diff changeset
   483
                OutputPropertiesFactory.S_KEY_INDENT_AMOUNT,
7f561c08de6b Initial load
duke
parents:
diff changeset
   484
                format));
7f561c08de6b Initial load
duke
parents:
diff changeset
   485
        setIndent(
7f561c08de6b Initial load
duke
parents:
diff changeset
   486
            OutputPropertyUtils.getBooleanProperty(OutputKeys.INDENT, format));
7f561c08de6b Initial load
duke
parents:
diff changeset
   487
7f561c08de6b Initial load
duke
parents:
diff changeset
   488
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
   489
            String sep =
7f561c08de6b Initial load
duke
parents:
diff changeset
   490
                    format.getProperty(OutputPropertiesFactory.S_KEY_LINE_SEPARATOR);
7f561c08de6b Initial load
duke
parents:
diff changeset
   491
            if (sep != null) {
7f561c08de6b Initial load
duke
parents:
diff changeset
   492
                m_lineSep = sep.toCharArray();
7f561c08de6b Initial load
duke
parents:
diff changeset
   493
                m_lineSepLen = sep.length();
7f561c08de6b Initial load
duke
parents:
diff changeset
   494
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
   495
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
   496
7f561c08de6b Initial load
duke
parents:
diff changeset
   497
        boolean shouldNotWriteXMLHeader =
7f561c08de6b Initial load
duke
parents:
diff changeset
   498
            OutputPropertyUtils.getBooleanProperty(
7f561c08de6b Initial load
duke
parents:
diff changeset
   499
                OutputKeys.OMIT_XML_DECLARATION,
7f561c08de6b Initial load
duke
parents:
diff changeset
   500
                format);
7f561c08de6b Initial load
duke
parents:
diff changeset
   501
        setOmitXMLDeclaration(shouldNotWriteXMLHeader);
7f561c08de6b Initial load
duke
parents:
diff changeset
   502
        setDoctypeSystem(format.getProperty(OutputKeys.DOCTYPE_SYSTEM));
7f561c08de6b Initial load
duke
parents:
diff changeset
   503
        String doctypePublic = format.getProperty(OutputKeys.DOCTYPE_PUBLIC);
7f561c08de6b Initial load
duke
parents:
diff changeset
   504
        setDoctypePublic(doctypePublic);
7f561c08de6b Initial load
duke
parents:
diff changeset
   505
7f561c08de6b Initial load
duke
parents:
diff changeset
   506
        // if standalone was explicitly specified
7f561c08de6b Initial load
duke
parents:
diff changeset
   507
        if (format.get(OutputKeys.STANDALONE) != null)
7f561c08de6b Initial load
duke
parents:
diff changeset
   508
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
   509
            String val = format.getProperty(OutputKeys.STANDALONE);
7f561c08de6b Initial load
duke
parents:
diff changeset
   510
            if (defaultProperties)
7f561c08de6b Initial load
duke
parents:
diff changeset
   511
                setStandaloneInternal(val);
7f561c08de6b Initial load
duke
parents:
diff changeset
   512
            else
7f561c08de6b Initial load
duke
parents:
diff changeset
   513
                setStandalone(val);
7f561c08de6b Initial load
duke
parents:
diff changeset
   514
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
   515
7f561c08de6b Initial load
duke
parents:
diff changeset
   516
        setMediaType(format.getProperty(OutputKeys.MEDIA_TYPE));
7f561c08de6b Initial load
duke
parents:
diff changeset
   517
7f561c08de6b Initial load
duke
parents:
diff changeset
   518
        if (null != doctypePublic)
7f561c08de6b Initial load
duke
parents:
diff changeset
   519
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
   520
            if (doctypePublic.startsWith("-//W3C//DTD XHTML"))
7f561c08de6b Initial load
duke
parents:
diff changeset
   521
                m_spaceBeforeClose = true;
7f561c08de6b Initial load
duke
parents:
diff changeset
   522
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
   523
7f561c08de6b Initial load
duke
parents:
diff changeset
   524
        /*
7f561c08de6b Initial load
duke
parents:
diff changeset
   525
         * This code is added for XML 1.1 Version output.
7f561c08de6b Initial load
duke
parents:
diff changeset
   526
         */
7f561c08de6b Initial load
duke
parents:
diff changeset
   527
        String version = getVersion();
7f561c08de6b Initial load
duke
parents:
diff changeset
   528
        if (null == version)
7f561c08de6b Initial load
duke
parents:
diff changeset
   529
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
   530
            version = format.getProperty(OutputKeys.VERSION);
7f561c08de6b Initial load
duke
parents:
diff changeset
   531
            setVersion(version);
7f561c08de6b Initial load
duke
parents:
diff changeset
   532
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
   533
7f561c08de6b Initial load
duke
parents:
diff changeset
   534
        // initCharsMap();
7f561c08de6b Initial load
duke
parents:
diff changeset
   535
        String encoding = getEncoding();
7f561c08de6b Initial load
duke
parents:
diff changeset
   536
        if (null == encoding)
7f561c08de6b Initial load
duke
parents:
diff changeset
   537
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
   538
            encoding =
7f561c08de6b Initial load
duke
parents:
diff changeset
   539
                Encodings.getMimeEncoding(
7f561c08de6b Initial load
duke
parents:
diff changeset
   540
                    format.getProperty(OutputKeys.ENCODING));
7f561c08de6b Initial load
duke
parents:
diff changeset
   541
            setEncoding(encoding);
7f561c08de6b Initial load
duke
parents:
diff changeset
   542
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
   543
7f561c08de6b Initial load
duke
parents:
diff changeset
   544
        m_isUTF8 = encoding.equals(Encodings.DEFAULT_MIME_ENCODING);
7f561c08de6b Initial load
duke
parents:
diff changeset
   545
7f561c08de6b Initial load
duke
parents:
diff changeset
   546
        // Access this only from the Hashtable level... we don't want to
7f561c08de6b Initial load
duke
parents:
diff changeset
   547
        // get default properties.
7f561c08de6b Initial load
duke
parents:
diff changeset
   548
        String entitiesFileName =
7f561c08de6b Initial load
duke
parents:
diff changeset
   549
            (String) format.get(OutputPropertiesFactory.S_KEY_ENTITIES);
7f561c08de6b Initial load
duke
parents:
diff changeset
   550
7f561c08de6b Initial load
duke
parents:
diff changeset
   551
        if (null != entitiesFileName)
7f561c08de6b Initial load
duke
parents:
diff changeset
   552
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
   553
7f561c08de6b Initial load
duke
parents:
diff changeset
   554
            String method =
7f561c08de6b Initial load
duke
parents:
diff changeset
   555
                (String) format.get(OutputKeys.METHOD);
7f561c08de6b Initial load
duke
parents:
diff changeset
   556
7f561c08de6b Initial load
duke
parents:
diff changeset
   557
            m_charInfo = CharInfo.getCharInfo(entitiesFileName, method);
7f561c08de6b Initial load
duke
parents:
diff changeset
   558
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
   559
7f561c08de6b Initial load
duke
parents:
diff changeset
   560
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   561
7f561c08de6b Initial load
duke
parents:
diff changeset
   562
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   563
     * Initialize the serializer with the specified writer and output format.
7f561c08de6b Initial load
duke
parents:
diff changeset
   564
     * Must be called before calling any of the serialize methods.
7f561c08de6b Initial load
duke
parents:
diff changeset
   565
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
   566
     * @param writer The writer to use
7f561c08de6b Initial load
duke
parents:
diff changeset
   567
     * @param format The output format
7f561c08de6b Initial load
duke
parents:
diff changeset
   568
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   569
    private synchronized void init(Writer writer, Properties format)
7f561c08de6b Initial load
duke
parents:
diff changeset
   570
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   571
        init(writer, format, false, false);
7f561c08de6b Initial load
duke
parents:
diff changeset
   572
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   573
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   574
     * Initialize the serializer with the specified output stream and output
7f561c08de6b Initial load
duke
parents:
diff changeset
   575
     * format. Must be called before calling any of the serialize methods.
7f561c08de6b Initial load
duke
parents:
diff changeset
   576
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
   577
     * @param output The output stream to use
7f561c08de6b Initial load
duke
parents:
diff changeset
   578
     * @param format The output format
7f561c08de6b Initial load
duke
parents:
diff changeset
   579
     * @param defaultProperties true if the properties are the default
7f561c08de6b Initial load
duke
parents:
diff changeset
   580
     * properties
7f561c08de6b Initial load
duke
parents:
diff changeset
   581
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
   582
     * @throws UnsupportedEncodingException The encoding specified   in the
7f561c08de6b Initial load
duke
parents:
diff changeset
   583
     * output format is not supported
7f561c08de6b Initial load
duke
parents:
diff changeset
   584
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   585
    protected synchronized void init(
7f561c08de6b Initial load
duke
parents:
diff changeset
   586
        OutputStream output,
7f561c08de6b Initial load
duke
parents:
diff changeset
   587
        Properties format,
7f561c08de6b Initial load
duke
parents:
diff changeset
   588
        boolean defaultProperties)
7f561c08de6b Initial load
duke
parents:
diff changeset
   589
        throws UnsupportedEncodingException
7f561c08de6b Initial load
duke
parents:
diff changeset
   590
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   591
7f561c08de6b Initial load
duke
parents:
diff changeset
   592
        String encoding = getEncoding();
7f561c08de6b Initial load
duke
parents:
diff changeset
   593
        if (encoding == null)
7f561c08de6b Initial load
duke
parents:
diff changeset
   594
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
   595
            // if not already set then get it from the properties
7f561c08de6b Initial load
duke
parents:
diff changeset
   596
            encoding =
7f561c08de6b Initial load
duke
parents:
diff changeset
   597
                Encodings.getMimeEncoding(
7f561c08de6b Initial load
duke
parents:
diff changeset
   598
                    format.getProperty(OutputKeys.ENCODING));
7f561c08de6b Initial load
duke
parents:
diff changeset
   599
            setEncoding(encoding);
7f561c08de6b Initial load
duke
parents:
diff changeset
   600
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
   601
7f561c08de6b Initial load
duke
parents:
diff changeset
   602
        if (encoding.equalsIgnoreCase("UTF-8"))
7f561c08de6b Initial load
duke
parents:
diff changeset
   603
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
   604
            m_isUTF8 = true;
7f561c08de6b Initial load
duke
parents:
diff changeset
   605
            //            if (output instanceof java.io.BufferedOutputStream)
7f561c08de6b Initial load
duke
parents:
diff changeset
   606
            //            {
7f561c08de6b Initial load
duke
parents:
diff changeset
   607
            //                init(new WriterToUTF8(output), format, defaultProperties, true);
7f561c08de6b Initial load
duke
parents:
diff changeset
   608
            //            }
7f561c08de6b Initial load
duke
parents:
diff changeset
   609
            //            else if (output instanceof java.io.FileOutputStream)
7f561c08de6b Initial load
duke
parents:
diff changeset
   610
            //            {
7f561c08de6b Initial load
duke
parents:
diff changeset
   611
            //                init(new WriterToUTF8Buffered(output), format, defaultProperties, true);
7f561c08de6b Initial load
duke
parents:
diff changeset
   612
            //            }
7f561c08de6b Initial load
duke
parents:
diff changeset
   613
            //            else
7f561c08de6b Initial load
duke
parents:
diff changeset
   614
            //            {
7f561c08de6b Initial load
duke
parents:
diff changeset
   615
            //                // Not sure what to do in this case.  I'm going to be conservative
7f561c08de6b Initial load
duke
parents:
diff changeset
   616
            //                // and not buffer.
7f561c08de6b Initial load
duke
parents:
diff changeset
   617
            //                init(new WriterToUTF8(output), format, defaultProperties, true);
7f561c08de6b Initial load
duke
parents:
diff changeset
   618
            //            }
7f561c08de6b Initial load
duke
parents:
diff changeset
   619
7f561c08de6b Initial load
duke
parents:
diff changeset
   620
7f561c08de6b Initial load
duke
parents:
diff changeset
   621
                init(
7f561c08de6b Initial load
duke
parents:
diff changeset
   622
                    new WriterToUTF8Buffered(output),
7f561c08de6b Initial load
duke
parents:
diff changeset
   623
                    format,
7f561c08de6b Initial load
duke
parents:
diff changeset
   624
                    defaultProperties,
7f561c08de6b Initial load
duke
parents:
diff changeset
   625
                    true);
7f561c08de6b Initial load
duke
parents:
diff changeset
   626
7f561c08de6b Initial load
duke
parents:
diff changeset
   627
7f561c08de6b Initial load
duke
parents:
diff changeset
   628
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
   629
        else if (
7f561c08de6b Initial load
duke
parents:
diff changeset
   630
            encoding.equals("WINDOWS-1250")
7f561c08de6b Initial load
duke
parents:
diff changeset
   631
                || encoding.equals("US-ASCII")
7f561c08de6b Initial load
duke
parents:
diff changeset
   632
                || encoding.equals("ASCII"))
7f561c08de6b Initial load
duke
parents:
diff changeset
   633
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
   634
            init(new WriterToASCI(output), format, defaultProperties, true);
7f561c08de6b Initial load
duke
parents:
diff changeset
   635
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
   636
        else
7f561c08de6b Initial load
duke
parents:
diff changeset
   637
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
   638
            Writer osw;
7f561c08de6b Initial load
duke
parents:
diff changeset
   639
7f561c08de6b Initial load
duke
parents:
diff changeset
   640
            try
7f561c08de6b Initial load
duke
parents:
diff changeset
   641
            {
7f561c08de6b Initial load
duke
parents:
diff changeset
   642
                osw = Encodings.getWriter(output, encoding);
7f561c08de6b Initial load
duke
parents:
diff changeset
   643
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
   644
            catch (UnsupportedEncodingException uee)
7f561c08de6b Initial load
duke
parents:
diff changeset
   645
            {
7f561c08de6b Initial load
duke
parents:
diff changeset
   646
                System.out.println(
7f561c08de6b Initial load
duke
parents:
diff changeset
   647
                    "Warning: encoding \""
7f561c08de6b Initial load
duke
parents:
diff changeset
   648
                        + encoding
7f561c08de6b Initial load
duke
parents:
diff changeset
   649
                        + "\" not supported"
7f561c08de6b Initial load
duke
parents:
diff changeset
   650
                        + ", using "
7f561c08de6b Initial load
duke
parents:
diff changeset
   651
                        + Encodings.DEFAULT_MIME_ENCODING);
7f561c08de6b Initial load
duke
parents:
diff changeset
   652
7f561c08de6b Initial load
duke
parents:
diff changeset
   653
                encoding = Encodings.DEFAULT_MIME_ENCODING;
7f561c08de6b Initial load
duke
parents:
diff changeset
   654
                setEncoding(encoding);
7f561c08de6b Initial load
duke
parents:
diff changeset
   655
                osw = Encodings.getWriter(output, encoding);
7f561c08de6b Initial load
duke
parents:
diff changeset
   656
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
   657
7f561c08de6b Initial load
duke
parents:
diff changeset
   658
            init(osw, format, defaultProperties, true);
7f561c08de6b Initial load
duke
parents:
diff changeset
   659
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
   660
7f561c08de6b Initial load
duke
parents:
diff changeset
   661
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   662
7f561c08de6b Initial load
duke
parents:
diff changeset
   663
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   664
     * Returns the output format for this serializer.
7f561c08de6b Initial load
duke
parents:
diff changeset
   665
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
   666
     * @return The output format in use
7f561c08de6b Initial load
duke
parents:
diff changeset
   667
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   668
    public Properties getOutputFormat()
7f561c08de6b Initial load
duke
parents:
diff changeset
   669
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   670
        return m_format;
7f561c08de6b Initial load
duke
parents:
diff changeset
   671
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   672
7f561c08de6b Initial load
duke
parents:
diff changeset
   673
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   674
     * Specifies a writer to which the document should be serialized.
7f561c08de6b Initial load
duke
parents:
diff changeset
   675
     * This method should not be called while the serializer is in
7f561c08de6b Initial load
duke
parents:
diff changeset
   676
     * the process of serializing a document.
7f561c08de6b Initial load
duke
parents:
diff changeset
   677
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
   678
     * @param writer The output writer stream
7f561c08de6b Initial load
duke
parents:
diff changeset
   679
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   680
    public void setWriter(Writer writer)
7f561c08de6b Initial load
duke
parents:
diff changeset
   681
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   682
        // if we are tracing events we need to trace what
7f561c08de6b Initial load
duke
parents:
diff changeset
   683
        // characters are written to the output writer.
7f561c08de6b Initial load
duke
parents:
diff changeset
   684
        if (m_tracer != null
7f561c08de6b Initial load
duke
parents:
diff changeset
   685
         && !(writer instanceof SerializerTraceWriter)  )
7f561c08de6b Initial load
duke
parents:
diff changeset
   686
            m_writer = new SerializerTraceWriter(writer, m_tracer);
7f561c08de6b Initial load
duke
parents:
diff changeset
   687
        else
7f561c08de6b Initial load
duke
parents:
diff changeset
   688
            m_writer = writer;
7f561c08de6b Initial load
duke
parents:
diff changeset
   689
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   690
7f561c08de6b Initial load
duke
parents:
diff changeset
   691
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   692
     * Set if the operating systems end-of-line line separator should
7f561c08de6b Initial load
duke
parents:
diff changeset
   693
     * be used when serializing.  If set false NL character
7f561c08de6b Initial load
duke
parents:
diff changeset
   694
     * (decimal 10) is left alone, otherwise the new-line will be replaced on
7f561c08de6b Initial load
duke
parents:
diff changeset
   695
     * output with the systems line separator. For example on UNIX this is
7f561c08de6b Initial load
duke
parents:
diff changeset
   696
     * NL, while on Windows it is two characters, CR NL, where CR is the
7f561c08de6b Initial load
duke
parents:
diff changeset
   697
     * carriage-return (decimal 13).
7f561c08de6b Initial load
duke
parents:
diff changeset
   698
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
   699
     * @param use_sytem_line_break True if an input NL is replaced with the
7f561c08de6b Initial load
duke
parents:
diff changeset
   700
     * operating systems end-of-line separator.
7f561c08de6b Initial load
duke
parents:
diff changeset
   701
     * @return The previously set value of the serializer.
7f561c08de6b Initial load
duke
parents:
diff changeset
   702
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   703
    public boolean setLineSepUse(boolean use_sytem_line_break)
7f561c08de6b Initial load
duke
parents:
diff changeset
   704
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   705
        boolean oldValue = m_lineSepUse;
7f561c08de6b Initial load
duke
parents:
diff changeset
   706
        m_lineSepUse = use_sytem_line_break;
7f561c08de6b Initial load
duke
parents:
diff changeset
   707
        return oldValue;
7f561c08de6b Initial load
duke
parents:
diff changeset
   708
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   709
7f561c08de6b Initial load
duke
parents:
diff changeset
   710
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   711
     * Specifies an output stream to which the document should be
7f561c08de6b Initial load
duke
parents:
diff changeset
   712
     * serialized. This method should not be called while the
7f561c08de6b Initial load
duke
parents:
diff changeset
   713
     * serializer is in the process of serializing a document.
7f561c08de6b Initial load
duke
parents:
diff changeset
   714
     * <p>
7f561c08de6b Initial load
duke
parents:
diff changeset
   715
     * The encoding specified in the output properties is used, or
7f561c08de6b Initial load
duke
parents:
diff changeset
   716
     * if no encoding was specified, the default for the selected
7f561c08de6b Initial load
duke
parents:
diff changeset
   717
     * output method.
7f561c08de6b Initial load
duke
parents:
diff changeset
   718
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
   719
     * @param output The output stream
7f561c08de6b Initial load
duke
parents:
diff changeset
   720
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   721
    public void setOutputStream(OutputStream output)
7f561c08de6b Initial load
duke
parents:
diff changeset
   722
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   723
7f561c08de6b Initial load
duke
parents:
diff changeset
   724
        try
7f561c08de6b Initial load
duke
parents:
diff changeset
   725
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
   726
            Properties format;
7f561c08de6b Initial load
duke
parents:
diff changeset
   727
            if (null == m_format)
7f561c08de6b Initial load
duke
parents:
diff changeset
   728
                format =
7f561c08de6b Initial load
duke
parents:
diff changeset
   729
                    OutputPropertiesFactory.getDefaultMethodProperties(
7f561c08de6b Initial load
duke
parents:
diff changeset
   730
                        Method.XML);
7f561c08de6b Initial load
duke
parents:
diff changeset
   731
            else
7f561c08de6b Initial load
duke
parents:
diff changeset
   732
                format = m_format;
7f561c08de6b Initial load
duke
parents:
diff changeset
   733
            init(output, format, true);
7f561c08de6b Initial load
duke
parents:
diff changeset
   734
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
   735
        catch (UnsupportedEncodingException uee)
7f561c08de6b Initial load
duke
parents:
diff changeset
   736
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
   737
7f561c08de6b Initial load
duke
parents:
diff changeset
   738
            // Should have been warned in init, I guess...
7f561c08de6b Initial load
duke
parents:
diff changeset
   739
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
   740
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   741
7f561c08de6b Initial load
duke
parents:
diff changeset
   742
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   743
     * @see SerializationHandler#setEscaping(boolean)
7f561c08de6b Initial load
duke
parents:
diff changeset
   744
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   745
    public boolean setEscaping(boolean escape)
7f561c08de6b Initial load
duke
parents:
diff changeset
   746
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   747
        final boolean temp = m_escaping;
7f561c08de6b Initial load
duke
parents:
diff changeset
   748
        m_escaping = escape;
7f561c08de6b Initial load
duke
parents:
diff changeset
   749
        return temp;
7f561c08de6b Initial load
duke
parents:
diff changeset
   750
7f561c08de6b Initial load
duke
parents:
diff changeset
   751
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   752
7f561c08de6b Initial load
duke
parents:
diff changeset
   753
7f561c08de6b Initial load
duke
parents:
diff changeset
   754
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   755
     * Might print a newline character and the indentation amount
7f561c08de6b Initial load
duke
parents:
diff changeset
   756
     * of the given depth.
7f561c08de6b Initial load
duke
parents:
diff changeset
   757
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
   758
     * @param depth the indentation depth (element nesting depth)
7f561c08de6b Initial load
duke
parents:
diff changeset
   759
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
   760
     * @throws org.xml.sax.SAXException if an error occurs during writing.
7f561c08de6b Initial load
duke
parents:
diff changeset
   761
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   762
    protected void indent(int depth) throws IOException
7f561c08de6b Initial load
duke
parents:
diff changeset
   763
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   764
7f561c08de6b Initial load
duke
parents:
diff changeset
   765
        if (m_startNewLine)
7f561c08de6b Initial load
duke
parents:
diff changeset
   766
            outputLineSep();
7f561c08de6b Initial load
duke
parents:
diff changeset
   767
        /* For m_indentAmount > 0 this extra test might be slower
7f561c08de6b Initial load
duke
parents:
diff changeset
   768
         * but Xalan's default value is 0, so this extra test
7f561c08de6b Initial load
duke
parents:
diff changeset
   769
         * will run faster in that situation.
7f561c08de6b Initial load
duke
parents:
diff changeset
   770
         */
7f561c08de6b Initial load
duke
parents:
diff changeset
   771
        if (m_indentAmount > 0)
7f561c08de6b Initial load
duke
parents:
diff changeset
   772
            printSpace(depth * m_indentAmount);
7f561c08de6b Initial load
duke
parents:
diff changeset
   773
7f561c08de6b Initial load
duke
parents:
diff changeset
   774
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   775
7f561c08de6b Initial load
duke
parents:
diff changeset
   776
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   777
     * Indent at the current element nesting depth.
7f561c08de6b Initial load
duke
parents:
diff changeset
   778
     * @throws IOException
7f561c08de6b Initial load
duke
parents:
diff changeset
   779
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   780
    protected void indent() throws IOException
7f561c08de6b Initial load
duke
parents:
diff changeset
   781
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   782
        indent(m_elemContext.m_currentElemDepth);
7f561c08de6b Initial load
duke
parents:
diff changeset
   783
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   784
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   785
     * Prints <var>n</var> spaces.
7f561c08de6b Initial load
duke
parents:
diff changeset
   786
     * @param n         Number of spaces to print.
7f561c08de6b Initial load
duke
parents:
diff changeset
   787
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
   788
     * @throws org.xml.sax.SAXException if an error occurs when writing.
7f561c08de6b Initial load
duke
parents:
diff changeset
   789
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   790
    private void printSpace(int n) throws IOException
7f561c08de6b Initial load
duke
parents:
diff changeset
   791
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   792
        final java.io.Writer writer = m_writer;
7f561c08de6b Initial load
duke
parents:
diff changeset
   793
        for (int i = 0; i < n; i++)
7f561c08de6b Initial load
duke
parents:
diff changeset
   794
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
   795
            writer.write(' ');
7f561c08de6b Initial load
duke
parents:
diff changeset
   796
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
   797
7f561c08de6b Initial load
duke
parents:
diff changeset
   798
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   799
7f561c08de6b Initial load
duke
parents:
diff changeset
   800
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   801
     * Report an attribute type declaration.
7f561c08de6b Initial load
duke
parents:
diff changeset
   802
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
   803
     * <p>Only the effective (first) declaration for an attribute will
7f561c08de6b Initial load
duke
parents:
diff changeset
   804
     * be reported.  The type will be one of the strings "CDATA",
7f561c08de6b Initial load
duke
parents:
diff changeset
   805
     * "ID", "IDREF", "IDREFS", "NMTOKEN", "NMTOKENS", "ENTITY",
7f561c08de6b Initial load
duke
parents:
diff changeset
   806
     * "ENTITIES", or "NOTATION", or a parenthesized token group with
7f561c08de6b Initial load
duke
parents:
diff changeset
   807
     * the separator "|" and all whitespace removed.</p>
7f561c08de6b Initial load
duke
parents:
diff changeset
   808
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
   809
     * @param eName The name of the associated element.
7f561c08de6b Initial load
duke
parents:
diff changeset
   810
     * @param aName The name of the attribute.
7f561c08de6b Initial load
duke
parents:
diff changeset
   811
     * @param type A string representing the attribute type.
7f561c08de6b Initial load
duke
parents:
diff changeset
   812
     * @param valueDefault A string representing the attribute default
7f561c08de6b Initial load
duke
parents:
diff changeset
   813
     *        ("#IMPLIED", "#REQUIRED", or "#FIXED") or null if
7f561c08de6b Initial load
duke
parents:
diff changeset
   814
     *        none of these applies.
7f561c08de6b Initial load
duke
parents:
diff changeset
   815
     * @param value A string representing the attribute's default value,
7f561c08de6b Initial load
duke
parents:
diff changeset
   816
     *        or null if there is none.
7f561c08de6b Initial load
duke
parents:
diff changeset
   817
     * @exception SAXException The application may raise an exception.
7f561c08de6b Initial load
duke
parents:
diff changeset
   818
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   819
    public void attributeDecl(
7f561c08de6b Initial load
duke
parents:
diff changeset
   820
        String eName,
7f561c08de6b Initial load
duke
parents:
diff changeset
   821
        String aName,
7f561c08de6b Initial load
duke
parents:
diff changeset
   822
        String type,
7f561c08de6b Initial load
duke
parents:
diff changeset
   823
        String valueDefault,
7f561c08de6b Initial load
duke
parents:
diff changeset
   824
        String value)
7f561c08de6b Initial load
duke
parents:
diff changeset
   825
        throws SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
   826
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   827
        // Do not inline external DTD
7f561c08de6b Initial load
duke
parents:
diff changeset
   828
        if (m_inExternalDTD)
7f561c08de6b Initial load
duke
parents:
diff changeset
   829
            return;
7f561c08de6b Initial load
duke
parents:
diff changeset
   830
        try
7f561c08de6b Initial load
duke
parents:
diff changeset
   831
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
   832
            final java.io.Writer writer = m_writer;
7f561c08de6b Initial load
duke
parents:
diff changeset
   833
            DTDprolog();
7f561c08de6b Initial load
duke
parents:
diff changeset
   834
7f561c08de6b Initial load
duke
parents:
diff changeset
   835
            writer.write("<!ATTLIST ");
7f561c08de6b Initial load
duke
parents:
diff changeset
   836
            writer.write(eName);
7f561c08de6b Initial load
duke
parents:
diff changeset
   837
            writer.write(' ');
7f561c08de6b Initial load
duke
parents:
diff changeset
   838
7f561c08de6b Initial load
duke
parents:
diff changeset
   839
            writer.write(aName);
7f561c08de6b Initial load
duke
parents:
diff changeset
   840
            writer.write(' ');
7f561c08de6b Initial load
duke
parents:
diff changeset
   841
            writer.write(type);
7f561c08de6b Initial load
duke
parents:
diff changeset
   842
            if (valueDefault != null)
7f561c08de6b Initial load
duke
parents:
diff changeset
   843
            {
7f561c08de6b Initial load
duke
parents:
diff changeset
   844
                writer.write(' ');
7f561c08de6b Initial load
duke
parents:
diff changeset
   845
                writer.write(valueDefault);
7f561c08de6b Initial load
duke
parents:
diff changeset
   846
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
   847
7f561c08de6b Initial load
duke
parents:
diff changeset
   848
            //writer.write(" ");
7f561c08de6b Initial load
duke
parents:
diff changeset
   849
            //writer.write(value);
7f561c08de6b Initial load
duke
parents:
diff changeset
   850
            writer.write('>');
7f561c08de6b Initial load
duke
parents:
diff changeset
   851
            writer.write(m_lineSep, 0, m_lineSepLen);
7f561c08de6b Initial load
duke
parents:
diff changeset
   852
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
   853
        catch (IOException e)
7f561c08de6b Initial load
duke
parents:
diff changeset
   854
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
   855
            throw new SAXException(e);
7f561c08de6b Initial load
duke
parents:
diff changeset
   856
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
   857
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   858
7f561c08de6b Initial load
duke
parents:
diff changeset
   859
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   860
     * Get the character stream where the events will be serialized to.
7f561c08de6b Initial load
duke
parents:
diff changeset
   861
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
   862
     * @return Reference to the result Writer, or null.
7f561c08de6b Initial load
duke
parents:
diff changeset
   863
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   864
    public Writer getWriter()
7f561c08de6b Initial load
duke
parents:
diff changeset
   865
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   866
        return m_writer;
7f561c08de6b Initial load
duke
parents:
diff changeset
   867
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   868
7f561c08de6b Initial load
duke
parents:
diff changeset
   869
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   870
     * Report a parsed external entity declaration.
7f561c08de6b Initial load
duke
parents:
diff changeset
   871
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
   872
     * <p>Only the effective (first) declaration for each entity
7f561c08de6b Initial load
duke
parents:
diff changeset
   873
     * will be reported.</p>
7f561c08de6b Initial load
duke
parents:
diff changeset
   874
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
   875
     * @param name The name of the entity.  If it is a parameter
7f561c08de6b Initial load
duke
parents:
diff changeset
   876
     *        entity, the name will begin with '%'.
7f561c08de6b Initial load
duke
parents:
diff changeset
   877
     * @param publicId The declared public identifier of the entity, or
7f561c08de6b Initial load
duke
parents:
diff changeset
   878
     *        null if none was declared.
7f561c08de6b Initial load
duke
parents:
diff changeset
   879
     * @param systemId The declared system identifier of the entity.
7f561c08de6b Initial load
duke
parents:
diff changeset
   880
     * @exception SAXException The application may raise an exception.
7f561c08de6b Initial load
duke
parents:
diff changeset
   881
     * @see #internalEntityDecl
7f561c08de6b Initial load
duke
parents:
diff changeset
   882
     * @see org.xml.sax.DTDHandler#unparsedEntityDecl
7f561c08de6b Initial load
duke
parents:
diff changeset
   883
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   884
    public void externalEntityDecl(
7f561c08de6b Initial load
duke
parents:
diff changeset
   885
        String name,
7f561c08de6b Initial load
duke
parents:
diff changeset
   886
        String publicId,
7f561c08de6b Initial load
duke
parents:
diff changeset
   887
        String systemId)
7f561c08de6b Initial load
duke
parents:
diff changeset
   888
        throws SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
   889
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   890
        try {
7f561c08de6b Initial load
duke
parents:
diff changeset
   891
            DTDprolog();
7f561c08de6b Initial load
duke
parents:
diff changeset
   892
7f561c08de6b Initial load
duke
parents:
diff changeset
   893
            m_writer.write("<!ENTITY ");
7f561c08de6b Initial load
duke
parents:
diff changeset
   894
            m_writer.write(name);
7f561c08de6b Initial load
duke
parents:
diff changeset
   895
            if (publicId != null) {
7f561c08de6b Initial load
duke
parents:
diff changeset
   896
                m_writer.write(" PUBLIC \"");
7f561c08de6b Initial load
duke
parents:
diff changeset
   897
                m_writer.write(publicId);
7f561c08de6b Initial load
duke
parents:
diff changeset
   898
7f561c08de6b Initial load
duke
parents:
diff changeset
   899
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
   900
            else {
7f561c08de6b Initial load
duke
parents:
diff changeset
   901
                m_writer.write(" SYSTEM \"");
7f561c08de6b Initial load
duke
parents:
diff changeset
   902
                m_writer.write(systemId);
7f561c08de6b Initial load
duke
parents:
diff changeset
   903
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
   904
            m_writer.write("\" >");
7f561c08de6b Initial load
duke
parents:
diff changeset
   905
            m_writer.write(m_lineSep, 0, m_lineSepLen);
7f561c08de6b Initial load
duke
parents:
diff changeset
   906
        } catch (IOException e) {
7f561c08de6b Initial load
duke
parents:
diff changeset
   907
            // TODO Auto-generated catch block
7f561c08de6b Initial load
duke
parents:
diff changeset
   908
            e.printStackTrace();
7f561c08de6b Initial load
duke
parents:
diff changeset
   909
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
   910
7f561c08de6b Initial load
duke
parents:
diff changeset
   911
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   912
7f561c08de6b Initial load
duke
parents:
diff changeset
   913
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   914
     * Tell if this character can be written without escaping.
7f561c08de6b Initial load
duke
parents:
diff changeset
   915
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   916
    protected boolean escapingNotNeeded(char ch)
7f561c08de6b Initial load
duke
parents:
diff changeset
   917
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   918
        final boolean ret;
7f561c08de6b Initial load
duke
parents:
diff changeset
   919
        if (ch < 127)
7f561c08de6b Initial load
duke
parents:
diff changeset
   920
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
   921
            // This is the old/fast code here, but is this
7f561c08de6b Initial load
duke
parents:
diff changeset
   922
            // correct for all encodings?
12902
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
   923
            if (ch >= 0x20 || (0x0A == ch || 0x0D == ch || 0x09 == ch))
6
7f561c08de6b Initial load
duke
parents:
diff changeset
   924
                ret= true;
7f561c08de6b Initial load
duke
parents:
diff changeset
   925
            else
7f561c08de6b Initial load
duke
parents:
diff changeset
   926
                ret = false;
7f561c08de6b Initial load
duke
parents:
diff changeset
   927
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
   928
        else {
7f561c08de6b Initial load
duke
parents:
diff changeset
   929
            ret = m_encodingInfo.isInEncoding(ch);
7f561c08de6b Initial load
duke
parents:
diff changeset
   930
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
   931
        return ret;
7f561c08de6b Initial load
duke
parents:
diff changeset
   932
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
   933
7f561c08de6b Initial load
duke
parents:
diff changeset
   934
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
   935
     * Once a surrogate has been detected, write out the pair of
7f561c08de6b Initial load
duke
parents:
diff changeset
   936
     * characters if it is in the encoding, or if there is no
7f561c08de6b Initial load
duke
parents:
diff changeset
   937
     * encoding, otherwise write out an entity reference
7f561c08de6b Initial load
duke
parents:
diff changeset
   938
     * of the value of the unicode code point of the character
7f561c08de6b Initial load
duke
parents:
diff changeset
   939
     * represented by the high/low surrogate pair.
7f561c08de6b Initial load
duke
parents:
diff changeset
   940
     * <p>
7f561c08de6b Initial load
duke
parents:
diff changeset
   941
     * An exception is thrown if there is no low surrogate in the pair,
7f561c08de6b Initial load
duke
parents:
diff changeset
   942
     * because the array ends unexpectely, or if the low char is there
7f561c08de6b Initial load
duke
parents:
diff changeset
   943
     * but its value is such that it is not a low surrogate.
7f561c08de6b Initial load
duke
parents:
diff changeset
   944
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
   945
     * @param c the first (high) part of the surrogate, which
7f561c08de6b Initial load
duke
parents:
diff changeset
   946
     * must be confirmed before calling this method.
7f561c08de6b Initial load
duke
parents:
diff changeset
   947
     * @param ch Character array.
7f561c08de6b Initial load
duke
parents:
diff changeset
   948
     * @param i position Where the surrogate was detected.
7f561c08de6b Initial load
duke
parents:
diff changeset
   949
     * @param end The end index of the significant characters.
7f561c08de6b Initial load
duke
parents:
diff changeset
   950
     * @return 0 if the pair of characters was written out as-is,
7f561c08de6b Initial load
duke
parents:
diff changeset
   951
     * the unicode code point of the character represented by
7f561c08de6b Initial load
duke
parents:
diff changeset
   952
     * the surrogate pair if an entity reference with that value
7f561c08de6b Initial load
duke
parents:
diff changeset
   953
     * was written out.
7f561c08de6b Initial load
duke
parents:
diff changeset
   954
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
   955
     * @throws IOException
7f561c08de6b Initial load
duke
parents:
diff changeset
   956
     * @throws org.xml.sax.SAXException if invalid UTF-16 surrogate detected.
7f561c08de6b Initial load
duke
parents:
diff changeset
   957
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
   958
    protected int writeUTF16Surrogate(char c, char ch[], int i, int end)
7f561c08de6b Initial load
duke
parents:
diff changeset
   959
        throws IOException
7f561c08de6b Initial load
duke
parents:
diff changeset
   960
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
   961
        int codePoint = 0;
7f561c08de6b Initial load
duke
parents:
diff changeset
   962
        if (i + 1 >= end)
7f561c08de6b Initial load
duke
parents:
diff changeset
   963
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
   964
            throw new IOException(
7f561c08de6b Initial load
duke
parents:
diff changeset
   965
                Utils.messages.createMessage(
7f561c08de6b Initial load
duke
parents:
diff changeset
   966
                    MsgKey.ER_INVALID_UTF16_SURROGATE,
7f561c08de6b Initial load
duke
parents:
diff changeset
   967
                    new Object[] { Integer.toHexString((int) c)}));
7f561c08de6b Initial load
duke
parents:
diff changeset
   968
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
   969
7f561c08de6b Initial load
duke
parents:
diff changeset
   970
        final char high = c;
7f561c08de6b Initial load
duke
parents:
diff changeset
   971
        final char low = ch[i+1];
7f561c08de6b Initial load
duke
parents:
diff changeset
   972
        if (!Encodings.isLowUTF16Surrogate(low)) {
7f561c08de6b Initial load
duke
parents:
diff changeset
   973
            throw new IOException(
7f561c08de6b Initial load
duke
parents:
diff changeset
   974
                Utils.messages.createMessage(
7f561c08de6b Initial load
duke
parents:
diff changeset
   975
                    MsgKey.ER_INVALID_UTF16_SURROGATE,
7f561c08de6b Initial load
duke
parents:
diff changeset
   976
                    new Object[] {
7f561c08de6b Initial load
duke
parents:
diff changeset
   977
                        Integer.toHexString((int) c)
7f561c08de6b Initial load
duke
parents:
diff changeset
   978
                            + " "
7f561c08de6b Initial load
duke
parents:
diff changeset
   979
                            + Integer.toHexString(low)}));
7f561c08de6b Initial load
duke
parents:
diff changeset
   980
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
   981
7f561c08de6b Initial load
duke
parents:
diff changeset
   982
        final java.io.Writer writer = m_writer;
7f561c08de6b Initial load
duke
parents:
diff changeset
   983
7f561c08de6b Initial load
duke
parents:
diff changeset
   984
        // If we make it to here we have a valid high, low surrogate pair
7f561c08de6b Initial load
duke
parents:
diff changeset
   985
        if (m_encodingInfo.isInEncoding(c,low)) {
7f561c08de6b Initial load
duke
parents:
diff changeset
   986
            // If the character formed by the surrogate pair
7f561c08de6b Initial load
duke
parents:
diff changeset
   987
            // is in the encoding, so just write it out
7f561c08de6b Initial load
duke
parents:
diff changeset
   988
            writer.write(ch,i,2);
7f561c08de6b Initial load
duke
parents:
diff changeset
   989
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
   990
        else {
7f561c08de6b Initial load
duke
parents:
diff changeset
   991
            // Don't know what to do with this char, it is
7f561c08de6b Initial load
duke
parents:
diff changeset
   992
            // not in the encoding and not a high char in
7f561c08de6b Initial load
duke
parents:
diff changeset
   993
            // a surrogate pair, so write out as an entity ref
7f561c08de6b Initial load
duke
parents:
diff changeset
   994
            final String encoding = getEncoding();
7f561c08de6b Initial load
duke
parents:
diff changeset
   995
            if (encoding != null) {
7f561c08de6b Initial load
duke
parents:
diff changeset
   996
                /* The output encoding is known,
7f561c08de6b Initial load
duke
parents:
diff changeset
   997
                 * so somthing is wrong.
7f561c08de6b Initial load
duke
parents:
diff changeset
   998
                  */
7f561c08de6b Initial load
duke
parents:
diff changeset
   999
                codePoint = Encodings.toCodePoint(high, low);
7f561c08de6b Initial load
duke
parents:
diff changeset
  1000
                // not in the encoding, so write out a character reference
7f561c08de6b Initial load
duke
parents:
diff changeset
  1001
                writer.write('&');
7f561c08de6b Initial load
duke
parents:
diff changeset
  1002
                writer.write('#');
7f561c08de6b Initial load
duke
parents:
diff changeset
  1003
                writer.write(Integer.toString(codePoint));
7f561c08de6b Initial load
duke
parents:
diff changeset
  1004
                writer.write(';');
7f561c08de6b Initial load
duke
parents:
diff changeset
  1005
            } else {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1006
                /* The output encoding is not known,
7f561c08de6b Initial load
duke
parents:
diff changeset
  1007
                 * so just write it out as-is.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1008
                 */
7f561c08de6b Initial load
duke
parents:
diff changeset
  1009
                writer.write(ch, i, 2);
7f561c08de6b Initial load
duke
parents:
diff changeset
  1010
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1011
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1012
        // non-zero only if character reference was written out.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1013
        return codePoint;
7f561c08de6b Initial load
duke
parents:
diff changeset
  1014
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1015
7f561c08de6b Initial load
duke
parents:
diff changeset
  1016
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  1017
     * Handle one of the default entities, return false if it
7f561c08de6b Initial load
duke
parents:
diff changeset
  1018
     * is not a default entity.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1019
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  1020
     * @param ch character to be escaped.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1021
     * @param i index into character array.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1022
     * @param chars non-null reference to character array.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1023
     * @param len length of chars.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1024
     * @param fromTextNode true if the characters being processed
7f561c08de6b Initial load
duke
parents:
diff changeset
  1025
     * are from a text node, false if they are from an attribute value
7f561c08de6b Initial load
duke
parents:
diff changeset
  1026
     * @param escLF true if the linefeed should be escaped.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1027
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  1028
     * @return i+1 if the character was written, else i.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1029
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  1030
     * @throws java.io.IOException
7f561c08de6b Initial load
duke
parents:
diff changeset
  1031
     */
12902
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1032
    protected int accumDefaultEntity(
6
7f561c08de6b Initial load
duke
parents:
diff changeset
  1033
        java.io.Writer writer,
7f561c08de6b Initial load
duke
parents:
diff changeset
  1034
        char ch,
7f561c08de6b Initial load
duke
parents:
diff changeset
  1035
        int i,
7f561c08de6b Initial load
duke
parents:
diff changeset
  1036
        char[] chars,
7f561c08de6b Initial load
duke
parents:
diff changeset
  1037
        int len,
7f561c08de6b Initial load
duke
parents:
diff changeset
  1038
        boolean fromTextNode,
7f561c08de6b Initial load
duke
parents:
diff changeset
  1039
        boolean escLF)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1040
        throws IOException
7f561c08de6b Initial load
duke
parents:
diff changeset
  1041
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1042
7f561c08de6b Initial load
duke
parents:
diff changeset
  1043
        if (!escLF && CharInfo.S_LINEFEED == ch)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1044
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1045
            writer.write(m_lineSep, 0, m_lineSepLen);
7f561c08de6b Initial load
duke
parents:
diff changeset
  1046
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1047
        else
7f561c08de6b Initial load
duke
parents:
diff changeset
  1048
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1049
            // if this is text node character and a special one of those,
7f561c08de6b Initial load
duke
parents:
diff changeset
  1050
            // or if this is a character from attribute value and a special one of those
12902
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1051
            if ((fromTextNode && m_charInfo.isSpecialTextChar(ch)) || (!fromTextNode && m_charInfo.isSpecialAttrChar(ch)))
6
7f561c08de6b Initial load
duke
parents:
diff changeset
  1052
            {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1053
                String outputStringForChar = m_charInfo.getOutputStringForChar(ch);
7f561c08de6b Initial load
duke
parents:
diff changeset
  1054
7f561c08de6b Initial load
duke
parents:
diff changeset
  1055
                if (null != outputStringForChar)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1056
                {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1057
                    writer.write(outputStringForChar);
7f561c08de6b Initial load
duke
parents:
diff changeset
  1058
                }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1059
                else
7f561c08de6b Initial load
duke
parents:
diff changeset
  1060
                    return i;
7f561c08de6b Initial load
duke
parents:
diff changeset
  1061
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1062
            else
7f561c08de6b Initial load
duke
parents:
diff changeset
  1063
                return i;
7f561c08de6b Initial load
duke
parents:
diff changeset
  1064
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1065
7f561c08de6b Initial load
duke
parents:
diff changeset
  1066
        return i + 1;
7f561c08de6b Initial load
duke
parents:
diff changeset
  1067
7f561c08de6b Initial load
duke
parents:
diff changeset
  1068
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1069
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  1070
     * Normalize the characters, but don't escape.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1071
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  1072
     * @param ch The characters from the XML document.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1073
     * @param start The start position in the array.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1074
     * @param length The number of characters to read from the array.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1075
     * @param isCData true if a CDATA block should be built around the characters.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1076
     * @param useSystemLineSeparator true if the operating systems
7f561c08de6b Initial load
duke
parents:
diff changeset
  1077
     * end-of-line separator should be output rather than a new-line character.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1078
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  1079
     * @throws IOException
7f561c08de6b Initial load
duke
parents:
diff changeset
  1080
     * @throws org.xml.sax.SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
  1081
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
  1082
    void writeNormalizedChars(
7f561c08de6b Initial load
duke
parents:
diff changeset
  1083
        char ch[],
7f561c08de6b Initial load
duke
parents:
diff changeset
  1084
        int start,
7f561c08de6b Initial load
duke
parents:
diff changeset
  1085
        int length,
7f561c08de6b Initial load
duke
parents:
diff changeset
  1086
        boolean isCData,
7f561c08de6b Initial load
duke
parents:
diff changeset
  1087
        boolean useSystemLineSeparator)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1088
        throws IOException, org.xml.sax.SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
  1089
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1090
        final java.io.Writer writer = m_writer;
7f561c08de6b Initial load
duke
parents:
diff changeset
  1091
        int end = start + length;
7f561c08de6b Initial load
duke
parents:
diff changeset
  1092
7f561c08de6b Initial load
duke
parents:
diff changeset
  1093
        for (int i = start; i < end; i++)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1094
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1095
            char c = ch[i];
7f561c08de6b Initial load
duke
parents:
diff changeset
  1096
7f561c08de6b Initial load
duke
parents:
diff changeset
  1097
            if (CharInfo.S_LINEFEED == c && useSystemLineSeparator)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1098
            {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1099
                writer.write(m_lineSep, 0, m_lineSepLen);
7f561c08de6b Initial load
duke
parents:
diff changeset
  1100
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1101
            else if (isCData && (!escapingNotNeeded(c)))
7f561c08de6b Initial load
duke
parents:
diff changeset
  1102
            {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1103
                //                if (i != 0)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1104
                if (m_cdataTagOpen)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1105
                    closeCDATA();
7f561c08de6b Initial load
duke
parents:
diff changeset
  1106
7f561c08de6b Initial load
duke
parents:
diff changeset
  1107
                // This needs to go into a function...
7f561c08de6b Initial load
duke
parents:
diff changeset
  1108
                if (Encodings.isHighUTF16Surrogate(c))
7f561c08de6b Initial load
duke
parents:
diff changeset
  1109
                {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1110
                    writeUTF16Surrogate(c, ch, i, end);
7f561c08de6b Initial load
duke
parents:
diff changeset
  1111
                    i++ ; // process two input characters
7f561c08de6b Initial load
duke
parents:
diff changeset
  1112
                }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1113
                else
7f561c08de6b Initial load
duke
parents:
diff changeset
  1114
                {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1115
                    writer.write("&#");
7f561c08de6b Initial load
duke
parents:
diff changeset
  1116
7f561c08de6b Initial load
duke
parents:
diff changeset
  1117
                    String intStr = Integer.toString((int) c);
7f561c08de6b Initial load
duke
parents:
diff changeset
  1118
7f561c08de6b Initial load
duke
parents:
diff changeset
  1119
                    writer.write(intStr);
7f561c08de6b Initial load
duke
parents:
diff changeset
  1120
                    writer.write(';');
7f561c08de6b Initial load
duke
parents:
diff changeset
  1121
                }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1122
7f561c08de6b Initial load
duke
parents:
diff changeset
  1123
                //                if ((i != 0) && (i < (end - 1)))
7f561c08de6b Initial load
duke
parents:
diff changeset
  1124
                //                if (!m_cdataTagOpen && (i < (end - 1)))
7f561c08de6b Initial load
duke
parents:
diff changeset
  1125
                //                {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1126
                //                    writer.write(CDATA_DELIMITER_OPEN);
7f561c08de6b Initial load
duke
parents:
diff changeset
  1127
                //                    m_cdataTagOpen = true;
7f561c08de6b Initial load
duke
parents:
diff changeset
  1128
                //                }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1129
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1130
            else if (
7f561c08de6b Initial load
duke
parents:
diff changeset
  1131
                isCData
7f561c08de6b Initial load
duke
parents:
diff changeset
  1132
                    && ((i < (end - 2))
7f561c08de6b Initial load
duke
parents:
diff changeset
  1133
                        && (']' == c)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1134
                        && (']' == ch[i + 1])
7f561c08de6b Initial load
duke
parents:
diff changeset
  1135
                        && ('>' == ch[i + 2])))
7f561c08de6b Initial load
duke
parents:
diff changeset
  1136
            {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1137
                writer.write(CDATA_CONTINUE);
7f561c08de6b Initial load
duke
parents:
diff changeset
  1138
7f561c08de6b Initial load
duke
parents:
diff changeset
  1139
                i += 2;
7f561c08de6b Initial load
duke
parents:
diff changeset
  1140
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1141
            else
7f561c08de6b Initial load
duke
parents:
diff changeset
  1142
            {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1143
                if (escapingNotNeeded(c))
7f561c08de6b Initial load
duke
parents:
diff changeset
  1144
                {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1145
                    if (isCData && !m_cdataTagOpen)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1146
                    {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1147
                        writer.write(CDATA_DELIMITER_OPEN);
7f561c08de6b Initial load
duke
parents:
diff changeset
  1148
                        m_cdataTagOpen = true;
7f561c08de6b Initial load
duke
parents:
diff changeset
  1149
                    }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1150
                    writer.write(c);
7f561c08de6b Initial load
duke
parents:
diff changeset
  1151
                }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1152
7f561c08de6b Initial load
duke
parents:
diff changeset
  1153
                // This needs to go into a function...
7f561c08de6b Initial load
duke
parents:
diff changeset
  1154
                else if (Encodings.isHighUTF16Surrogate(c))
7f561c08de6b Initial load
duke
parents:
diff changeset
  1155
                {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1156
                    if (m_cdataTagOpen)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1157
                        closeCDATA();
7f561c08de6b Initial load
duke
parents:
diff changeset
  1158
                    writeUTF16Surrogate(c, ch, i, end);
7f561c08de6b Initial load
duke
parents:
diff changeset
  1159
                    i++; // process two input characters
7f561c08de6b Initial load
duke
parents:
diff changeset
  1160
                }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1161
                else
7f561c08de6b Initial load
duke
parents:
diff changeset
  1162
                {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1163
                    if (m_cdataTagOpen)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1164
                        closeCDATA();
7f561c08de6b Initial load
duke
parents:
diff changeset
  1165
                    writer.write("&#");
7f561c08de6b Initial load
duke
parents:
diff changeset
  1166
7f561c08de6b Initial load
duke
parents:
diff changeset
  1167
                    String intStr = Integer.toString((int) c);
7f561c08de6b Initial load
duke
parents:
diff changeset
  1168
7f561c08de6b Initial load
duke
parents:
diff changeset
  1169
                    writer.write(intStr);
7f561c08de6b Initial load
duke
parents:
diff changeset
  1170
                    writer.write(';');
7f561c08de6b Initial load
duke
parents:
diff changeset
  1171
                }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1172
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1173
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1174
7f561c08de6b Initial load
duke
parents:
diff changeset
  1175
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1176
7f561c08de6b Initial load
duke
parents:
diff changeset
  1177
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  1178
     * Ends an un-escaping section.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1179
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  1180
     * @see #startNonEscaping
7f561c08de6b Initial load
duke
parents:
diff changeset
  1181
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  1182
     * @throws org.xml.sax.SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
  1183
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
  1184
    public void endNonEscaping() throws org.xml.sax.SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
  1185
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1186
        m_disableOutputEscapingStates.pop();
7f561c08de6b Initial load
duke
parents:
diff changeset
  1187
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1188
7f561c08de6b Initial load
duke
parents:
diff changeset
  1189
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  1190
     * Starts an un-escaping section. All characters printed within an un-
7f561c08de6b Initial load
duke
parents:
diff changeset
  1191
     * escaping section are printed as is, without escaping special characters
7f561c08de6b Initial load
duke
parents:
diff changeset
  1192
     * into entity references. Only XML and HTML serializers need to support
7f561c08de6b Initial load
duke
parents:
diff changeset
  1193
     * this method.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1194
     * <p> The contents of the un-escaping section will be delivered through the
7f561c08de6b Initial load
duke
parents:
diff changeset
  1195
     * regular <tt>characters</tt> event.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1196
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  1197
     * @throws org.xml.sax.SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
  1198
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
  1199
    public void startNonEscaping() throws org.xml.sax.SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
  1200
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1201
        m_disableOutputEscapingStates.push(true);
7f561c08de6b Initial load
duke
parents:
diff changeset
  1202
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1203
7f561c08de6b Initial load
duke
parents:
diff changeset
  1204
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  1205
     * Receive notification of cdata.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1206
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  1207
     * <p>The Parser will call this method to report each chunk of
7f561c08de6b Initial load
duke
parents:
diff changeset
  1208
     * character data.  SAX parsers may return all contiguous character
7f561c08de6b Initial load
duke
parents:
diff changeset
  1209
     * data in a single chunk, or they may split it into several
7f561c08de6b Initial load
duke
parents:
diff changeset
  1210
     * chunks; however, all of the characters in any single event
7f561c08de6b Initial load
duke
parents:
diff changeset
  1211
     * must come from the same external entity, so that the Locator
7f561c08de6b Initial load
duke
parents:
diff changeset
  1212
     * provides useful information.</p>
7f561c08de6b Initial load
duke
parents:
diff changeset
  1213
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  1214
     * <p>The application must not attempt to read from the array
7f561c08de6b Initial load
duke
parents:
diff changeset
  1215
     * outside of the specified range.</p>
7f561c08de6b Initial load
duke
parents:
diff changeset
  1216
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  1217
     * <p>Note that some parsers will report whitespace using the
7f561c08de6b Initial load
duke
parents:
diff changeset
  1218
     * ignorableWhitespace() method rather than this one (validating
7f561c08de6b Initial load
duke
parents:
diff changeset
  1219
     * parsers must do so).</p>
7f561c08de6b Initial load
duke
parents:
diff changeset
  1220
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  1221
     * @param ch The characters from the XML document.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1222
     * @param start The start position in the array.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1223
     * @param length The number of characters to read from the array.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1224
     * @throws org.xml.sax.SAXException Any SAX exception, possibly
7f561c08de6b Initial load
duke
parents:
diff changeset
  1225
     *            wrapping another exception.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1226
     * @see #ignorableWhitespace
7f561c08de6b Initial load
duke
parents:
diff changeset
  1227
     * @see org.xml.sax.Locator
7f561c08de6b Initial load
duke
parents:
diff changeset
  1228
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  1229
     * @throws org.xml.sax.SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
  1230
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
  1231
    protected void cdata(char ch[], int start, final int length)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1232
        throws org.xml.sax.SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
  1233
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1234
7f561c08de6b Initial load
duke
parents:
diff changeset
  1235
        try
7f561c08de6b Initial load
duke
parents:
diff changeset
  1236
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1237
            final int old_start = start;
7f561c08de6b Initial load
duke
parents:
diff changeset
  1238
            if (m_elemContext.m_startTagOpen)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1239
            {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1240
                closeStartTag();
7f561c08de6b Initial load
duke
parents:
diff changeset
  1241
                m_elemContext.m_startTagOpen = false;
7f561c08de6b Initial load
duke
parents:
diff changeset
  1242
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1243
            m_ispreserve = true;
7f561c08de6b Initial load
duke
parents:
diff changeset
  1244
7f561c08de6b Initial load
duke
parents:
diff changeset
  1245
            if (shouldIndent())
7f561c08de6b Initial load
duke
parents:
diff changeset
  1246
                indent();
7f561c08de6b Initial load
duke
parents:
diff changeset
  1247
7f561c08de6b Initial load
duke
parents:
diff changeset
  1248
            boolean writeCDataBrackets =
7f561c08de6b Initial load
duke
parents:
diff changeset
  1249
                (((length >= 1) && escapingNotNeeded(ch[start])));
7f561c08de6b Initial load
duke
parents:
diff changeset
  1250
7f561c08de6b Initial load
duke
parents:
diff changeset
  1251
            /* Write out the CDATA opening delimiter only if
7f561c08de6b Initial load
duke
parents:
diff changeset
  1252
             * we are supposed to, and if we are not already in
7f561c08de6b Initial load
duke
parents:
diff changeset
  1253
             * the middle of a CDATA section
7f561c08de6b Initial load
duke
parents:
diff changeset
  1254
             */
7f561c08de6b Initial load
duke
parents:
diff changeset
  1255
            if (writeCDataBrackets && !m_cdataTagOpen)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1256
            {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1257
                m_writer.write(CDATA_DELIMITER_OPEN);
7f561c08de6b Initial load
duke
parents:
diff changeset
  1258
                m_cdataTagOpen = true;
7f561c08de6b Initial load
duke
parents:
diff changeset
  1259
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1260
7f561c08de6b Initial load
duke
parents:
diff changeset
  1261
            // writer.write(ch, start, length);
7f561c08de6b Initial load
duke
parents:
diff changeset
  1262
            if (isEscapingDisabled())
7f561c08de6b Initial load
duke
parents:
diff changeset
  1263
            {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1264
                charactersRaw(ch, start, length);
7f561c08de6b Initial load
duke
parents:
diff changeset
  1265
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1266
            else
7f561c08de6b Initial load
duke
parents:
diff changeset
  1267
                writeNormalizedChars(ch, start, length, true, m_lineSepUse);
7f561c08de6b Initial load
duke
parents:
diff changeset
  1268
7f561c08de6b Initial load
duke
parents:
diff changeset
  1269
            /* used to always write out CDATA closing delimiter here,
7f561c08de6b Initial load
duke
parents:
diff changeset
  1270
             * but now we delay, so that we can merge CDATA sections on output.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1271
             * need to write closing delimiter later
7f561c08de6b Initial load
duke
parents:
diff changeset
  1272
             */
7f561c08de6b Initial load
duke
parents:
diff changeset
  1273
            if (writeCDataBrackets)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1274
            {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1275
                /* if the CDATA section ends with ] don't leave it open
7f561c08de6b Initial load
duke
parents:
diff changeset
  1276
                 * as there is a chance that an adjacent CDATA sections
7f561c08de6b Initial load
duke
parents:
diff changeset
  1277
                 * starts with ]>.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1278
                 * We don't want to merge ]] with > , or ] with ]>
7f561c08de6b Initial load
duke
parents:
diff changeset
  1279
                 */
7f561c08de6b Initial load
duke
parents:
diff changeset
  1280
                if (ch[start + length - 1] == ']')
7f561c08de6b Initial load
duke
parents:
diff changeset
  1281
                    closeCDATA();
7f561c08de6b Initial load
duke
parents:
diff changeset
  1282
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1283
7f561c08de6b Initial load
duke
parents:
diff changeset
  1284
            // time to fire off CDATA event
7f561c08de6b Initial load
duke
parents:
diff changeset
  1285
            if (m_tracer != null)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1286
                super.fireCDATAEvent(ch, old_start, length);
7f561c08de6b Initial load
duke
parents:
diff changeset
  1287
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1288
        catch (IOException ioe)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1289
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1290
            throw new org.xml.sax.SAXException(
7f561c08de6b Initial load
duke
parents:
diff changeset
  1291
                Utils.messages.createMessage(
7f561c08de6b Initial load
duke
parents:
diff changeset
  1292
                    MsgKey.ER_OIERROR,
7f561c08de6b Initial load
duke
parents:
diff changeset
  1293
                    null),
7f561c08de6b Initial load
duke
parents:
diff changeset
  1294
                ioe);
7f561c08de6b Initial load
duke
parents:
diff changeset
  1295
            //"IO error", ioe);
7f561c08de6b Initial load
duke
parents:
diff changeset
  1296
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1297
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1298
7f561c08de6b Initial load
duke
parents:
diff changeset
  1299
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  1300
     * Tell if the character escaping should be disabled for the current state.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1301
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  1302
     * @return true if the character escaping should be disabled.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1303
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
  1304
    private boolean isEscapingDisabled()
7f561c08de6b Initial load
duke
parents:
diff changeset
  1305
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1306
        return m_disableOutputEscapingStates.peekOrFalse();
7f561c08de6b Initial load
duke
parents:
diff changeset
  1307
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1308
7f561c08de6b Initial load
duke
parents:
diff changeset
  1309
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  1310
     * If available, when the disable-output-escaping attribute is used,
7f561c08de6b Initial load
duke
parents:
diff changeset
  1311
     * output raw text without escaping.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1312
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  1313
     * @param ch The characters from the XML document.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1314
     * @param start The start position in the array.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1315
     * @param length The number of characters to read from the array.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1316
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  1317
     * @throws org.xml.sax.SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
  1318
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
  1319
    protected void charactersRaw(char ch[], int start, int length)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1320
        throws org.xml.sax.SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
  1321
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1322
7f561c08de6b Initial load
duke
parents:
diff changeset
  1323
        if (m_inEntityRef)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1324
            return;
7f561c08de6b Initial load
duke
parents:
diff changeset
  1325
        try
7f561c08de6b Initial load
duke
parents:
diff changeset
  1326
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1327
            if (m_elemContext.m_startTagOpen)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1328
            {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1329
                closeStartTag();
7f561c08de6b Initial load
duke
parents:
diff changeset
  1330
                m_elemContext.m_startTagOpen = false;
7f561c08de6b Initial load
duke
parents:
diff changeset
  1331
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1332
7f561c08de6b Initial load
duke
parents:
diff changeset
  1333
            m_ispreserve = true;
7f561c08de6b Initial load
duke
parents:
diff changeset
  1334
7f561c08de6b Initial load
duke
parents:
diff changeset
  1335
            m_writer.write(ch, start, length);
7f561c08de6b Initial load
duke
parents:
diff changeset
  1336
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1337
        catch (IOException e)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1338
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1339
            throw new SAXException(e);
7f561c08de6b Initial load
duke
parents:
diff changeset
  1340
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1341
7f561c08de6b Initial load
duke
parents:
diff changeset
  1342
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1343
7f561c08de6b Initial load
duke
parents:
diff changeset
  1344
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  1345
     * Receive notification of character data.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1346
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  1347
     * <p>The Parser will call this method to report each chunk of
7f561c08de6b Initial load
duke
parents:
diff changeset
  1348
     * character data.  SAX parsers may return all contiguous character
7f561c08de6b Initial load
duke
parents:
diff changeset
  1349
     * data in a single chunk, or they may split it into several
7f561c08de6b Initial load
duke
parents:
diff changeset
  1350
     * chunks; however, all of the characters in any single event
7f561c08de6b Initial load
duke
parents:
diff changeset
  1351
     * must come from the same external entity, so that the Locator
7f561c08de6b Initial load
duke
parents:
diff changeset
  1352
     * provides useful information.</p>
7f561c08de6b Initial load
duke
parents:
diff changeset
  1353
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  1354
     * <p>The application must not attempt to read from the array
7f561c08de6b Initial load
duke
parents:
diff changeset
  1355
     * outside of the specified range.</p>
7f561c08de6b Initial load
duke
parents:
diff changeset
  1356
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  1357
     * <p>Note that some parsers will report whitespace using the
7f561c08de6b Initial load
duke
parents:
diff changeset
  1358
     * ignorableWhitespace() method rather than this one (validating
7f561c08de6b Initial load
duke
parents:
diff changeset
  1359
     * parsers must do so).</p>
7f561c08de6b Initial load
duke
parents:
diff changeset
  1360
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  1361
     * @param chars The characters from the XML document.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1362
     * @param start The start position in the array.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1363
     * @param length The number of characters to read from the array.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1364
     * @throws org.xml.sax.SAXException Any SAX exception, possibly
7f561c08de6b Initial load
duke
parents:
diff changeset
  1365
     *            wrapping another exception.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1366
     * @see #ignorableWhitespace
7f561c08de6b Initial load
duke
parents:
diff changeset
  1367
     * @see org.xml.sax.Locator
7f561c08de6b Initial load
duke
parents:
diff changeset
  1368
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  1369
     * @throws org.xml.sax.SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
  1370
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
  1371
    public void characters(final char chars[], final int start, final int length)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1372
        throws org.xml.sax.SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
  1373
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1374
        // It does not make sense to continue with rest of the method if the number of
7f561c08de6b Initial load
duke
parents:
diff changeset
  1375
        // characters to read from array is 0.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1376
        // Section 7.6.1 of XSLT 1.0 (http://www.w3.org/TR/xslt#value-of) suggest no text node
7f561c08de6b Initial load
duke
parents:
diff changeset
  1377
        // is created if string is empty.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1378
        if (length == 0 || (m_inEntityRef && !m_expandDTDEntities))
7f561c08de6b Initial load
duke
parents:
diff changeset
  1379
            return;
7f561c08de6b Initial load
duke
parents:
diff changeset
  1380
        if (m_elemContext.m_startTagOpen)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1381
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1382
            closeStartTag();
7f561c08de6b Initial load
duke
parents:
diff changeset
  1383
            m_elemContext.m_startTagOpen = false;
7f561c08de6b Initial load
duke
parents:
diff changeset
  1384
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1385
        else if (m_needToCallStartDocument)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1386
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1387
            startDocumentInternal();
7f561c08de6b Initial load
duke
parents:
diff changeset
  1388
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1389
7f561c08de6b Initial load
duke
parents:
diff changeset
  1390
        if (m_cdataStartCalled || m_elemContext.m_isCdataSection)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1391
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1392
            /* either due to startCDATA() being called or due to
7f561c08de6b Initial load
duke
parents:
diff changeset
  1393
             * cdata-section-elements atribute, we need this as cdata
7f561c08de6b Initial load
duke
parents:
diff changeset
  1394
             */
7f561c08de6b Initial load
duke
parents:
diff changeset
  1395
            cdata(chars, start, length);
7f561c08de6b Initial load
duke
parents:
diff changeset
  1396
7f561c08de6b Initial load
duke
parents:
diff changeset
  1397
            return;
7f561c08de6b Initial load
duke
parents:
diff changeset
  1398
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1399
7f561c08de6b Initial load
duke
parents:
diff changeset
  1400
        if (m_cdataTagOpen)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1401
            closeCDATA();
12902
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1402
        // the check with _escaping is a bit of a hack for XLSTC
6
7f561c08de6b Initial load
duke
parents:
diff changeset
  1403
7f561c08de6b Initial load
duke
parents:
diff changeset
  1404
        if (m_disableOutputEscapingStates.peekOrFalse() || (!m_escaping))
7f561c08de6b Initial load
duke
parents:
diff changeset
  1405
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1406
            charactersRaw(chars, start, length);
7f561c08de6b Initial load
duke
parents:
diff changeset
  1407
7f561c08de6b Initial load
duke
parents:
diff changeset
  1408
            // time to fire off characters generation event
7f561c08de6b Initial load
duke
parents:
diff changeset
  1409
            if (m_tracer != null)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1410
                super.fireCharEvent(chars, start, length);
7f561c08de6b Initial load
duke
parents:
diff changeset
  1411
7f561c08de6b Initial load
duke
parents:
diff changeset
  1412
            return;
7f561c08de6b Initial load
duke
parents:
diff changeset
  1413
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1414
7f561c08de6b Initial load
duke
parents:
diff changeset
  1415
        if (m_elemContext.m_startTagOpen)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1416
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1417
            closeStartTag();
7f561c08de6b Initial load
duke
parents:
diff changeset
  1418
            m_elemContext.m_startTagOpen = false;
7f561c08de6b Initial load
duke
parents:
diff changeset
  1419
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1420
7f561c08de6b Initial load
duke
parents:
diff changeset
  1421
7f561c08de6b Initial load
duke
parents:
diff changeset
  1422
        try
7f561c08de6b Initial load
duke
parents:
diff changeset
  1423
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1424
            int i;
12902
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1425
            char ch1;
6
7f561c08de6b Initial load
duke
parents:
diff changeset
  1426
            int startClean;
7f561c08de6b Initial load
duke
parents:
diff changeset
  1427
7f561c08de6b Initial load
duke
parents:
diff changeset
  1428
            // skip any leading whitspace
7f561c08de6b Initial load
duke
parents:
diff changeset
  1429
            // don't go off the end and use a hand inlined version
7f561c08de6b Initial load
duke
parents:
diff changeset
  1430
            // of isWhitespace(ch)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1431
            final int end = start + length;
12902
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1432
            int lastDirty = start - 1; // last character that needed processing
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1433
            for (i = start;
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1434
                ((i < end)
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1435
                    && ((ch1 = chars[i]) == 0x20
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1436
                        || (ch1 == 0xA && m_lineSepUse)
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1437
                        || ch1 == 0xD
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1438
                        || ch1 == 0x09));
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1439
                i++)
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1440
            {
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1441
                /*
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1442
                 * We are processing leading whitespace, but are doing the same
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1443
                 * processing for dirty characters here as for non-whitespace.
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1444
                 *
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1445
                 */
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1446
                if (!m_charInfo.isTextASCIIClean(ch1))
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1447
                {
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1448
                    lastDirty = processDirty(chars,end, i,ch1, lastDirty, true);
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1449
                    i = lastDirty;
6
7f561c08de6b Initial load
duke
parents:
diff changeset
  1450
                }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1451
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1452
            /* If there is some non-whitespace, mark that we may need
7f561c08de6b Initial load
duke
parents:
diff changeset
  1453
             * to preserve this. This is only important if we have indentation on.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1454
             */
12902
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1455
            if (i < end)
6
7f561c08de6b Initial load
duke
parents:
diff changeset
  1456
                m_ispreserve = true;
7f561c08de6b Initial load
duke
parents:
diff changeset
  1457
12902
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1458
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1459
//            int lengthClean;    // number of clean characters in a row
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1460
//            final boolean[] isAsciiClean = m_charInfo.getASCIIClean();
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1461
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1462
            final boolean isXML10 = XMLVERSION10.equals(getVersion());
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1463
            // we've skipped the leading whitespace, now deal with the rest
6
7f561c08de6b Initial load
duke
parents:
diff changeset
  1464
            for (; i < end; i++)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1465
            {
12902
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1466
                {
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1467
                    // A tight loop to skip over common clean chars
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1468
                    // This tight loop makes it easier for the JIT
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1469
                    // to optimize.
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1470
                    char ch2;
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1471
                    while (i<end
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1472
                            && ((ch2 = chars[i])<127)
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1473
                            && m_charInfo.isTextASCIIClean(ch2))
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1474
                            i++;
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1475
                    if (i == end)
12458
d601e4bba306 7160380: Sync JDK8 with JAXP 1.4.5
joehw
parents: 12457
diff changeset
  1476
                        break;
d601e4bba306 7160380: Sync JDK8 with JAXP 1.4.5
joehw
parents: 12457
diff changeset
  1477
                }
12902
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1478
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1479
                final char ch = chars[i];
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1480
                /*  The check for isCharacterInC0orC1Ranger and
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1481
                 *  isNELorLSEPCharacter has been added
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1482
                 *  to support Control Characters in XML 1.1
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1483
                 */
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1484
                if (!isCharacterInC0orC1Range(ch) &&
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1485
                    (isXML10 || !isNELorLSEPCharacter(ch)) &&
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1486
                    (escapingNotNeeded(ch) && (!m_charInfo.isSpecialTextChar(ch)))
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1487
                        || ('"' == ch))
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1488
                {
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1489
                    ; // a character needing no special processing
12458
d601e4bba306 7160380: Sync JDK8 with JAXP 1.4.5
joehw
parents: 12457
diff changeset
  1490
                }
12902
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1491
                else
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1492
                {
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1493
                    lastDirty = processDirty(chars,end, i, ch, lastDirty, true);
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1494
                    i = lastDirty;
6
7f561c08de6b Initial load
duke
parents:
diff changeset
  1495
                }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1496
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1497
7f561c08de6b Initial load
duke
parents:
diff changeset
  1498
            // we've reached the end. Any clean characters at the
7f561c08de6b Initial load
duke
parents:
diff changeset
  1499
            // end of the array than need to be written out?
12902
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1500
            startClean = lastDirty + 1;
6
7f561c08de6b Initial load
duke
parents:
diff changeset
  1501
            if (i > startClean)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1502
            {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1503
                int lengthClean = i - startClean;
7f561c08de6b Initial load
duke
parents:
diff changeset
  1504
                m_writer.write(chars, startClean, lengthClean);
7f561c08de6b Initial load
duke
parents:
diff changeset
  1505
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1506
7f561c08de6b Initial load
duke
parents:
diff changeset
  1507
            // For indentation purposes, mark that we've just writen text out
7f561c08de6b Initial load
duke
parents:
diff changeset
  1508
            m_isprevtext = true;
7f561c08de6b Initial load
duke
parents:
diff changeset
  1509
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1510
        catch (IOException e)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1511
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1512
            throw new SAXException(e);
7f561c08de6b Initial load
duke
parents:
diff changeset
  1513
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1514
7f561c08de6b Initial load
duke
parents:
diff changeset
  1515
        // time to fire off characters generation event
7f561c08de6b Initial load
duke
parents:
diff changeset
  1516
        if (m_tracer != null)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1517
            super.fireCharEvent(chars, start, length);
7f561c08de6b Initial load
duke
parents:
diff changeset
  1518
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1519
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  1520
     * This method checks if a given character is between C0 or C1 range
7f561c08de6b Initial load
duke
parents:
diff changeset
  1521
     * of Control characters.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1522
     * This method is added to support Control Characters for XML 1.1
7f561c08de6b Initial load
duke
parents:
diff changeset
  1523
     * If a given character is TAB (0x09), LF (0x0A) or CR (0x0D), this method
7f561c08de6b Initial load
duke
parents:
diff changeset
  1524
     * return false. Since they are whitespace characters, no special processing is needed.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1525
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  1526
     * @param ch
7f561c08de6b Initial load
duke
parents:
diff changeset
  1527
     * @return boolean
7f561c08de6b Initial load
duke
parents:
diff changeset
  1528
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
  1529
    private static boolean isCharacterInC0orC1Range(char ch)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1530
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1531
        if(ch == 0x09 || ch == 0x0A || ch == 0x0D)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1532
                return false;
7f561c08de6b Initial load
duke
parents:
diff changeset
  1533
        else
7f561c08de6b Initial load
duke
parents:
diff changeset
  1534
                return (ch >= 0x7F && ch <= 0x9F)|| (ch >= 0x01 && ch <= 0x1F);
7f561c08de6b Initial load
duke
parents:
diff changeset
  1535
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1536
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  1537
     * This method checks if a given character either NEL (0x85) or LSEP (0x2028)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1538
     * These are new end of line charcters added in XML 1.1.  These characters must be
7f561c08de6b Initial load
duke
parents:
diff changeset
  1539
     * written as Numeric Character References (NCR) in XML 1.1 output document.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1540
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  1541
     * @param ch
7f561c08de6b Initial load
duke
parents:
diff changeset
  1542
     * @return boolean
7f561c08de6b Initial load
duke
parents:
diff changeset
  1543
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
  1544
    private static boolean isNELorLSEPCharacter(char ch)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1545
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1546
        return (ch == 0x85 || ch == 0x2028);
7f561c08de6b Initial load
duke
parents:
diff changeset
  1547
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1548
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  1549
     * Process a dirty character and any preeceding clean characters
7f561c08de6b Initial load
duke
parents:
diff changeset
  1550
     * that were not yet processed.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1551
     * @param chars array of characters being processed
7f561c08de6b Initial load
duke
parents:
diff changeset
  1552
     * @param end one (1) beyond the last character
7f561c08de6b Initial load
duke
parents:
diff changeset
  1553
     * in chars to be processed
7f561c08de6b Initial load
duke
parents:
diff changeset
  1554
     * @param i the index of the dirty character
7f561c08de6b Initial load
duke
parents:
diff changeset
  1555
     * @param ch the character in chars[i]
7f561c08de6b Initial load
duke
parents:
diff changeset
  1556
     * @param lastDirty the last dirty character previous to i
7f561c08de6b Initial load
duke
parents:
diff changeset
  1557
     * @param fromTextNode true if the characters being processed are
7f561c08de6b Initial load
duke
parents:
diff changeset
  1558
     * from a text node, false if they are from an attribute value.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1559
     * @return the index of the last character processed
7f561c08de6b Initial load
duke
parents:
diff changeset
  1560
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
  1561
    private int processDirty(
7f561c08de6b Initial load
duke
parents:
diff changeset
  1562
        char[] chars,
7f561c08de6b Initial load
duke
parents:
diff changeset
  1563
        int end,
7f561c08de6b Initial load
duke
parents:
diff changeset
  1564
        int i,
7f561c08de6b Initial load
duke
parents:
diff changeset
  1565
        char ch,
7f561c08de6b Initial load
duke
parents:
diff changeset
  1566
        int lastDirty,
7f561c08de6b Initial load
duke
parents:
diff changeset
  1567
        boolean fromTextNode) throws IOException
7f561c08de6b Initial load
duke
parents:
diff changeset
  1568
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1569
        int startClean = lastDirty + 1;
7f561c08de6b Initial load
duke
parents:
diff changeset
  1570
        // if we have some clean characters accumulated
7f561c08de6b Initial load
duke
parents:
diff changeset
  1571
        // process them before the dirty one.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1572
        if (i > startClean)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1573
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1574
            int lengthClean = i - startClean;
7f561c08de6b Initial load
duke
parents:
diff changeset
  1575
            m_writer.write(chars, startClean, lengthClean);
7f561c08de6b Initial load
duke
parents:
diff changeset
  1576
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1577
7f561c08de6b Initial load
duke
parents:
diff changeset
  1578
        // process the "dirty" character
7f561c08de6b Initial load
duke
parents:
diff changeset
  1579
        if (CharInfo.S_LINEFEED == ch && fromTextNode)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1580
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1581
            m_writer.write(m_lineSep, 0, m_lineSepLen);
7f561c08de6b Initial load
duke
parents:
diff changeset
  1582
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1583
        else
7f561c08de6b Initial load
duke
parents:
diff changeset
  1584
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1585
            startClean =
7f561c08de6b Initial load
duke
parents:
diff changeset
  1586
                accumDefaultEscape(
7f561c08de6b Initial load
duke
parents:
diff changeset
  1587
                    m_writer,
7f561c08de6b Initial load
duke
parents:
diff changeset
  1588
                    (char)ch,
7f561c08de6b Initial load
duke
parents:
diff changeset
  1589
                    i,
7f561c08de6b Initial load
duke
parents:
diff changeset
  1590
                    chars,
7f561c08de6b Initial load
duke
parents:
diff changeset
  1591
                    end,
7f561c08de6b Initial load
duke
parents:
diff changeset
  1592
                    fromTextNode,
7f561c08de6b Initial load
duke
parents:
diff changeset
  1593
                    false);
7f561c08de6b Initial load
duke
parents:
diff changeset
  1594
            i = startClean - 1;
7f561c08de6b Initial load
duke
parents:
diff changeset
  1595
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1596
        // Return the index of the last character that we just processed
7f561c08de6b Initial load
duke
parents:
diff changeset
  1597
        // which is a dirty character.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1598
        return i;
7f561c08de6b Initial load
duke
parents:
diff changeset
  1599
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1600
7f561c08de6b Initial load
duke
parents:
diff changeset
  1601
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  1602
     * Receive notification of character data.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1603
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  1604
     * @param s The string of characters to process.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1605
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  1606
     * @throws org.xml.sax.SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
  1607
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
  1608
    public void characters(String s) throws org.xml.sax.SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
  1609
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1610
        if (m_inEntityRef && !m_expandDTDEntities)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1611
            return;
7f561c08de6b Initial load
duke
parents:
diff changeset
  1612
        final int length = s.length();
7f561c08de6b Initial load
duke
parents:
diff changeset
  1613
        if (length > m_charsBuff.length)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1614
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1615
            m_charsBuff = new char[length * 2 + 1];
7f561c08de6b Initial load
duke
parents:
diff changeset
  1616
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1617
        s.getChars(0, length, m_charsBuff, 0);
7f561c08de6b Initial load
duke
parents:
diff changeset
  1618
        characters(m_charsBuff, 0, length);
7f561c08de6b Initial load
duke
parents:
diff changeset
  1619
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1620
7f561c08de6b Initial load
duke
parents:
diff changeset
  1621
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  1622
     * Escape and writer.write a character.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1623
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  1624
     * @param ch character to be escaped.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1625
     * @param i index into character array.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1626
     * @param chars non-null reference to character array.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1627
     * @param len length of chars.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1628
     * @param fromTextNode true if the characters being processed are
7f561c08de6b Initial load
duke
parents:
diff changeset
  1629
     * from a text node, false if the characters being processed are from
7f561c08de6b Initial load
duke
parents:
diff changeset
  1630
     * an attribute value.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1631
     * @param escLF true if the linefeed should be escaped.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1632
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  1633
     * @return i+1 if a character was written, i+2 if two characters
7f561c08de6b Initial load
duke
parents:
diff changeset
  1634
     * were written out, else return i.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1635
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  1636
     * @throws org.xml.sax.SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
  1637
     */
12902
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1638
    protected int accumDefaultEscape(
6
7f561c08de6b Initial load
duke
parents:
diff changeset
  1639
        Writer writer,
7f561c08de6b Initial load
duke
parents:
diff changeset
  1640
        char ch,
7f561c08de6b Initial load
duke
parents:
diff changeset
  1641
        int i,
7f561c08de6b Initial load
duke
parents:
diff changeset
  1642
        char[] chars,
7f561c08de6b Initial load
duke
parents:
diff changeset
  1643
        int len,
7f561c08de6b Initial load
duke
parents:
diff changeset
  1644
        boolean fromTextNode,
7f561c08de6b Initial load
duke
parents:
diff changeset
  1645
        boolean escLF)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1646
        throws IOException
7f561c08de6b Initial load
duke
parents:
diff changeset
  1647
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1648
7f561c08de6b Initial load
duke
parents:
diff changeset
  1649
        int pos = accumDefaultEntity(writer, ch, i, chars, len, fromTextNode, escLF);
7f561c08de6b Initial load
duke
parents:
diff changeset
  1650
7f561c08de6b Initial load
duke
parents:
diff changeset
  1651
        if (i == pos)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1652
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1653
            if (Encodings.isHighUTF16Surrogate(ch))
7f561c08de6b Initial load
duke
parents:
diff changeset
  1654
            {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1655
7f561c08de6b Initial load
duke
parents:
diff changeset
  1656
                // Should be the UTF-16 low surrogate of the hig/low pair.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1657
                char next;
7f561c08de6b Initial load
duke
parents:
diff changeset
  1658
                // Unicode code point formed from the high/low pair.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1659
                int codePoint = 0;
7f561c08de6b Initial load
duke
parents:
diff changeset
  1660
7f561c08de6b Initial load
duke
parents:
diff changeset
  1661
                if (i + 1 >= len)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1662
                {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1663
                    throw new IOException(
7f561c08de6b Initial load
duke
parents:
diff changeset
  1664
                        Utils.messages.createMessage(
7f561c08de6b Initial load
duke
parents:
diff changeset
  1665
                            MsgKey.ER_INVALID_UTF16_SURROGATE,
7f561c08de6b Initial load
duke
parents:
diff changeset
  1666
                            new Object[] { Integer.toHexString(ch)}));
7f561c08de6b Initial load
duke
parents:
diff changeset
  1667
                    //"Invalid UTF-16 surrogate detected: "
7f561c08de6b Initial load
duke
parents:
diff changeset
  1668
7f561c08de6b Initial load
duke
parents:
diff changeset
  1669
                    //+Integer.toHexString(ch)+ " ?");
7f561c08de6b Initial load
duke
parents:
diff changeset
  1670
                }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1671
                else
7f561c08de6b Initial load
duke
parents:
diff changeset
  1672
                {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1673
                    next = chars[++i];
7f561c08de6b Initial load
duke
parents:
diff changeset
  1674
7f561c08de6b Initial load
duke
parents:
diff changeset
  1675
                    if (!(Encodings.isLowUTF16Surrogate(next)))
7f561c08de6b Initial load
duke
parents:
diff changeset
  1676
                        throw new IOException(
7f561c08de6b Initial load
duke
parents:
diff changeset
  1677
                            Utils.messages.createMessage(
7f561c08de6b Initial load
duke
parents:
diff changeset
  1678
                                MsgKey
7f561c08de6b Initial load
duke
parents:
diff changeset
  1679
                                    .ER_INVALID_UTF16_SURROGATE,
7f561c08de6b Initial load
duke
parents:
diff changeset
  1680
                                new Object[] {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1681
                                    Integer.toHexString(ch)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1682
                                        + " "
7f561c08de6b Initial load
duke
parents:
diff changeset
  1683
                                        + Integer.toHexString(next)}));
7f561c08de6b Initial load
duke
parents:
diff changeset
  1684
                    //"Invalid UTF-16 surrogate detected: "
7f561c08de6b Initial load
duke
parents:
diff changeset
  1685
7f561c08de6b Initial load
duke
parents:
diff changeset
  1686
                    //+Integer.toHexString(ch)+" "+Integer.toHexString(next));
7f561c08de6b Initial load
duke
parents:
diff changeset
  1687
                    codePoint = Encodings.toCodePoint(ch,next);
7f561c08de6b Initial load
duke
parents:
diff changeset
  1688
                }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1689
7f561c08de6b Initial load
duke
parents:
diff changeset
  1690
                writer.write("&#");
7f561c08de6b Initial load
duke
parents:
diff changeset
  1691
                writer.write(Integer.toString(codePoint));
7f561c08de6b Initial load
duke
parents:
diff changeset
  1692
                writer.write(';');
7f561c08de6b Initial load
duke
parents:
diff changeset
  1693
                pos += 2; // count the two characters that went into writing out this entity
7f561c08de6b Initial load
duke
parents:
diff changeset
  1694
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1695
            else
7f561c08de6b Initial load
duke
parents:
diff changeset
  1696
            {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1697
                /*  This if check is added to support control characters in XML 1.1.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1698
                 *  If a character is a Control Character within C0 and C1 range, it is desirable
7f561c08de6b Initial load
duke
parents:
diff changeset
  1699
                 *  to write it out as Numeric Character Reference(NCR) regardless of XML Version
7f561c08de6b Initial load
duke
parents:
diff changeset
  1700
                 *  being used for output document.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1701
                 */
12902
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1702
                if (isCharacterInC0orC1Range(ch) ||
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1703
                        (XMLVERSION11.equals(getVersion()) && isNELorLSEPCharacter(ch)))
6
7f561c08de6b Initial load
duke
parents:
diff changeset
  1704
                {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1705
                    writer.write("&#");
7f561c08de6b Initial load
duke
parents:
diff changeset
  1706
                    writer.write(Integer.toString(ch));
7f561c08de6b Initial load
duke
parents:
diff changeset
  1707
                    writer.write(';');
7f561c08de6b Initial load
duke
parents:
diff changeset
  1708
                }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1709
                else if ((!escapingNotNeeded(ch) ||
12902
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1710
                    (  (fromTextNode && m_charInfo.isSpecialTextChar(ch))
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1711
                     || (!fromTextNode && m_charInfo.isSpecialAttrChar(ch))))
6
7f561c08de6b Initial load
duke
parents:
diff changeset
  1712
                && m_elemContext.m_currentElemDepth > 0)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1713
                {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1714
                    writer.write("&#");
7f561c08de6b Initial load
duke
parents:
diff changeset
  1715
                    writer.write(Integer.toString(ch));
7f561c08de6b Initial load
duke
parents:
diff changeset
  1716
                    writer.write(';');
7f561c08de6b Initial load
duke
parents:
diff changeset
  1717
                }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1718
                else
7f561c08de6b Initial load
duke
parents:
diff changeset
  1719
                {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1720
                    writer.write(ch);
7f561c08de6b Initial load
duke
parents:
diff changeset
  1721
                }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1722
                pos++;  // count the single character that was processed
7f561c08de6b Initial load
duke
parents:
diff changeset
  1723
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1724
7f561c08de6b Initial load
duke
parents:
diff changeset
  1725
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1726
        return pos;
7f561c08de6b Initial load
duke
parents:
diff changeset
  1727
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1728
7f561c08de6b Initial load
duke
parents:
diff changeset
  1729
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  1730
     * Receive notification of the beginning of an element, although this is a
7f561c08de6b Initial load
duke
parents:
diff changeset
  1731
     * SAX method additional namespace or attribute information can occur before
7f561c08de6b Initial load
duke
parents:
diff changeset
  1732
     * or after this call, that is associated with this element.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1733
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  1734
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  1735
     * @param namespaceURI The Namespace URI, or the empty string if the
7f561c08de6b Initial load
duke
parents:
diff changeset
  1736
     *        element has no Namespace URI or if Namespace
7f561c08de6b Initial load
duke
parents:
diff changeset
  1737
     *        processing is not being performed.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1738
     * @param localName The local name (without prefix), or the
7f561c08de6b Initial load
duke
parents:
diff changeset
  1739
     *        empty string if Namespace processing is not being
7f561c08de6b Initial load
duke
parents:
diff changeset
  1740
     *        performed.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1741
     * @param name The element type name.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1742
     * @param atts The attributes attached to the element, if any.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1743
     * @throws org.xml.sax.SAXException Any SAX exception, possibly
7f561c08de6b Initial load
duke
parents:
diff changeset
  1744
     *            wrapping another exception.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1745
     * @see org.xml.sax.ContentHandler#startElement
7f561c08de6b Initial load
duke
parents:
diff changeset
  1746
     * @see org.xml.sax.ContentHandler#endElement
7f561c08de6b Initial load
duke
parents:
diff changeset
  1747
     * @see org.xml.sax.AttributeList
7f561c08de6b Initial load
duke
parents:
diff changeset
  1748
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  1749
     * @throws org.xml.sax.SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
  1750
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
  1751
    public void startElement(
7f561c08de6b Initial load
duke
parents:
diff changeset
  1752
        String namespaceURI,
7f561c08de6b Initial load
duke
parents:
diff changeset
  1753
        String localName,
7f561c08de6b Initial load
duke
parents:
diff changeset
  1754
        String name,
7f561c08de6b Initial load
duke
parents:
diff changeset
  1755
        Attributes atts)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1756
        throws org.xml.sax.SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
  1757
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1758
        if (m_inEntityRef)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1759
            return;
7f561c08de6b Initial load
duke
parents:
diff changeset
  1760
7f561c08de6b Initial load
duke
parents:
diff changeset
  1761
        if (m_needToCallStartDocument)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1762
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1763
            startDocumentInternal();
7f561c08de6b Initial load
duke
parents:
diff changeset
  1764
            m_needToCallStartDocument = false;
7f561c08de6b Initial load
duke
parents:
diff changeset
  1765
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1766
        else if (m_cdataTagOpen)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1767
            closeCDATA();
7f561c08de6b Initial load
duke
parents:
diff changeset
  1768
        try
7f561c08de6b Initial load
duke
parents:
diff changeset
  1769
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1770
            if ((true == m_needToOutputDocTypeDecl)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1771
                && (null != getDoctypeSystem()))
7f561c08de6b Initial load
duke
parents:
diff changeset
  1772
            {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1773
                outputDocTypeDecl(name, true);
7f561c08de6b Initial load
duke
parents:
diff changeset
  1774
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1775
7f561c08de6b Initial load
duke
parents:
diff changeset
  1776
            m_needToOutputDocTypeDecl = false;
7f561c08de6b Initial load
duke
parents:
diff changeset
  1777
7f561c08de6b Initial load
duke
parents:
diff changeset
  1778
            /* before we over-write the current elementLocalName etc.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1779
             * lets close out the old one (if we still need to)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1780
             */
7f561c08de6b Initial load
duke
parents:
diff changeset
  1781
            if (m_elemContext.m_startTagOpen)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1782
            {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1783
                closeStartTag();
7f561c08de6b Initial load
duke
parents:
diff changeset
  1784
                m_elemContext.m_startTagOpen = false;
7f561c08de6b Initial load
duke
parents:
diff changeset
  1785
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1786
7f561c08de6b Initial load
duke
parents:
diff changeset
  1787
            if (namespaceURI != null)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1788
                ensurePrefixIsDeclared(namespaceURI, name);
7f561c08de6b Initial load
duke
parents:
diff changeset
  1789
7f561c08de6b Initial load
duke
parents:
diff changeset
  1790
            m_ispreserve = false;
7f561c08de6b Initial load
duke
parents:
diff changeset
  1791
7f561c08de6b Initial load
duke
parents:
diff changeset
  1792
            if (shouldIndent() && m_startNewLine)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1793
            {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1794
                indent();
7f561c08de6b Initial load
duke
parents:
diff changeset
  1795
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1796
7f561c08de6b Initial load
duke
parents:
diff changeset
  1797
            m_startNewLine = true;
7f561c08de6b Initial load
duke
parents:
diff changeset
  1798
7f561c08de6b Initial load
duke
parents:
diff changeset
  1799
            final java.io.Writer writer = m_writer;
7f561c08de6b Initial load
duke
parents:
diff changeset
  1800
            writer.write('<');
7f561c08de6b Initial load
duke
parents:
diff changeset
  1801
            writer.write(name);
7f561c08de6b Initial load
duke
parents:
diff changeset
  1802
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1803
        catch (IOException e)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1804
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1805
            throw new SAXException(e);
7f561c08de6b Initial load
duke
parents:
diff changeset
  1806
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1807
7f561c08de6b Initial load
duke
parents:
diff changeset
  1808
        // process the attributes now, because after this SAX call they might be gone
7f561c08de6b Initial load
duke
parents:
diff changeset
  1809
        if (atts != null)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1810
            addAttributes(atts);
7f561c08de6b Initial load
duke
parents:
diff changeset
  1811
7f561c08de6b Initial load
duke
parents:
diff changeset
  1812
        m_elemContext = m_elemContext.push(namespaceURI,localName,name);
7f561c08de6b Initial load
duke
parents:
diff changeset
  1813
        m_isprevtext = false;
7f561c08de6b Initial load
duke
parents:
diff changeset
  1814
7f561c08de6b Initial load
duke
parents:
diff changeset
  1815
        if (m_tracer != null){
7f561c08de6b Initial load
duke
parents:
diff changeset
  1816
            firePseudoAttributes();
7f561c08de6b Initial load
duke
parents:
diff changeset
  1817
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1818
7f561c08de6b Initial load
duke
parents:
diff changeset
  1819
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1820
7f561c08de6b Initial load
duke
parents:
diff changeset
  1821
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  1822
      * Receive notification of the beginning of an element, additional
7f561c08de6b Initial load
duke
parents:
diff changeset
  1823
      * namespace or attribute information can occur before or after this call,
7f561c08de6b Initial load
duke
parents:
diff changeset
  1824
      * that is associated with this element.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1825
      *
7f561c08de6b Initial load
duke
parents:
diff changeset
  1826
      *
7f561c08de6b Initial load
duke
parents:
diff changeset
  1827
      * @param elementNamespaceURI The Namespace URI, or the empty string if the
7f561c08de6b Initial load
duke
parents:
diff changeset
  1828
      *        element has no Namespace URI or if Namespace
7f561c08de6b Initial load
duke
parents:
diff changeset
  1829
      *        processing is not being performed.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1830
      * @param elementLocalName The local name (without prefix), or the
7f561c08de6b Initial load
duke
parents:
diff changeset
  1831
      *        empty string if Namespace processing is not being
7f561c08de6b Initial load
duke
parents:
diff changeset
  1832
      *        performed.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1833
      * @param elementName The element type name.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1834
      * @throws org.xml.sax.SAXException Any SAX exception, possibly
7f561c08de6b Initial load
duke
parents:
diff changeset
  1835
      *            wrapping another exception.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1836
      * @see org.xml.sax.ContentHandler#startElement
7f561c08de6b Initial load
duke
parents:
diff changeset
  1837
      * @see org.xml.sax.ContentHandler#endElement
7f561c08de6b Initial load
duke
parents:
diff changeset
  1838
      * @see org.xml.sax.AttributeList
7f561c08de6b Initial load
duke
parents:
diff changeset
  1839
      *
7f561c08de6b Initial load
duke
parents:
diff changeset
  1840
      * @throws org.xml.sax.SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
  1841
      */
7f561c08de6b Initial load
duke
parents:
diff changeset
  1842
    public void startElement(
7f561c08de6b Initial load
duke
parents:
diff changeset
  1843
        String elementNamespaceURI,
7f561c08de6b Initial load
duke
parents:
diff changeset
  1844
        String elementLocalName,
7f561c08de6b Initial load
duke
parents:
diff changeset
  1845
        String elementName)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1846
        throws SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
  1847
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1848
        startElement(elementNamespaceURI, elementLocalName, elementName, null);
7f561c08de6b Initial load
duke
parents:
diff changeset
  1849
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1850
7f561c08de6b Initial load
duke
parents:
diff changeset
  1851
    public void startElement(String elementName) throws SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
  1852
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1853
        startElement(null, null, elementName, null);
7f561c08de6b Initial load
duke
parents:
diff changeset
  1854
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1855
7f561c08de6b Initial load
duke
parents:
diff changeset
  1856
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  1857
     * Output the doc type declaration.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1858
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  1859
     * @param name non-null reference to document type name.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1860
     * NEEDSDOC @param closeDecl
7f561c08de6b Initial load
duke
parents:
diff changeset
  1861
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  1862
     * @throws java.io.IOException
7f561c08de6b Initial load
duke
parents:
diff changeset
  1863
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
  1864
    void outputDocTypeDecl(String name, boolean closeDecl) throws SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
  1865
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1866
        if (m_cdataTagOpen)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1867
            closeCDATA();
7f561c08de6b Initial load
duke
parents:
diff changeset
  1868
        try
7f561c08de6b Initial load
duke
parents:
diff changeset
  1869
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1870
            final java.io.Writer writer = m_writer;
7f561c08de6b Initial load
duke
parents:
diff changeset
  1871
            writer.write("<!DOCTYPE ");
7f561c08de6b Initial load
duke
parents:
diff changeset
  1872
            writer.write(name);
7f561c08de6b Initial load
duke
parents:
diff changeset
  1873
7f561c08de6b Initial load
duke
parents:
diff changeset
  1874
            String doctypePublic = getDoctypePublic();
7f561c08de6b Initial load
duke
parents:
diff changeset
  1875
            if (null != doctypePublic)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1876
            {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1877
                writer.write(" PUBLIC \"");
7f561c08de6b Initial load
duke
parents:
diff changeset
  1878
                writer.write(doctypePublic);
7f561c08de6b Initial load
duke
parents:
diff changeset
  1879
                writer.write('\"');
7f561c08de6b Initial load
duke
parents:
diff changeset
  1880
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1881
7f561c08de6b Initial load
duke
parents:
diff changeset
  1882
            String doctypeSystem = getDoctypeSystem();
7f561c08de6b Initial load
duke
parents:
diff changeset
  1883
            if (null != doctypeSystem)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1884
            {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1885
                if (null == doctypePublic)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1886
                    writer.write(" SYSTEM \"");
7f561c08de6b Initial load
duke
parents:
diff changeset
  1887
                else
7f561c08de6b Initial load
duke
parents:
diff changeset
  1888
                    writer.write(" \"");
7f561c08de6b Initial load
duke
parents:
diff changeset
  1889
7f561c08de6b Initial load
duke
parents:
diff changeset
  1890
                writer.write(doctypeSystem);
7f561c08de6b Initial load
duke
parents:
diff changeset
  1891
7f561c08de6b Initial load
duke
parents:
diff changeset
  1892
                if (closeDecl)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1893
                {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1894
                    writer.write("\">");
7f561c08de6b Initial load
duke
parents:
diff changeset
  1895
                    writer.write(m_lineSep, 0, m_lineSepLen);
7f561c08de6b Initial load
duke
parents:
diff changeset
  1896
                    closeDecl = false; // done closing
7f561c08de6b Initial load
duke
parents:
diff changeset
  1897
                }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1898
                else
7f561c08de6b Initial load
duke
parents:
diff changeset
  1899
                    writer.write('\"');
7f561c08de6b Initial load
duke
parents:
diff changeset
  1900
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1901
            boolean dothis = false;
7f561c08de6b Initial load
duke
parents:
diff changeset
  1902
            if (dothis)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1903
            {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1904
                // at one point this code seemed right,
7f561c08de6b Initial load
duke
parents:
diff changeset
  1905
                // but not anymore - Brian M.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1906
                if (closeDecl)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1907
                {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1908
                    writer.write('>');
7f561c08de6b Initial load
duke
parents:
diff changeset
  1909
                    writer.write(m_lineSep, 0, m_lineSepLen);
7f561c08de6b Initial load
duke
parents:
diff changeset
  1910
                }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1911
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1912
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1913
        catch (IOException e)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1914
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1915
            throw new SAXException(e);
7f561c08de6b Initial load
duke
parents:
diff changeset
  1916
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1917
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1918
7f561c08de6b Initial load
duke
parents:
diff changeset
  1919
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  1920
     * Process the attributes, which means to write out the currently
7f561c08de6b Initial load
duke
parents:
diff changeset
  1921
     * collected attributes to the writer. The attributes are not
7f561c08de6b Initial load
duke
parents:
diff changeset
  1922
     * cleared by this method
7f561c08de6b Initial load
duke
parents:
diff changeset
  1923
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  1924
     * @param writer the writer to write processed attributes to.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1925
     * @param nAttrs the number of attributes in m_attributes
7f561c08de6b Initial load
duke
parents:
diff changeset
  1926
     * to be processed
7f561c08de6b Initial load
duke
parents:
diff changeset
  1927
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  1928
     * @throws java.io.IOException
7f561c08de6b Initial load
duke
parents:
diff changeset
  1929
     * @throws org.xml.sax.SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
  1930
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
  1931
    public void processAttributes(java.io.Writer writer, int nAttrs) throws IOException, SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
  1932
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1933
            /* real SAX attributes are not passed in, so process the
7f561c08de6b Initial load
duke
parents:
diff changeset
  1934
             * attributes that were collected after the startElement call.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1935
             * _attribVector is a "cheap" list for Stream serializer output
7f561c08de6b Initial load
duke
parents:
diff changeset
  1936
             * accumulated over a series of calls to attribute(name,value)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1937
             */
7f561c08de6b Initial load
duke
parents:
diff changeset
  1938
            String encoding = getEncoding();
7f561c08de6b Initial load
duke
parents:
diff changeset
  1939
            for (int i = 0; i < nAttrs; i++)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1940
            {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1941
                // elementAt is JDK 1.1.8
7f561c08de6b Initial load
duke
parents:
diff changeset
  1942
                final String name = m_attributes.getQName(i);
7f561c08de6b Initial load
duke
parents:
diff changeset
  1943
                final String value = m_attributes.getValue(i);
7f561c08de6b Initial load
duke
parents:
diff changeset
  1944
                writer.write(' ');
7f561c08de6b Initial load
duke
parents:
diff changeset
  1945
                writer.write(name);
7f561c08de6b Initial load
duke
parents:
diff changeset
  1946
                writer.write("=\"");
7f561c08de6b Initial load
duke
parents:
diff changeset
  1947
                writeAttrString(writer, value, encoding);
7f561c08de6b Initial load
duke
parents:
diff changeset
  1948
                writer.write('\"');
7f561c08de6b Initial load
duke
parents:
diff changeset
  1949
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1950
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1951
7f561c08de6b Initial load
duke
parents:
diff changeset
  1952
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  1953
     * Returns the specified <var>string</var> after substituting <VAR>specials</VAR>,
7f561c08de6b Initial load
duke
parents:
diff changeset
  1954
     * and UTF-16 surrogates for chracter references <CODE>&amp;#xnn</CODE>.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1955
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  1956
     * @param   string      String to convert to XML format.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1957
     * @param   encoding    CURRENTLY NOT IMPLEMENTED.
7f561c08de6b Initial load
duke
parents:
diff changeset
  1958
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  1959
     * @throws java.io.IOException
7f561c08de6b Initial load
duke
parents:
diff changeset
  1960
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
  1961
    public void writeAttrString(
7f561c08de6b Initial load
duke
parents:
diff changeset
  1962
        Writer writer,
7f561c08de6b Initial load
duke
parents:
diff changeset
  1963
        String string,
7f561c08de6b Initial load
duke
parents:
diff changeset
  1964
        String encoding)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1965
        throws IOException
7f561c08de6b Initial load
duke
parents:
diff changeset
  1966
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1967
        final int len = string.length();
7f561c08de6b Initial load
duke
parents:
diff changeset
  1968
        if (len > m_attrBuff.length)
7f561c08de6b Initial load
duke
parents:
diff changeset
  1969
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1970
           m_attrBuff = new char[len*2 + 1];
7f561c08de6b Initial load
duke
parents:
diff changeset
  1971
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1972
        string.getChars(0,len, m_attrBuff, 0);
7f561c08de6b Initial load
duke
parents:
diff changeset
  1973
        final char[] stringChars = m_attrBuff;
7f561c08de6b Initial load
duke
parents:
diff changeset
  1974
12902
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1975
        for (int i = 0; i < len; )
6
7f561c08de6b Initial load
duke
parents:
diff changeset
  1976
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
  1977
            char ch = stringChars[i];
12902
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1978
            if (escapingNotNeeded(ch) && (!m_charInfo.isSpecialAttrChar(ch)))
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1979
            {
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1980
                writer.write(ch);
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1981
                i++;
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1982
            }
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1983
            else
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1984
            { // I guess the parser doesn't normalize cr/lf in attributes. -sb
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1985
//                if ((CharInfo.S_CARRIAGERETURN == ch)
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1986
//                    && ((i + 1) < len)
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1987
//                    && (CharInfo.S_LINEFEED == stringChars[i + 1]))
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1988
//                {
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1989
//                    i++;
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1990
//                    ch = CharInfo.S_LINEFEED;
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1991
//                }
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1992
6
7f561c08de6b Initial load
duke
parents:
diff changeset
  1993
                i = accumDefaultEscape(writer, ch, i, stringChars, len, false, true);
7f561c08de6b Initial load
duke
parents:
diff changeset
  1994
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1995
        }
12902
0a840d92fa30 7151118: Regressions on 7u4 b11 comp. 7u4 b06 on specjvm2008.xml.transform subbenchmark
joehw
parents: 12458
diff changeset
  1996
6
7f561c08de6b Initial load
duke
parents:
diff changeset
  1997
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
  1998
7f561c08de6b Initial load
duke
parents:
diff changeset
  1999
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  2000
     * Receive notification of the end of an element.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2001
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  2002
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  2003
     * @param namespaceURI The Namespace URI, or the empty string if the
7f561c08de6b Initial load
duke
parents:
diff changeset
  2004
     *        element has no Namespace URI or if Namespace
7f561c08de6b Initial load
duke
parents:
diff changeset
  2005
     *        processing is not being performed.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2006
     * @param localName The local name (without prefix), or the
7f561c08de6b Initial load
duke
parents:
diff changeset
  2007
     *        empty string if Namespace processing is not being
7f561c08de6b Initial load
duke
parents:
diff changeset
  2008
     *        performed.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2009
     * @param name The element type name
7f561c08de6b Initial load
duke
parents:
diff changeset
  2010
     * @throws org.xml.sax.SAXException Any SAX exception, possibly
7f561c08de6b Initial load
duke
parents:
diff changeset
  2011
     *            wrapping another exception.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2012
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  2013
     * @throws org.xml.sax.SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
  2014
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
  2015
    public void endElement(String namespaceURI, String localName, String name)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2016
        throws org.xml.sax.SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
  2017
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2018
7f561c08de6b Initial load
duke
parents:
diff changeset
  2019
        if (m_inEntityRef)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2020
            return;
7f561c08de6b Initial load
duke
parents:
diff changeset
  2021
7f561c08de6b Initial load
duke
parents:
diff changeset
  2022
        // namespaces declared at the current depth are no longer valid
7f561c08de6b Initial load
duke
parents:
diff changeset
  2023
        // so get rid of them
7f561c08de6b Initial load
duke
parents:
diff changeset
  2024
        m_prefixMap.popNamespaces(m_elemContext.m_currentElemDepth, null);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2025
7f561c08de6b Initial load
duke
parents:
diff changeset
  2026
        try
7f561c08de6b Initial load
duke
parents:
diff changeset
  2027
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2028
            final java.io.Writer writer = m_writer;
7f561c08de6b Initial load
duke
parents:
diff changeset
  2029
            if (m_elemContext.m_startTagOpen)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2030
            {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2031
                if (m_tracer != null)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2032
                    super.fireStartElem(m_elemContext.m_elementName);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2033
                int nAttrs = m_attributes.getLength();
7f561c08de6b Initial load
duke
parents:
diff changeset
  2034
                if (nAttrs > 0)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2035
                {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2036
                    processAttributes(m_writer, nAttrs);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2037
                    // clear attributes object for re-use with next element
7f561c08de6b Initial load
duke
parents:
diff changeset
  2038
                    m_attributes.clear();
7f561c08de6b Initial load
duke
parents:
diff changeset
  2039
                }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2040
                if (m_spaceBeforeClose)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2041
                    writer.write(" />");
7f561c08de6b Initial load
duke
parents:
diff changeset
  2042
                else
7f561c08de6b Initial load
duke
parents:
diff changeset
  2043
                    writer.write("/>");
7f561c08de6b Initial load
duke
parents:
diff changeset
  2044
                /* don't need to pop cdataSectionState because
7f561c08de6b Initial load
duke
parents:
diff changeset
  2045
                 * this element ended so quickly that we didn't get
7f561c08de6b Initial load
duke
parents:
diff changeset
  2046
                 * to push the state.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2047
                 */
7f561c08de6b Initial load
duke
parents:
diff changeset
  2048
7f561c08de6b Initial load
duke
parents:
diff changeset
  2049
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2050
            else
7f561c08de6b Initial load
duke
parents:
diff changeset
  2051
            {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2052
                if (m_cdataTagOpen)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2053
                    closeCDATA();
7f561c08de6b Initial load
duke
parents:
diff changeset
  2054
7f561c08de6b Initial load
duke
parents:
diff changeset
  2055
                if (shouldIndent())
7f561c08de6b Initial load
duke
parents:
diff changeset
  2056
                    indent(m_elemContext.m_currentElemDepth - 1);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2057
                writer.write('<');
7f561c08de6b Initial load
duke
parents:
diff changeset
  2058
                writer.write('/');
7f561c08de6b Initial load
duke
parents:
diff changeset
  2059
                writer.write(name);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2060
                writer.write('>');
7f561c08de6b Initial load
duke
parents:
diff changeset
  2061
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2062
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2063
        catch (IOException e)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2064
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2065
            throw new SAXException(e);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2066
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2067
7f561c08de6b Initial load
duke
parents:
diff changeset
  2068
        if (!m_elemContext.m_startTagOpen && m_doIndent)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2069
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2070
            m_ispreserve = m_preserves.isEmpty() ? false : m_preserves.pop();
7f561c08de6b Initial load
duke
parents:
diff changeset
  2071
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2072
7f561c08de6b Initial load
duke
parents:
diff changeset
  2073
        m_isprevtext = false;
7f561c08de6b Initial load
duke
parents:
diff changeset
  2074
7f561c08de6b Initial load
duke
parents:
diff changeset
  2075
        // fire off the end element event
7f561c08de6b Initial load
duke
parents:
diff changeset
  2076
        if (m_tracer != null)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2077
            super.fireEndElem(name);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2078
        m_elemContext = m_elemContext.m_prev;
7f561c08de6b Initial load
duke
parents:
diff changeset
  2079
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2080
7f561c08de6b Initial load
duke
parents:
diff changeset
  2081
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  2082
     * Receive notification of the end of an element.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2083
     * @param name The element type name
7f561c08de6b Initial load
duke
parents:
diff changeset
  2084
     * @throws org.xml.sax.SAXException Any SAX exception, possibly
7f561c08de6b Initial load
duke
parents:
diff changeset
  2085
     *     wrapping another exception.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2086
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
  2087
    public void endElement(String name) throws org.xml.sax.SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
  2088
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2089
        endElement(null, null, name);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2090
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2091
7f561c08de6b Initial load
duke
parents:
diff changeset
  2092
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  2093
     * Begin the scope of a prefix-URI Namespace mapping
7f561c08de6b Initial load
duke
parents:
diff changeset
  2094
     * just before another element is about to start.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2095
     * This call will close any open tags so that the prefix mapping
7f561c08de6b Initial load
duke
parents:
diff changeset
  2096
     * will not apply to the current element, but the up comming child.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2097
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  2098
     * @see org.xml.sax.ContentHandler#startPrefixMapping
7f561c08de6b Initial load
duke
parents:
diff changeset
  2099
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  2100
     * @param prefix The Namespace prefix being declared.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2101
     * @param uri The Namespace URI the prefix is mapped to.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2102
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  2103
     * @throws org.xml.sax.SAXException The client may throw
7f561c08de6b Initial load
duke
parents:
diff changeset
  2104
     *            an exception during processing.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2105
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  2106
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
  2107
    public void startPrefixMapping(String prefix, String uri)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2108
        throws org.xml.sax.SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
  2109
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2110
        // the "true" causes the flush of any open tags
7f561c08de6b Initial load
duke
parents:
diff changeset
  2111
        startPrefixMapping(prefix, uri, true);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2112
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2113
7f561c08de6b Initial load
duke
parents:
diff changeset
  2114
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  2115
     * Handle a prefix/uri mapping, which is associated with a startElement()
7f561c08de6b Initial load
duke
parents:
diff changeset
  2116
     * that is soon to follow. Need to close any open start tag to make
7f561c08de6b Initial load
duke
parents:
diff changeset
  2117
     * sure than any name space attributes due to this event are associated wih
7f561c08de6b Initial load
duke
parents:
diff changeset
  2118
     * the up comming element, not the current one.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2119
     * @see ExtendedContentHandler#startPrefixMapping
7f561c08de6b Initial load
duke
parents:
diff changeset
  2120
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  2121
     * @param prefix The Namespace prefix being declared.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2122
     * @param uri The Namespace URI the prefix is mapped to.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2123
     * @param shouldFlush true if any open tags need to be closed first, this
7f561c08de6b Initial load
duke
parents:
diff changeset
  2124
     * will impact which element the mapping applies to (open parent, or its up
7f561c08de6b Initial load
duke
parents:
diff changeset
  2125
     * comming child)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2126
     * @return returns true if the call made a change to the current
7f561c08de6b Initial load
duke
parents:
diff changeset
  2127
     * namespace information, false if it did not change anything, e.g. if the
7f561c08de6b Initial load
duke
parents:
diff changeset
  2128
     * prefix/namespace mapping was already in scope from before.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2129
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  2130
     * @throws org.xml.sax.SAXException The client may throw
7f561c08de6b Initial load
duke
parents:
diff changeset
  2131
     *            an exception during processing.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2132
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  2133
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  2134
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
  2135
    public boolean startPrefixMapping(
7f561c08de6b Initial load
duke
parents:
diff changeset
  2136
        String prefix,
7f561c08de6b Initial load
duke
parents:
diff changeset
  2137
        String uri,
7f561c08de6b Initial load
duke
parents:
diff changeset
  2138
        boolean shouldFlush)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2139
        throws org.xml.sax.SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
  2140
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2141
7f561c08de6b Initial load
duke
parents:
diff changeset
  2142
        /* Remember the mapping, and at what depth it was declared
7f561c08de6b Initial load
duke
parents:
diff changeset
  2143
         * This is one greater than the current depth because these
7f561c08de6b Initial load
duke
parents:
diff changeset
  2144
         * mappings will apply to the next depth. This is in
7f561c08de6b Initial load
duke
parents:
diff changeset
  2145
         * consideration that startElement() will soon be called
7f561c08de6b Initial load
duke
parents:
diff changeset
  2146
         */
7f561c08de6b Initial load
duke
parents:
diff changeset
  2147
7f561c08de6b Initial load
duke
parents:
diff changeset
  2148
        boolean pushed;
7f561c08de6b Initial load
duke
parents:
diff changeset
  2149
        int pushDepth;
7f561c08de6b Initial load
duke
parents:
diff changeset
  2150
        if (shouldFlush)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2151
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2152
            flushPending();
7f561c08de6b Initial load
duke
parents:
diff changeset
  2153
            // the prefix mapping applies to the child element (one deeper)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2154
            pushDepth = m_elemContext.m_currentElemDepth + 1;
7f561c08de6b Initial load
duke
parents:
diff changeset
  2155
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2156
        else
7f561c08de6b Initial load
duke
parents:
diff changeset
  2157
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2158
            // the prefix mapping applies to the current element
7f561c08de6b Initial load
duke
parents:
diff changeset
  2159
            pushDepth = m_elemContext.m_currentElemDepth;
7f561c08de6b Initial load
duke
parents:
diff changeset
  2160
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2161
        pushed = m_prefixMap.pushNamespace(prefix, uri, pushDepth);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2162
7f561c08de6b Initial load
duke
parents:
diff changeset
  2163
        if (pushed)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2164
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2165
            /* Brian M.: don't know if we really needto do this. The
7f561c08de6b Initial load
duke
parents:
diff changeset
  2166
             * callers of this object should have injected both
7f561c08de6b Initial load
duke
parents:
diff changeset
  2167
             * startPrefixMapping and the attributes.  We are
7f561c08de6b Initial load
duke
parents:
diff changeset
  2168
             * just covering our butt here.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2169
             */
7f561c08de6b Initial load
duke
parents:
diff changeset
  2170
            String name;
7f561c08de6b Initial load
duke
parents:
diff changeset
  2171
            if (EMPTYSTRING.equals(prefix))
7f561c08de6b Initial load
duke
parents:
diff changeset
  2172
            {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2173
                name = "xmlns";
7f561c08de6b Initial load
duke
parents:
diff changeset
  2174
                addAttributeAlways(XMLNS_URI, name, name, "CDATA", uri, false);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2175
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2176
            else
7f561c08de6b Initial load
duke
parents:
diff changeset
  2177
            {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2178
                if (!EMPTYSTRING.equals(uri))
7f561c08de6b Initial load
duke
parents:
diff changeset
  2179
                    // hack for XSLTC attribset16 test
7f561c08de6b Initial load
duke
parents:
diff changeset
  2180
                { // that maps ns1 prefix to "" URI
7f561c08de6b Initial load
duke
parents:
diff changeset
  2181
                    name = "xmlns:" + prefix;
7f561c08de6b Initial load
duke
parents:
diff changeset
  2182
7f561c08de6b Initial load
duke
parents:
diff changeset
  2183
                    /* for something like xmlns:abc="w3.pretend.org"
7f561c08de6b Initial load
duke
parents:
diff changeset
  2184
                     *  the      uri is the value, that is why we pass it in the
7f561c08de6b Initial load
duke
parents:
diff changeset
  2185
                     * value, or 5th slot of addAttributeAlways()
7f561c08de6b Initial load
duke
parents:
diff changeset
  2186
                     */
7f561c08de6b Initial load
duke
parents:
diff changeset
  2187
                    addAttributeAlways(XMLNS_URI, prefix, name, "CDATA", uri, false);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2188
                }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2189
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2190
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2191
        return pushed;
7f561c08de6b Initial load
duke
parents:
diff changeset
  2192
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2193
7f561c08de6b Initial load
duke
parents:
diff changeset
  2194
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  2195
     * Receive notification of an XML comment anywhere in the document. This
7f561c08de6b Initial load
duke
parents:
diff changeset
  2196
     * callback will be used for comments inside or outside the document
7f561c08de6b Initial load
duke
parents:
diff changeset
  2197
     * element, including comments in the external DTD subset (if read).
7f561c08de6b Initial load
duke
parents:
diff changeset
  2198
     * @param ch An array holding the characters in the comment.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2199
     * @param start The starting position in the array.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2200
     * @param length The number of characters to use from the array.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2201
     * @throws org.xml.sax.SAXException The application may raise an exception.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2202
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
  2203
    public void comment(char ch[], int start, int length)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2204
        throws org.xml.sax.SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
  2205
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2206
7f561c08de6b Initial load
duke
parents:
diff changeset
  2207
        int start_old = start;
7f561c08de6b Initial load
duke
parents:
diff changeset
  2208
        if (m_inEntityRef)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2209
            return;
7f561c08de6b Initial load
duke
parents:
diff changeset
  2210
        if (m_elemContext.m_startTagOpen)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2211
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2212
            closeStartTag();
7f561c08de6b Initial load
duke
parents:
diff changeset
  2213
            m_elemContext.m_startTagOpen = false;
7f561c08de6b Initial load
duke
parents:
diff changeset
  2214
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2215
        else if (m_needToCallStartDocument)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2216
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2217
            startDocumentInternal();
7f561c08de6b Initial load
duke
parents:
diff changeset
  2218
            m_needToCallStartDocument = false;
7f561c08de6b Initial load
duke
parents:
diff changeset
  2219
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2220
7f561c08de6b Initial load
duke
parents:
diff changeset
  2221
        try
7f561c08de6b Initial load
duke
parents:
diff changeset
  2222
        {
12458
d601e4bba306 7160380: Sync JDK8 with JAXP 1.4.5
joehw
parents: 12457
diff changeset
  2223
            if (shouldIndent() && m_isStandalone)
6
7f561c08de6b Initial load
duke
parents:
diff changeset
  2224
                indent();
7f561c08de6b Initial load
duke
parents:
diff changeset
  2225
7f561c08de6b Initial load
duke
parents:
diff changeset
  2226
            final int limit = start + length;
7f561c08de6b Initial load
duke
parents:
diff changeset
  2227
            boolean wasDash = false;
7f561c08de6b Initial load
duke
parents:
diff changeset
  2228
            if (m_cdataTagOpen)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2229
                closeCDATA();
12458
d601e4bba306 7160380: Sync JDK8 with JAXP 1.4.5
joehw
parents: 12457
diff changeset
  2230
d601e4bba306 7160380: Sync JDK8 with JAXP 1.4.5
joehw
parents: 12457
diff changeset
  2231
            if (shouldIndent() && !m_isStandalone)
d601e4bba306 7160380: Sync JDK8 with JAXP 1.4.5
joehw
parents: 12457
diff changeset
  2232
                indent();
d601e4bba306 7160380: Sync JDK8 with JAXP 1.4.5
joehw
parents: 12457
diff changeset
  2233
6
7f561c08de6b Initial load
duke
parents:
diff changeset
  2234
            final java.io.Writer writer = m_writer;
7f561c08de6b Initial load
duke
parents:
diff changeset
  2235
            writer.write(COMMENT_BEGIN);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2236
            // Detect occurrences of two consecutive dashes, handle as necessary.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2237
            for (int i = start; i < limit; i++)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2238
            {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2239
                if (wasDash && ch[i] == '-')
7f561c08de6b Initial load
duke
parents:
diff changeset
  2240
                {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2241
                    writer.write(ch, start, i - start);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2242
                    writer.write(" -");
7f561c08de6b Initial load
duke
parents:
diff changeset
  2243
                    start = i + 1;
7f561c08de6b Initial load
duke
parents:
diff changeset
  2244
                }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2245
                wasDash = (ch[i] == '-');
7f561c08de6b Initial load
duke
parents:
diff changeset
  2246
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2247
7f561c08de6b Initial load
duke
parents:
diff changeset
  2248
            // if we have some chars in the comment
7f561c08de6b Initial load
duke
parents:
diff changeset
  2249
            if (length > 0)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2250
            {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2251
                // Output the remaining characters (if any)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2252
                final int remainingChars = (limit - start);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2253
                if (remainingChars > 0)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2254
                    writer.write(ch, start, remainingChars);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2255
                // Protect comment end from a single trailing dash
7f561c08de6b Initial load
duke
parents:
diff changeset
  2256
                if (ch[limit - 1] == '-')
7f561c08de6b Initial load
duke
parents:
diff changeset
  2257
                    writer.write(' ');
7f561c08de6b Initial load
duke
parents:
diff changeset
  2258
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2259
            writer.write(COMMENT_END);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2260
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2261
        catch (IOException e)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2262
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2263
            throw new SAXException(e);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2264
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2265
12458
d601e4bba306 7160380: Sync JDK8 with JAXP 1.4.5
joehw
parents: 12457
diff changeset
  2266
        /*
d601e4bba306 7160380: Sync JDK8 with JAXP 1.4.5
joehw
parents: 12457
diff changeset
  2267
         * Don't write out any indentation whitespace now,
d601e4bba306 7160380: Sync JDK8 with JAXP 1.4.5
joehw
parents: 12457
diff changeset
  2268
         * because there may be non-whitespace text after this.
d601e4bba306 7160380: Sync JDK8 with JAXP 1.4.5
joehw
parents: 12457
diff changeset
  2269
         *
d601e4bba306 7160380: Sync JDK8 with JAXP 1.4.5
joehw
parents: 12457
diff changeset
  2270
         * Simply mark that at this point if we do decide
d601e4bba306 7160380: Sync JDK8 with JAXP 1.4.5
joehw
parents: 12457
diff changeset
  2271
         * to indent that we should
d601e4bba306 7160380: Sync JDK8 with JAXP 1.4.5
joehw
parents: 12457
diff changeset
  2272
         * add a newline on the end of the current line before
d601e4bba306 7160380: Sync JDK8 with JAXP 1.4.5
joehw
parents: 12457
diff changeset
  2273
         * the indentation at the start of the next line.
d601e4bba306 7160380: Sync JDK8 with JAXP 1.4.5
joehw
parents: 12457
diff changeset
  2274
         */
6
7f561c08de6b Initial load
duke
parents:
diff changeset
  2275
        m_startNewLine = true;
7f561c08de6b Initial load
duke
parents:
diff changeset
  2276
        // time to generate comment event
7f561c08de6b Initial load
duke
parents:
diff changeset
  2277
        if (m_tracer != null)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2278
            super.fireCommentEvent(ch, start_old,length);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2279
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2280
7f561c08de6b Initial load
duke
parents:
diff changeset
  2281
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  2282
     * Report the end of a CDATA section.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2283
     * @throws org.xml.sax.SAXException The application may raise an exception.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2284
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  2285
     *  @see  #startCDATA
7f561c08de6b Initial load
duke
parents:
diff changeset
  2286
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
  2287
    public void endCDATA() throws org.xml.sax.SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
  2288
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2289
        if (m_cdataTagOpen)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2290
            closeCDATA();
7f561c08de6b Initial load
duke
parents:
diff changeset
  2291
        m_cdataStartCalled = false;
7f561c08de6b Initial load
duke
parents:
diff changeset
  2292
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2293
7f561c08de6b Initial load
duke
parents:
diff changeset
  2294
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  2295
     * Report the end of DTD declarations.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2296
     * @throws org.xml.sax.SAXException The application may raise an exception.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2297
     * @see #startDTD
7f561c08de6b Initial load
duke
parents:
diff changeset
  2298
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
  2299
    public void endDTD() throws org.xml.sax.SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
  2300
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2301
        try
7f561c08de6b Initial load
duke
parents:
diff changeset
  2302
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2303
            // Don't output doctype declaration until startDocumentInternal
7f561c08de6b Initial load
duke
parents:
diff changeset
  2304
            // has been called. Otherwise, it can appear before XML decl.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2305
            if (m_needToCallStartDocument) {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2306
                return;
7f561c08de6b Initial load
duke
parents:
diff changeset
  2307
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2308
7f561c08de6b Initial load
duke
parents:
diff changeset
  2309
            if (m_needToOutputDocTypeDecl)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2310
            {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2311
                outputDocTypeDecl(m_elemContext.m_elementName, false);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2312
                m_needToOutputDocTypeDecl = false;
7f561c08de6b Initial load
duke
parents:
diff changeset
  2313
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2314
            final java.io.Writer writer = m_writer;
7f561c08de6b Initial load
duke
parents:
diff changeset
  2315
            if (!m_inDoctype)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2316
                writer.write("]>");
7f561c08de6b Initial load
duke
parents:
diff changeset
  2317
            else
7f561c08de6b Initial load
duke
parents:
diff changeset
  2318
            {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2319
                writer.write('>');
7f561c08de6b Initial load
duke
parents:
diff changeset
  2320
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2321
7f561c08de6b Initial load
duke
parents:
diff changeset
  2322
            writer.write(m_lineSep, 0, m_lineSepLen);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2323
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2324
        catch (IOException e)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2325
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2326
            throw new SAXException(e);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2327
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2328
7f561c08de6b Initial load
duke
parents:
diff changeset
  2329
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2330
7f561c08de6b Initial load
duke
parents:
diff changeset
  2331
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  2332
     * End the scope of a prefix-URI Namespace mapping.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2333
     * @see org.xml.sax.ContentHandler#endPrefixMapping
7f561c08de6b Initial load
duke
parents:
diff changeset
  2334
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  2335
     * @param prefix The prefix that was being mapping.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2336
     * @throws org.xml.sax.SAXException The client may throw
7f561c08de6b Initial load
duke
parents:
diff changeset
  2337
     *            an exception during processing.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2338
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
  2339
    public void endPrefixMapping(String prefix) throws org.xml.sax.SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
  2340
    { // do nothing
7f561c08de6b Initial load
duke
parents:
diff changeset
  2341
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2342
7f561c08de6b Initial load
duke
parents:
diff changeset
  2343
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  2344
     * Receive notification of ignorable whitespace in element content.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2345
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  2346
     * Not sure how to get this invoked quite yet.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2347
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  2348
     * @param ch The characters from the XML document.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2349
     * @param start The start position in the array.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2350
     * @param length The number of characters to read from the array.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2351
     * @throws org.xml.sax.SAXException Any SAX exception, possibly
7f561c08de6b Initial load
duke
parents:
diff changeset
  2352
     *            wrapping another exception.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2353
     * @see #characters
7f561c08de6b Initial load
duke
parents:
diff changeset
  2354
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  2355
     * @throws org.xml.sax.SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
  2356
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
  2357
    public void ignorableWhitespace(char ch[], int start, int length)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2358
        throws org.xml.sax.SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
  2359
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2360
7f561c08de6b Initial load
duke
parents:
diff changeset
  2361
        if (0 == length)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2362
            return;
7f561c08de6b Initial load
duke
parents:
diff changeset
  2363
        characters(ch, start, length);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2364
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2365
7f561c08de6b Initial load
duke
parents:
diff changeset
  2366
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  2367
     * Receive notification of a skipped entity.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2368
     * @see org.xml.sax.ContentHandler#skippedEntity
7f561c08de6b Initial load
duke
parents:
diff changeset
  2369
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  2370
     * @param name The name of the skipped entity.  If it is a
7f561c08de6b Initial load
duke
parents:
diff changeset
  2371
     *       parameter                   entity, the name will begin with '%',
7f561c08de6b Initial load
duke
parents:
diff changeset
  2372
     * and if it is the external DTD subset, it will be the string
7f561c08de6b Initial load
duke
parents:
diff changeset
  2373
     * "[dtd]".
7f561c08de6b Initial load
duke
parents:
diff changeset
  2374
     * @throws org.xml.sax.SAXException Any SAX exception, possibly wrapping
7f561c08de6b Initial load
duke
parents:
diff changeset
  2375
     * another exception.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2376
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
  2377
    public void skippedEntity(String name) throws org.xml.sax.SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
  2378
    { // TODO: Should handle
7f561c08de6b Initial load
duke
parents:
diff changeset
  2379
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2380
7f561c08de6b Initial load
duke
parents:
diff changeset
  2381
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  2382
     * Report the start of a CDATA section.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2383
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  2384
     * @throws org.xml.sax.SAXException The application may raise an exception.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2385
     * @see #endCDATA
7f561c08de6b Initial load
duke
parents:
diff changeset
  2386
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
  2387
    public void startCDATA() throws org.xml.sax.SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
  2388
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2389
        m_cdataStartCalled = true;
7f561c08de6b Initial load
duke
parents:
diff changeset
  2390
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2391
7f561c08de6b Initial load
duke
parents:
diff changeset
  2392
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  2393
     * Report the beginning of an entity.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2394
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  2395
     * The start and end of the document entity are not reported.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2396
     * The start and end of the external DTD subset are reported
7f561c08de6b Initial load
duke
parents:
diff changeset
  2397
     * using the pseudo-name "[dtd]".  All other events must be
7f561c08de6b Initial load
duke
parents:
diff changeset
  2398
     * properly nested within start/end entity events.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2399
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  2400
     * @param name The name of the entity.  If it is a parameter
7f561c08de6b Initial load
duke
parents:
diff changeset
  2401
     *        entity, the name will begin with '%'.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2402
     * @throws org.xml.sax.SAXException The application may raise an exception.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2403
     * @see #endEntity
7f561c08de6b Initial load
duke
parents:
diff changeset
  2404
     * @see org.xml.sax.ext.DeclHandler#internalEntityDecl
7f561c08de6b Initial load
duke
parents:
diff changeset
  2405
     * @see org.xml.sax.ext.DeclHandler#externalEntityDecl
7f561c08de6b Initial load
duke
parents:
diff changeset
  2406
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
  2407
    public void startEntity(String name) throws org.xml.sax.SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
  2408
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2409
        if (name.equals("[dtd]"))
7f561c08de6b Initial load
duke
parents:
diff changeset
  2410
            m_inExternalDTD = true;
7f561c08de6b Initial load
duke
parents:
diff changeset
  2411
7f561c08de6b Initial load
duke
parents:
diff changeset
  2412
        if (!m_expandDTDEntities && !m_inExternalDTD) {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2413
            /* Only leave the entity as-is if
7f561c08de6b Initial load
duke
parents:
diff changeset
  2414
             * we've been told not to expand them
7f561c08de6b Initial load
duke
parents:
diff changeset
  2415
             * and this is not the magic [dtd] name.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2416
             */
7f561c08de6b Initial load
duke
parents:
diff changeset
  2417
            startNonEscaping();
7f561c08de6b Initial load
duke
parents:
diff changeset
  2418
            characters("&" + name + ';');
7f561c08de6b Initial load
duke
parents:
diff changeset
  2419
            endNonEscaping();
7f561c08de6b Initial load
duke
parents:
diff changeset
  2420
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2421
7f561c08de6b Initial load
duke
parents:
diff changeset
  2422
        m_inEntityRef = true;
7f561c08de6b Initial load
duke
parents:
diff changeset
  2423
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2424
7f561c08de6b Initial load
duke
parents:
diff changeset
  2425
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  2426
     * For the enclosing elements starting tag write out
7f561c08de6b Initial load
duke
parents:
diff changeset
  2427
     * out any attributes followed by ">"
7f561c08de6b Initial load
duke
parents:
diff changeset
  2428
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  2429
     * @throws org.xml.sax.SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
  2430
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
  2431
    protected void closeStartTag() throws SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
  2432
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2433
        if (m_elemContext.m_startTagOpen)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2434
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2435
7f561c08de6b Initial load
duke
parents:
diff changeset
  2436
            try
7f561c08de6b Initial load
duke
parents:
diff changeset
  2437
            {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2438
                if (m_tracer != null)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2439
                    super.fireStartElem(m_elemContext.m_elementName);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2440
                int nAttrs = m_attributes.getLength();
7f561c08de6b Initial load
duke
parents:
diff changeset
  2441
                if (nAttrs > 0)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2442
                {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2443
                     processAttributes(m_writer, nAttrs);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2444
                    // clear attributes object for re-use with next element
7f561c08de6b Initial load
duke
parents:
diff changeset
  2445
                    m_attributes.clear();
7f561c08de6b Initial load
duke
parents:
diff changeset
  2446
                }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2447
                m_writer.write('>');
7f561c08de6b Initial load
duke
parents:
diff changeset
  2448
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2449
            catch (IOException e)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2450
            {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2451
                throw new SAXException(e);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2452
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2453
7f561c08de6b Initial load
duke
parents:
diff changeset
  2454
            /* whether Xalan or XSLTC, we have the prefix mappings now, so
7f561c08de6b Initial load
duke
parents:
diff changeset
  2455
             * lets determine if the current element is specified in the cdata-
7f561c08de6b Initial load
duke
parents:
diff changeset
  2456
             * section-elements list.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2457
             */
7f561c08de6b Initial load
duke
parents:
diff changeset
  2458
            if (m_cdataSectionElements != null)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2459
                m_elemContext.m_isCdataSection = isCdataSection();
7f561c08de6b Initial load
duke
parents:
diff changeset
  2460
7f561c08de6b Initial load
duke
parents:
diff changeset
  2461
            if (m_doIndent)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2462
            {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2463
                m_isprevtext = false;
7f561c08de6b Initial load
duke
parents:
diff changeset
  2464
                m_preserves.push(m_ispreserve);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2465
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2466
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2467
7f561c08de6b Initial load
duke
parents:
diff changeset
  2468
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2469
7f561c08de6b Initial load
duke
parents:
diff changeset
  2470
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  2471
     * Report the start of DTD declarations, if any.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2472
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  2473
     * Any declarations are assumed to be in the internal subset unless
7f561c08de6b Initial load
duke
parents:
diff changeset
  2474
     * otherwise indicated.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2475
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  2476
     * @param name The document type name.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2477
     * @param publicId The declared public identifier for the
7f561c08de6b Initial load
duke
parents:
diff changeset
  2478
     *        external DTD subset, or null if none was declared.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2479
     * @param systemId The declared system identifier for the
7f561c08de6b Initial load
duke
parents:
diff changeset
  2480
     *        external DTD subset, or null if none was declared.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2481
     * @throws org.xml.sax.SAXException The application may raise an
7f561c08de6b Initial load
duke
parents:
diff changeset
  2482
     *            exception.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2483
     * @see #endDTD
7f561c08de6b Initial load
duke
parents:
diff changeset
  2484
     * @see #startEntity
7f561c08de6b Initial load
duke
parents:
diff changeset
  2485
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
  2486
    public void startDTD(String name, String publicId, String systemId)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2487
        throws org.xml.sax.SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
  2488
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2489
        setDoctypeSystem(systemId);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2490
        setDoctypePublic(publicId);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2491
7f561c08de6b Initial load
duke
parents:
diff changeset
  2492
        m_elemContext.m_elementName = name;
7f561c08de6b Initial load
duke
parents:
diff changeset
  2493
        m_inDoctype = true;
7f561c08de6b Initial load
duke
parents:
diff changeset
  2494
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2495
7f561c08de6b Initial load
duke
parents:
diff changeset
  2496
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  2497
     * Returns the m_indentAmount.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2498
     * @return int
7f561c08de6b Initial load
duke
parents:
diff changeset
  2499
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
  2500
    public int getIndentAmount()
7f561c08de6b Initial load
duke
parents:
diff changeset
  2501
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2502
        return m_indentAmount;
7f561c08de6b Initial load
duke
parents:
diff changeset
  2503
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2504
7f561c08de6b Initial load
duke
parents:
diff changeset
  2505
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  2506
     * Sets the m_indentAmount.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2507
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  2508
     * @param m_indentAmount The m_indentAmount to set
7f561c08de6b Initial load
duke
parents:
diff changeset
  2509
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
  2510
    public void setIndentAmount(int m_indentAmount)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2511
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2512
        this.m_indentAmount = m_indentAmount;
7f561c08de6b Initial load
duke
parents:
diff changeset
  2513
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2514
7f561c08de6b Initial load
duke
parents:
diff changeset
  2515
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  2516
     * Tell if, based on space preservation constraints and the doIndent property,
7f561c08de6b Initial load
duke
parents:
diff changeset
  2517
     * if an indent should occur.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2518
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  2519
     * @return True if an indent should occur.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2520
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
  2521
    protected boolean shouldIndent()
7f561c08de6b Initial load
duke
parents:
diff changeset
  2522
    {
12458
d601e4bba306 7160380: Sync JDK8 with JAXP 1.4.5
joehw
parents: 12457
diff changeset
  2523
        return m_doIndent && (!m_ispreserve && !m_isprevtext) && (m_elemContext.m_currentElemDepth > 0 || m_isStandalone);
6
7f561c08de6b Initial load
duke
parents:
diff changeset
  2524
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2525
7f561c08de6b Initial load
duke
parents:
diff changeset
  2526
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  2527
     * Searches for the list of qname properties with the specified key in the
7f561c08de6b Initial load
duke
parents:
diff changeset
  2528
     * property list. If the key is not found in this property list, the default
7f561c08de6b Initial load
duke
parents:
diff changeset
  2529
     * property list, and its defaults, recursively, are then checked. The
7f561c08de6b Initial load
duke
parents:
diff changeset
  2530
     * method returns <code>null</code> if the property is not found.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2531
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  2532
     * @param   key   the property key.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2533
     * @param props the list of properties to search in.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2534
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  2535
     * Sets the vector of local-name/URI pairs of the cdata section elements
7f561c08de6b Initial load
duke
parents:
diff changeset
  2536
     * specified in the cdata-section-elements property.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2537
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  2538
     * This method is essentially a copy of getQNameProperties() from
7f561c08de6b Initial load
duke
parents:
diff changeset
  2539
     * OutputProperties. Eventually this method should go away and a call
7f561c08de6b Initial load
duke
parents:
diff changeset
  2540
     * to setCdataSectionElements(Vector v) should be made directly.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2541
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
  2542
    private void setCdataSectionElements(String key, Properties props)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2543
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2544
7f561c08de6b Initial load
duke
parents:
diff changeset
  2545
        String s = props.getProperty(key);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2546
7f561c08de6b Initial load
duke
parents:
diff changeset
  2547
        if (null != s)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2548
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2549
            // Vector of URI/LocalName pairs
7f561c08de6b Initial load
duke
parents:
diff changeset
  2550
            Vector v = new Vector();
7f561c08de6b Initial load
duke
parents:
diff changeset
  2551
            int l = s.length();
7f561c08de6b Initial load
duke
parents:
diff changeset
  2552
            boolean inCurly = false;
7f561c08de6b Initial load
duke
parents:
diff changeset
  2553
            StringBuffer buf = new StringBuffer();
7f561c08de6b Initial load
duke
parents:
diff changeset
  2554
7f561c08de6b Initial load
duke
parents:
diff changeset
  2555
            // parse through string, breaking on whitespaces.  I do this instead
7f561c08de6b Initial load
duke
parents:
diff changeset
  2556
            // of a tokenizer so I can track whitespace inside of curly brackets,
7f561c08de6b Initial load
duke
parents:
diff changeset
  2557
            // which theoretically shouldn't happen if they contain legal URLs.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2558
            for (int i = 0; i < l; i++)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2559
            {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2560
                char c = s.charAt(i);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2561
7f561c08de6b Initial load
duke
parents:
diff changeset
  2562
                if (Character.isWhitespace(c))
7f561c08de6b Initial load
duke
parents:
diff changeset
  2563
                {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2564
                    if (!inCurly)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2565
                    {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2566
                        if (buf.length() > 0)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2567
                        {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2568
                            addCdataSectionElement(buf.toString(), v);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2569
                            buf.setLength(0);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2570
                        }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2571
                        continue;
7f561c08de6b Initial load
duke
parents:
diff changeset
  2572
                    }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2573
                }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2574
                else if ('{' == c)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2575
                    inCurly = true;
7f561c08de6b Initial load
duke
parents:
diff changeset
  2576
                else if ('}' == c)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2577
                    inCurly = false;
7f561c08de6b Initial load
duke
parents:
diff changeset
  2578
7f561c08de6b Initial load
duke
parents:
diff changeset
  2579
                buf.append(c);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2580
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2581
7f561c08de6b Initial load
duke
parents:
diff changeset
  2582
            if (buf.length() > 0)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2583
            {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2584
                addCdataSectionElement(buf.toString(), v);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2585
                buf.setLength(0);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2586
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2587
            // call the official, public method to set the collected names
7f561c08de6b Initial load
duke
parents:
diff changeset
  2588
            setCdataSectionElements(v);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2589
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2590
7f561c08de6b Initial load
duke
parents:
diff changeset
  2591
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2592
7f561c08de6b Initial load
duke
parents:
diff changeset
  2593
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  2594
     * Adds a URI/LocalName pair of strings to the list.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2595
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  2596
     * @param URI_and_localName String of the form "{uri}local" or "local"
7f561c08de6b Initial load
duke
parents:
diff changeset
  2597
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  2598
     * @return a QName object
7f561c08de6b Initial load
duke
parents:
diff changeset
  2599
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
  2600
    private void addCdataSectionElement(String URI_and_localName, Vector v)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2601
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2602
7f561c08de6b Initial load
duke
parents:
diff changeset
  2603
        StringTokenizer tokenizer =
7f561c08de6b Initial load
duke
parents:
diff changeset
  2604
            new StringTokenizer(URI_and_localName, "{}", false);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2605
        String s1 = tokenizer.nextToken();
7f561c08de6b Initial load
duke
parents:
diff changeset
  2606
        String s2 = tokenizer.hasMoreTokens() ? tokenizer.nextToken() : null;
7f561c08de6b Initial load
duke
parents:
diff changeset
  2607
7f561c08de6b Initial load
duke
parents:
diff changeset
  2608
        if (null == s2)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2609
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2610
            // add null URI and the local name
7f561c08de6b Initial load
duke
parents:
diff changeset
  2611
            v.addElement(null);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2612
            v.addElement(s1);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2613
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2614
        else
7f561c08de6b Initial load
duke
parents:
diff changeset
  2615
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2616
            // add URI, then local name
7f561c08de6b Initial load
duke
parents:
diff changeset
  2617
            v.addElement(s1);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2618
            v.addElement(s2);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2619
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2620
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2621
7f561c08de6b Initial load
duke
parents:
diff changeset
  2622
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  2623
     * Remembers the cdata sections specified in the cdata-section-elements.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2624
     * The "official way to set URI and localName pairs.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2625
     * This method should be used by both Xalan and XSLTC.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2626
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  2627
     * @param URI_and_localNames a vector of pairs of Strings (URI/local)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2628
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
  2629
    public void setCdataSectionElements(Vector URI_and_localNames)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2630
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2631
        m_cdataSectionElements = URI_and_localNames;
7f561c08de6b Initial load
duke
parents:
diff changeset
  2632
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2633
7f561c08de6b Initial load
duke
parents:
diff changeset
  2634
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  2635
     * Makes sure that the namespace URI for the given qualified attribute name
7f561c08de6b Initial load
duke
parents:
diff changeset
  2636
     * is declared.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2637
     * @param ns the namespace URI
7f561c08de6b Initial load
duke
parents:
diff changeset
  2638
     * @param rawName the qualified name
7f561c08de6b Initial load
duke
parents:
diff changeset
  2639
     * @return returns null if no action is taken, otherwise it returns the
7f561c08de6b Initial load
duke
parents:
diff changeset
  2640
     * prefix used in declaring the namespace.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2641
     * @throws SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
  2642
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
  2643
    protected String ensureAttributesNamespaceIsDeclared(
7f561c08de6b Initial load
duke
parents:
diff changeset
  2644
        String ns,
7f561c08de6b Initial load
duke
parents:
diff changeset
  2645
        String localName,
7f561c08de6b Initial load
duke
parents:
diff changeset
  2646
        String rawName)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2647
        throws org.xml.sax.SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
  2648
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2649
7f561c08de6b Initial load
duke
parents:
diff changeset
  2650
        if (ns != null && ns.length() > 0)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2651
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2652
7f561c08de6b Initial load
duke
parents:
diff changeset
  2653
            // extract the prefix in front of the raw name
7f561c08de6b Initial load
duke
parents:
diff changeset
  2654
            int index = 0;
7f561c08de6b Initial load
duke
parents:
diff changeset
  2655
            String prefixFromRawName =
7f561c08de6b Initial load
duke
parents:
diff changeset
  2656
                (index = rawName.indexOf(":")) < 0
7f561c08de6b Initial load
duke
parents:
diff changeset
  2657
                    ? ""
7f561c08de6b Initial load
duke
parents:
diff changeset
  2658
                    : rawName.substring(0, index);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2659
7f561c08de6b Initial load
duke
parents:
diff changeset
  2660
            if (index > 0)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2661
            {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2662
                // we have a prefix, lets see if it maps to a namespace
7f561c08de6b Initial load
duke
parents:
diff changeset
  2663
                String uri = m_prefixMap.lookupNamespace(prefixFromRawName);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2664
                if (uri != null && uri.equals(ns))
7f561c08de6b Initial load
duke
parents:
diff changeset
  2665
                {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2666
                    // the prefix in the raw name is already maps to the given namespace uri
7f561c08de6b Initial load
duke
parents:
diff changeset
  2667
                    // so we don't need to do anything
7f561c08de6b Initial load
duke
parents:
diff changeset
  2668
                    return null;
7f561c08de6b Initial load
duke
parents:
diff changeset
  2669
                }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2670
                else
7f561c08de6b Initial load
duke
parents:
diff changeset
  2671
                {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2672
                    // The uri does not map to the prefix in the raw name,
7f561c08de6b Initial load
duke
parents:
diff changeset
  2673
                    // so lets make the mapping.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2674
                    this.startPrefixMapping(prefixFromRawName, ns, false);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2675
                    this.addAttribute(
7f561c08de6b Initial load
duke
parents:
diff changeset
  2676
                        "http://www.w3.org/2000/xmlns/",
7f561c08de6b Initial load
duke
parents:
diff changeset
  2677
                        prefixFromRawName,
7f561c08de6b Initial load
duke
parents:
diff changeset
  2678
                        "xmlns:" + prefixFromRawName,
7f561c08de6b Initial load
duke
parents:
diff changeset
  2679
                        "CDATA",
7f561c08de6b Initial load
duke
parents:
diff changeset
  2680
                        ns, false);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2681
                    return prefixFromRawName;
7f561c08de6b Initial load
duke
parents:
diff changeset
  2682
                }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2683
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2684
            else
7f561c08de6b Initial load
duke
parents:
diff changeset
  2685
            {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2686
                // we don't have a prefix in the raw name.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2687
                // Does the URI map to a prefix already?
7f561c08de6b Initial load
duke
parents:
diff changeset
  2688
                String prefix = m_prefixMap.lookupPrefix(ns);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2689
                if (prefix == null)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2690
                {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2691
                    // uri is not associated with a prefix,
7f561c08de6b Initial load
duke
parents:
diff changeset
  2692
                    // so lets generate a new prefix to use
7f561c08de6b Initial load
duke
parents:
diff changeset
  2693
                    prefix = m_prefixMap.generateNextPrefix();
7f561c08de6b Initial load
duke
parents:
diff changeset
  2694
                    this.startPrefixMapping(prefix, ns, false);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2695
                    this.addAttribute(
7f561c08de6b Initial load
duke
parents:
diff changeset
  2696
                        "http://www.w3.org/2000/xmlns/",
7f561c08de6b Initial load
duke
parents:
diff changeset
  2697
                        prefix,
7f561c08de6b Initial load
duke
parents:
diff changeset
  2698
                        "xmlns:" + prefix,
7f561c08de6b Initial load
duke
parents:
diff changeset
  2699
                        "CDATA",
7f561c08de6b Initial load
duke
parents:
diff changeset
  2700
                        ns, false);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2701
                }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2702
7f561c08de6b Initial load
duke
parents:
diff changeset
  2703
                return prefix;
7f561c08de6b Initial load
duke
parents:
diff changeset
  2704
7f561c08de6b Initial load
duke
parents:
diff changeset
  2705
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2706
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2707
        return null;
7f561c08de6b Initial load
duke
parents:
diff changeset
  2708
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2709
7f561c08de6b Initial load
duke
parents:
diff changeset
  2710
    void ensurePrefixIsDeclared(String ns, String rawName)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2711
        throws org.xml.sax.SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
  2712
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2713
7f561c08de6b Initial load
duke
parents:
diff changeset
  2714
        if (ns != null && ns.length() > 0)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2715
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2716
            int index;
7f561c08de6b Initial load
duke
parents:
diff changeset
  2717
            final boolean no_prefix = ((index = rawName.indexOf(":")) < 0);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2718
            String prefix = (no_prefix) ? "" : rawName.substring(0, index);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2719
7f561c08de6b Initial load
duke
parents:
diff changeset
  2720
            if (null != prefix)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2721
            {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2722
                String foundURI = m_prefixMap.lookupNamespace(prefix);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2723
7f561c08de6b Initial load
duke
parents:
diff changeset
  2724
                if ((null == foundURI) || !foundURI.equals(ns))
7f561c08de6b Initial load
duke
parents:
diff changeset
  2725
                {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2726
                    this.startPrefixMapping(prefix, ns);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2727
7f561c08de6b Initial load
duke
parents:
diff changeset
  2728
                    // Bugzilla1133: Generate attribute as well as namespace event.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2729
                    // SAX does expect both.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2730
7f561c08de6b Initial load
duke
parents:
diff changeset
  2731
                    this.addAttributeAlways(
7f561c08de6b Initial load
duke
parents:
diff changeset
  2732
                        "http://www.w3.org/2000/xmlns/",
7f561c08de6b Initial load
duke
parents:
diff changeset
  2733
                        no_prefix ? "xmlns" : prefix,  // local name
7f561c08de6b Initial load
duke
parents:
diff changeset
  2734
                        no_prefix ? "xmlns" : ("xmlns:"+ prefix), // qname
7f561c08de6b Initial load
duke
parents:
diff changeset
  2735
                        "CDATA",
7f561c08de6b Initial load
duke
parents:
diff changeset
  2736
                        ns,
7f561c08de6b Initial load
duke
parents:
diff changeset
  2737
                        false);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2738
                }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2739
7f561c08de6b Initial load
duke
parents:
diff changeset
  2740
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2741
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2742
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2743
7f561c08de6b Initial load
duke
parents:
diff changeset
  2744
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  2745
     * This method flushes any pending events, which can be startDocument()
7f561c08de6b Initial load
duke
parents:
diff changeset
  2746
     * closing the opening tag of an element, or closing an open CDATA section.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2747
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
  2748
    public void flushPending() throws SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
  2749
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2750
            if (m_needToCallStartDocument)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2751
            {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2752
                startDocumentInternal();
7f561c08de6b Initial load
duke
parents:
diff changeset
  2753
                m_needToCallStartDocument = false;
7f561c08de6b Initial load
duke
parents:
diff changeset
  2754
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2755
            if (m_elemContext.m_startTagOpen)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2756
            {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2757
                closeStartTag();
7f561c08de6b Initial load
duke
parents:
diff changeset
  2758
                m_elemContext.m_startTagOpen = false;
7f561c08de6b Initial load
duke
parents:
diff changeset
  2759
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2760
7f561c08de6b Initial load
duke
parents:
diff changeset
  2761
            if (m_cdataTagOpen)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2762
            {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2763
                closeCDATA();
7f561c08de6b Initial load
duke
parents:
diff changeset
  2764
                m_cdataTagOpen = false;
7f561c08de6b Initial load
duke
parents:
diff changeset
  2765
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2766
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2767
7f561c08de6b Initial load
duke
parents:
diff changeset
  2768
    public void setContentHandler(ContentHandler ch)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2769
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2770
        // this method is really only useful in the ToSAXHandler classes but it is
7f561c08de6b Initial load
duke
parents:
diff changeset
  2771
        // in the interface.  If the method defined here is ever called
7f561c08de6b Initial load
duke
parents:
diff changeset
  2772
        // we are probably in trouble.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2773
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2774
7f561c08de6b Initial load
duke
parents:
diff changeset
  2775
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  2776
     * Adds the given attribute to the set of attributes, even if there is
7f561c08de6b Initial load
duke
parents:
diff changeset
  2777
     * no currently open element. This is useful if a SAX startPrefixMapping()
7f561c08de6b Initial load
duke
parents:
diff changeset
  2778
     * should need to add an attribute before the element name is seen.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2779
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  2780
     * This method is a copy of its super classes method, except that some
7f561c08de6b Initial load
duke
parents:
diff changeset
  2781
     * tracing of events is done.  This is so the tracing is only done for
7f561c08de6b Initial load
duke
parents:
diff changeset
  2782
     * stream serializers, not for SAX ones.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2783
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  2784
     * @param uri the URI of the attribute
7f561c08de6b Initial load
duke
parents:
diff changeset
  2785
     * @param localName the local name of the attribute
7f561c08de6b Initial load
duke
parents:
diff changeset
  2786
     * @param rawName   the qualified name of the attribute
7f561c08de6b Initial load
duke
parents:
diff changeset
  2787
     * @param type the type of the attribute (probably CDATA)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2788
     * @param value the value of the attribute
7f561c08de6b Initial load
duke
parents:
diff changeset
  2789
     * @param xslAttribute true if this attribute is coming from an xsl:attribute element.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2790
     * @return true if the attribute value was added,
7f561c08de6b Initial load
duke
parents:
diff changeset
  2791
     * false if the attribute already existed and the value was
7f561c08de6b Initial load
duke
parents:
diff changeset
  2792
     * replaced with the new value.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2793
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
  2794
    public boolean addAttributeAlways(
7f561c08de6b Initial load
duke
parents:
diff changeset
  2795
        String uri,
7f561c08de6b Initial load
duke
parents:
diff changeset
  2796
        String localName,
7f561c08de6b Initial load
duke
parents:
diff changeset
  2797
        String rawName,
7f561c08de6b Initial load
duke
parents:
diff changeset
  2798
        String type,
7f561c08de6b Initial load
duke
parents:
diff changeset
  2799
        String value,
7f561c08de6b Initial load
duke
parents:
diff changeset
  2800
        boolean xslAttribute)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2801
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2802
        boolean was_added;
7f561c08de6b Initial load
duke
parents:
diff changeset
  2803
        int index;
7f561c08de6b Initial load
duke
parents:
diff changeset
  2804
        //if (uri == null || localName == null || uri.length() == 0)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2805
            index = m_attributes.getIndex(rawName);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2806
        // Don't use 'localName' as it gives incorrect value, rely only on 'rawName'
7f561c08de6b Initial load
duke
parents:
diff changeset
  2807
        /*else {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2808
            index = m_attributes.getIndex(uri, localName);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2809
        }*/
7f561c08de6b Initial load
duke
parents:
diff changeset
  2810
        if (index >= 0)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2811
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2812
            String old_value = null;
7f561c08de6b Initial load
duke
parents:
diff changeset
  2813
            if (m_tracer != null)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2814
            {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2815
                old_value = m_attributes.getValue(index);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2816
                if (value.equals(old_value))
7f561c08de6b Initial load
duke
parents:
diff changeset
  2817
                    old_value = null;
7f561c08de6b Initial load
duke
parents:
diff changeset
  2818
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2819
7f561c08de6b Initial load
duke
parents:
diff changeset
  2820
            /* We've seen the attribute before.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2821
             * We may have a null uri or localName, but all we really
7f561c08de6b Initial load
duke
parents:
diff changeset
  2822
             * want to re-set is the value anyway.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2823
             */
7f561c08de6b Initial load
duke
parents:
diff changeset
  2824
            m_attributes.setValue(index, value);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2825
            was_added = false;
7f561c08de6b Initial load
duke
parents:
diff changeset
  2826
            if (old_value != null){
7f561c08de6b Initial load
duke
parents:
diff changeset
  2827
                firePseudoAttributes();
7f561c08de6b Initial load
duke
parents:
diff changeset
  2828
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2829
7f561c08de6b Initial load
duke
parents:
diff changeset
  2830
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2831
        else
7f561c08de6b Initial load
duke
parents:
diff changeset
  2832
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2833
            // the attribute doesn't exist yet, create it
7f561c08de6b Initial load
duke
parents:
diff changeset
  2834
            if (xslAttribute)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2835
            {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2836
                /*
7f561c08de6b Initial load
duke
parents:
diff changeset
  2837
                 * This attribute is from an xsl:attribute element so we take some care in
7f561c08de6b Initial load
duke
parents:
diff changeset
  2838
                 * adding it, e.g.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2839
                 *   <elem1  foo:attr1="1" xmlns:foo="uri1">
7f561c08de6b Initial load
duke
parents:
diff changeset
  2840
                 *       <xsl:attribute name="foo:attr2">2</xsl:attribute>
7f561c08de6b Initial load
duke
parents:
diff changeset
  2841
                 *   </elem1>
7f561c08de6b Initial load
duke
parents:
diff changeset
  2842
                 *
7f561c08de6b Initial load
duke
parents:
diff changeset
  2843
                 * We are adding attr1 and attr2 both as attributes of elem1,
7f561c08de6b Initial load
duke
parents:
diff changeset
  2844
                 * and this code is adding attr2 (the xsl:attribute ).
7f561c08de6b Initial load
duke
parents:
diff changeset
  2845
                 * We could have a collision with the prefix like in the example above.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2846
                 */
7f561c08de6b Initial load
duke
parents:
diff changeset
  2847
7f561c08de6b Initial load
duke
parents:
diff changeset
  2848
                // In the example above, is there a prefix like foo ?
7f561c08de6b Initial load
duke
parents:
diff changeset
  2849
                final int colonIndex = rawName.indexOf(':');
7f561c08de6b Initial load
duke
parents:
diff changeset
  2850
                if (colonIndex > 0)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2851
                {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2852
                    String prefix = rawName.substring(0,colonIndex);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2853
                    NamespaceMappings.MappingRecord existing_mapping = m_prefixMap.getMappingFromPrefix(prefix);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2854
7f561c08de6b Initial load
duke
parents:
diff changeset
  2855
                    /* Before adding this attribute (foo:attr2),
7f561c08de6b Initial load
duke
parents:
diff changeset
  2856
                     * is the prefix for it (foo) already mapped at the current depth?
7f561c08de6b Initial load
duke
parents:
diff changeset
  2857
                     */
7f561c08de6b Initial load
duke
parents:
diff changeset
  2858
                    if (existing_mapping != null
7f561c08de6b Initial load
duke
parents:
diff changeset
  2859
                    && existing_mapping.m_declarationDepth == m_elemContext.m_currentElemDepth
7f561c08de6b Initial load
duke
parents:
diff changeset
  2860
                    && !existing_mapping.m_uri.equals(uri))
7f561c08de6b Initial load
duke
parents:
diff changeset
  2861
                    {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2862
                        /*
7f561c08de6b Initial load
duke
parents:
diff changeset
  2863
                         * There is an existing mapping of this prefix,
7f561c08de6b Initial load
duke
parents:
diff changeset
  2864
                         * it differs from the one we need,
7f561c08de6b Initial load
duke
parents:
diff changeset
  2865
                         * and unfortunately it is at the current depth so we
7f561c08de6b Initial load
duke
parents:
diff changeset
  2866
                         * can not over-ride it.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2867
                         */
7f561c08de6b Initial load
duke
parents:
diff changeset
  2868
7f561c08de6b Initial load
duke
parents:
diff changeset
  2869
                        /*
7f561c08de6b Initial load
duke
parents:
diff changeset
  2870
                         * Are we lucky enough that an existing other prefix maps to this URI ?
7f561c08de6b Initial load
duke
parents:
diff changeset
  2871
                         */
7f561c08de6b Initial load
duke
parents:
diff changeset
  2872
                        prefix = m_prefixMap.lookupPrefix(uri);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2873
                        if (prefix == null)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2874
                        {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2875
                            /* Unfortunately there is no existing prefix that happens to map to ours,
7f561c08de6b Initial load
duke
parents:
diff changeset
  2876
                             * so to avoid a prefix collision we must generated a new prefix to use.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2877
                             * This is OK because the prefix URI mapping
7f561c08de6b Initial load
duke
parents:
diff changeset
  2878
                             * defined in the xsl:attribute is short in scope,
7f561c08de6b Initial load
duke
parents:
diff changeset
  2879
                             * just the xsl:attribute element itself,
7f561c08de6b Initial load
duke
parents:
diff changeset
  2880
                             * and at this point in serialization the body of the
7f561c08de6b Initial load
duke
parents:
diff changeset
  2881
                             * xsl:attribute, if any, is just a String. Right?
7f561c08de6b Initial load
duke
parents:
diff changeset
  2882
                             *   . . . I sure hope so - Brian M.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2883
                             */
7f561c08de6b Initial load
duke
parents:
diff changeset
  2884
                            prefix = m_prefixMap.generateNextPrefix();
7f561c08de6b Initial load
duke
parents:
diff changeset
  2885
                        }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2886
7f561c08de6b Initial load
duke
parents:
diff changeset
  2887
                        rawName = prefix + ':' + localName;
7f561c08de6b Initial load
duke
parents:
diff changeset
  2888
                    }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2889
                }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2890
7f561c08de6b Initial load
duke
parents:
diff changeset
  2891
                try
7f561c08de6b Initial load
duke
parents:
diff changeset
  2892
                {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2893
                    /* This is our last chance to make sure the namespace for this
7f561c08de6b Initial load
duke
parents:
diff changeset
  2894
                     * attribute is declared, especially if we just generated an alternate
7f561c08de6b Initial load
duke
parents:
diff changeset
  2895
                     * prefix to avoid a collision (the new prefix/rawName will go out of scope
7f561c08de6b Initial load
duke
parents:
diff changeset
  2896
                     * soon and be lost ...  last chance here.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2897
                     */
7f561c08de6b Initial load
duke
parents:
diff changeset
  2898
                    String prefixUsed =
7f561c08de6b Initial load
duke
parents:
diff changeset
  2899
                        ensureAttributesNamespaceIsDeclared(
7f561c08de6b Initial load
duke
parents:
diff changeset
  2900
                            uri,
7f561c08de6b Initial load
duke
parents:
diff changeset
  2901
                            localName,
7f561c08de6b Initial load
duke
parents:
diff changeset
  2902
                            rawName);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2903
                }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2904
                catch (SAXException e)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2905
                {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2906
                    // TODO Auto-generated catch block
7f561c08de6b Initial load
duke
parents:
diff changeset
  2907
                    e.printStackTrace();
7f561c08de6b Initial load
duke
parents:
diff changeset
  2908
                }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2909
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2910
            m_attributes.addAttribute(uri, localName, rawName, type, value);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2911
            was_added = true;
7f561c08de6b Initial load
duke
parents:
diff changeset
  2912
            if (m_tracer != null){
7f561c08de6b Initial load
duke
parents:
diff changeset
  2913
                firePseudoAttributes();
7f561c08de6b Initial load
duke
parents:
diff changeset
  2914
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2915
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2916
        return was_added;
7f561c08de6b Initial load
duke
parents:
diff changeset
  2917
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2918
7f561c08de6b Initial load
duke
parents:
diff changeset
  2919
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  2920
     * To fire off the pseudo characters of attributes, as they currently
7f561c08de6b Initial load
duke
parents:
diff changeset
  2921
     * exist. This method should be called everytime an attribute is added,
7f561c08de6b Initial load
duke
parents:
diff changeset
  2922
     * or when an attribute value is changed, or an element is created.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2923
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
  2924
7f561c08de6b Initial load
duke
parents:
diff changeset
  2925
    protected void firePseudoAttributes()
7f561c08de6b Initial load
duke
parents:
diff changeset
  2926
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2927
        if (m_tracer != null)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2928
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2929
            try
7f561c08de6b Initial load
duke
parents:
diff changeset
  2930
            {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2931
                // flush out the "<elemName" if not already flushed
7f561c08de6b Initial load
duke
parents:
diff changeset
  2932
                m_writer.flush();
7f561c08de6b Initial load
duke
parents:
diff changeset
  2933
7f561c08de6b Initial load
duke
parents:
diff changeset
  2934
                // make a StringBuffer to write the name="value" pairs to.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2935
                StringBuffer sb = new StringBuffer();
7f561c08de6b Initial load
duke
parents:
diff changeset
  2936
                int nAttrs = m_attributes.getLength();
7f561c08de6b Initial load
duke
parents:
diff changeset
  2937
                if (nAttrs > 0)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2938
                {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2939
                    // make a writer that internally appends to the same
7f561c08de6b Initial load
duke
parents:
diff changeset
  2940
                    // StringBuffer
7f561c08de6b Initial load
duke
parents:
diff changeset
  2941
                    java.io.Writer writer =
7f561c08de6b Initial load
duke
parents:
diff changeset
  2942
                        new ToStream.WritertoStringBuffer(sb);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2943
7f561c08de6b Initial load
duke
parents:
diff changeset
  2944
                    processAttributes(writer, nAttrs);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2945
                    // Don't clear the attributes!
7f561c08de6b Initial load
duke
parents:
diff changeset
  2946
                    // We only want to see what would be written out
7f561c08de6b Initial load
duke
parents:
diff changeset
  2947
                    // at this point, we don't want to loose them.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2948
                }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2949
                sb.append('>');  // the potential > after the attributes.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2950
                // convert the StringBuffer to a char array and
7f561c08de6b Initial load
duke
parents:
diff changeset
  2951
                // emit the trace event that these characters "might"
7f561c08de6b Initial load
duke
parents:
diff changeset
  2952
                // be written
7f561c08de6b Initial load
duke
parents:
diff changeset
  2953
                char ch[] = sb.toString().toCharArray();
7f561c08de6b Initial load
duke
parents:
diff changeset
  2954
                m_tracer.fireGenerateEvent(
7f561c08de6b Initial load
duke
parents:
diff changeset
  2955
                    SerializerTrace.EVENTTYPE_OUTPUT_PSEUDO_CHARACTERS,
7f561c08de6b Initial load
duke
parents:
diff changeset
  2956
                    ch,
7f561c08de6b Initial load
duke
parents:
diff changeset
  2957
                    0,
7f561c08de6b Initial load
duke
parents:
diff changeset
  2958
                    ch.length);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2959
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2960
            catch (IOException ioe)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2961
            {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2962
                // ignore ?
7f561c08de6b Initial load
duke
parents:
diff changeset
  2963
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2964
            catch (SAXException se)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2965
            {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2966
                // ignore ?
7f561c08de6b Initial load
duke
parents:
diff changeset
  2967
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2968
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2969
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2970
7f561c08de6b Initial load
duke
parents:
diff changeset
  2971
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  2972
     * This inner class is used only to collect attribute values
7f561c08de6b Initial load
duke
parents:
diff changeset
  2973
     * written by the method writeAttrString() into a string buffer.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2974
     * In this manner trace events, and the real writing of attributes will use
7f561c08de6b Initial load
duke
parents:
diff changeset
  2975
     * the same code.
7f561c08de6b Initial load
duke
parents:
diff changeset
  2976
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
  2977
    private class WritertoStringBuffer extends java.io.Writer
7f561c08de6b Initial load
duke
parents:
diff changeset
  2978
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2979
        final private StringBuffer m_stringbuf;
7f561c08de6b Initial load
duke
parents:
diff changeset
  2980
        /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  2981
         * @see java.io.Writer#write(char[], int, int)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2982
         */
7f561c08de6b Initial load
duke
parents:
diff changeset
  2983
        WritertoStringBuffer(StringBuffer sb)
7f561c08de6b Initial load
duke
parents:
diff changeset
  2984
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2985
            m_stringbuf = sb;
7f561c08de6b Initial load
duke
parents:
diff changeset
  2986
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2987
7f561c08de6b Initial load
duke
parents:
diff changeset
  2988
        public void write(char[] arg0, int arg1, int arg2) throws IOException
7f561c08de6b Initial load
duke
parents:
diff changeset
  2989
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2990
            m_stringbuf.append(arg0, arg1, arg2);
7f561c08de6b Initial load
duke
parents:
diff changeset
  2991
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2992
        /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  2993
         * @see java.io.Writer#flush()
7f561c08de6b Initial load
duke
parents:
diff changeset
  2994
         */
7f561c08de6b Initial load
duke
parents:
diff changeset
  2995
        public void flush() throws IOException
7f561c08de6b Initial load
duke
parents:
diff changeset
  2996
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
  2997
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
  2998
        /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  2999
         * @see java.io.Writer#close()
7f561c08de6b Initial load
duke
parents:
diff changeset
  3000
         */
7f561c08de6b Initial load
duke
parents:
diff changeset
  3001
        public void close() throws IOException
7f561c08de6b Initial load
duke
parents:
diff changeset
  3002
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
  3003
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
  3004
7f561c08de6b Initial load
duke
parents:
diff changeset
  3005
        public void write(int i)
7f561c08de6b Initial load
duke
parents:
diff changeset
  3006
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
  3007
            m_stringbuf.append((char) i);
7f561c08de6b Initial load
duke
parents:
diff changeset
  3008
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
  3009
7f561c08de6b Initial load
duke
parents:
diff changeset
  3010
        public void write(String s)
7f561c08de6b Initial load
duke
parents:
diff changeset
  3011
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
  3012
            m_stringbuf.append(s);
7f561c08de6b Initial load
duke
parents:
diff changeset
  3013
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
  3014
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
  3015
7f561c08de6b Initial load
duke
parents:
diff changeset
  3016
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  3017
     * @see SerializationHandler#setTransformer(Transformer)
7f561c08de6b Initial load
duke
parents:
diff changeset
  3018
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
  3019
    public void setTransformer(Transformer transformer) {
7f561c08de6b Initial load
duke
parents:
diff changeset
  3020
        super.setTransformer(transformer);
7f561c08de6b Initial load
duke
parents:
diff changeset
  3021
        if (m_tracer != null
7f561c08de6b Initial load
duke
parents:
diff changeset
  3022
         && !(m_writer instanceof SerializerTraceWriter)  )
7f561c08de6b Initial load
duke
parents:
diff changeset
  3023
            m_writer = new SerializerTraceWriter(m_writer, m_tracer);
7f561c08de6b Initial load
duke
parents:
diff changeset
  3024
7f561c08de6b Initial load
duke
parents:
diff changeset
  3025
7f561c08de6b Initial load
duke
parents:
diff changeset
  3026
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
  3027
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  3028
     * Try's to reset the super class and reset this class for
7f561c08de6b Initial load
duke
parents:
diff changeset
  3029
     * re-use, so that you don't need to create a new serializer
7f561c08de6b Initial load
duke
parents:
diff changeset
  3030
     * (mostly for performance reasons).
7f561c08de6b Initial load
duke
parents:
diff changeset
  3031
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  3032
     * @return true if the class was successfuly reset.
7f561c08de6b Initial load
duke
parents:
diff changeset
  3033
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
  3034
    public boolean reset()
7f561c08de6b Initial load
duke
parents:
diff changeset
  3035
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
  3036
        boolean wasReset = false;
7f561c08de6b Initial load
duke
parents:
diff changeset
  3037
        if (super.reset())
7f561c08de6b Initial load
duke
parents:
diff changeset
  3038
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
  3039
            resetToStream();
7f561c08de6b Initial load
duke
parents:
diff changeset
  3040
            wasReset = true;
7f561c08de6b Initial load
duke
parents:
diff changeset
  3041
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
  3042
        return wasReset;
7f561c08de6b Initial load
duke
parents:
diff changeset
  3043
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
  3044
7f561c08de6b Initial load
duke
parents:
diff changeset
  3045
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  3046
     * Reset all of the fields owned by ToStream class
7f561c08de6b Initial load
duke
parents:
diff changeset
  3047
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  3048
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
  3049
    private void resetToStream()
7f561c08de6b Initial load
duke
parents:
diff changeset
  3050
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
  3051
         this.m_cdataStartCalled = false;
7f561c08de6b Initial load
duke
parents:
diff changeset
  3052
         /* The stream is being reset. It is one of
7f561c08de6b Initial load
duke
parents:
diff changeset
  3053
          * ToXMLStream, ToHTMLStream ... and this type can't be changed
7f561c08de6b Initial load
duke
parents:
diff changeset
  3054
          * so neither should m_charInfo which is associated with the
7f561c08de6b Initial load
duke
parents:
diff changeset
  3055
          * type of Stream. Just leave m_charInfo as-is for the next re-use.
7f561c08de6b Initial load
duke
parents:
diff changeset
  3056
          *
7f561c08de6b Initial load
duke
parents:
diff changeset
  3057
          */
7f561c08de6b Initial load
duke
parents:
diff changeset
  3058
         // this.m_charInfo = null; // don't set to null
7f561c08de6b Initial load
duke
parents:
diff changeset
  3059
7f561c08de6b Initial load
duke
parents:
diff changeset
  3060
         this.m_disableOutputEscapingStates.clear();
7f561c08de6b Initial load
duke
parents:
diff changeset
  3061
7f561c08de6b Initial load
duke
parents:
diff changeset
  3062
         this.m_escaping = true;
7f561c08de6b Initial load
duke
parents:
diff changeset
  3063
         // Leave m_format alone for now - Brian M.
7f561c08de6b Initial load
duke
parents:
diff changeset
  3064
         // this.m_format = null;
7f561c08de6b Initial load
duke
parents:
diff changeset
  3065
         this.m_inDoctype = false;
7f561c08de6b Initial load
duke
parents:
diff changeset
  3066
         this.m_ispreserve = false;
7f561c08de6b Initial load
duke
parents:
diff changeset
  3067
         this.m_ispreserve = false;
7f561c08de6b Initial load
duke
parents:
diff changeset
  3068
         this.m_isprevtext = false;
7f561c08de6b Initial load
duke
parents:
diff changeset
  3069
         this.m_isUTF8 = false; //  ?? used anywhere ??
7f561c08de6b Initial load
duke
parents:
diff changeset
  3070
         this.m_preserves.clear();
7f561c08de6b Initial load
duke
parents:
diff changeset
  3071
         this.m_shouldFlush = true;
7f561c08de6b Initial load
duke
parents:
diff changeset
  3072
         this.m_spaceBeforeClose = false;
7f561c08de6b Initial load
duke
parents:
diff changeset
  3073
         this.m_startNewLine = false;
7f561c08de6b Initial load
duke
parents:
diff changeset
  3074
         this.m_lineSepUse = true;
7f561c08de6b Initial load
duke
parents:
diff changeset
  3075
         // DON'T SET THE WRITER TO NULL, IT MAY BE REUSED !!
7f561c08de6b Initial load
duke
parents:
diff changeset
  3076
         // this.m_writer = null;
7f561c08de6b Initial load
duke
parents:
diff changeset
  3077
         this.m_expandDTDEntities = true;
7f561c08de6b Initial load
duke
parents:
diff changeset
  3078
7f561c08de6b Initial load
duke
parents:
diff changeset
  3079
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
  3080
7f561c08de6b Initial load
duke
parents:
diff changeset
  3081
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  3082
      * Sets the character encoding coming from the xsl:output encoding stylesheet attribute.
7f561c08de6b Initial load
duke
parents:
diff changeset
  3083
      * @param encoding the character encoding
7f561c08de6b Initial load
duke
parents:
diff changeset
  3084
      */
7f561c08de6b Initial load
duke
parents:
diff changeset
  3085
     public void setEncoding(String encoding)
7f561c08de6b Initial load
duke
parents:
diff changeset
  3086
     {
7f561c08de6b Initial load
duke
parents:
diff changeset
  3087
         String old = getEncoding();
7f561c08de6b Initial load
duke
parents:
diff changeset
  3088
         super.setEncoding(encoding);
7f561c08de6b Initial load
duke
parents:
diff changeset
  3089
         if (old == null || !old.equals(encoding)) {
7f561c08de6b Initial load
duke
parents:
diff changeset
  3090
            // If we have changed the setting of the
7f561c08de6b Initial load
duke
parents:
diff changeset
  3091
            m_encodingInfo = Encodings.getEncodingInfo(encoding);
7f561c08de6b Initial load
duke
parents:
diff changeset
  3092
7f561c08de6b Initial load
duke
parents:
diff changeset
  3093
            if (encoding != null && m_encodingInfo.name == null) {
7f561c08de6b Initial load
duke
parents:
diff changeset
  3094
                // We tried to get an EncodingInfo for Object for the given
7f561c08de6b Initial load
duke
parents:
diff changeset
  3095
                // encoding, but it came back with an internall null name
7f561c08de6b Initial load
duke
parents:
diff changeset
  3096
                // so the encoding is not supported by the JDK, issue a message.
7f561c08de6b Initial load
duke
parents:
diff changeset
  3097
                String msg = Utils.messages.createMessage(
7f561c08de6b Initial load
duke
parents:
diff changeset
  3098
                                MsgKey.ER_ENCODING_NOT_SUPPORTED,new Object[]{ encoding });
7f561c08de6b Initial load
duke
parents:
diff changeset
  3099
                try
7f561c08de6b Initial load
duke
parents:
diff changeset
  3100
                {
7f561c08de6b Initial load
duke
parents:
diff changeset
  3101
                        // Prepare to issue the warning message
7f561c08de6b Initial load
duke
parents:
diff changeset
  3102
                        Transformer tran = super.getTransformer();
7f561c08de6b Initial load
duke
parents:
diff changeset
  3103
                        if (tran != null) {
7f561c08de6b Initial load
duke
parents:
diff changeset
  3104
                                ErrorListener errHandler = tran.getErrorListener();
7f561c08de6b Initial load
duke
parents:
diff changeset
  3105
                                // Issue the warning message
7f561c08de6b Initial load
duke
parents:
diff changeset
  3106
                                if (null != errHandler && m_sourceLocator != null)
7f561c08de6b Initial load
duke
parents:
diff changeset
  3107
                                        errHandler.warning(new TransformerException(msg, m_sourceLocator));
7f561c08de6b Initial load
duke
parents:
diff changeset
  3108
                                else
7f561c08de6b Initial load
duke
parents:
diff changeset
  3109
                                        System.out.println(msg);
7f561c08de6b Initial load
duke
parents:
diff changeset
  3110
                    }
7f561c08de6b Initial load
duke
parents:
diff changeset
  3111
                        else
7f561c08de6b Initial load
duke
parents:
diff changeset
  3112
                                System.out.println(msg);
7f561c08de6b Initial load
duke
parents:
diff changeset
  3113
                }
7f561c08de6b Initial load
duke
parents:
diff changeset
  3114
                catch (Exception e){}
7f561c08de6b Initial load
duke
parents:
diff changeset
  3115
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
  3116
         }
7f561c08de6b Initial load
duke
parents:
diff changeset
  3117
         return;
7f561c08de6b Initial load
duke
parents:
diff changeset
  3118
     }
7f561c08de6b Initial load
duke
parents:
diff changeset
  3119
7f561c08de6b Initial load
duke
parents:
diff changeset
  3120
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  3121
     * Simple stack for boolean values.
7f561c08de6b Initial load
duke
parents:
diff changeset
  3122
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  3123
     * This class is a copy of the one in com.sun.org.apache.xml.internal.utils.
7f561c08de6b Initial load
duke
parents:
diff changeset
  3124
     * It exists to cut the serializers dependancy on that package.
7f561c08de6b Initial load
duke
parents:
diff changeset
  3125
     * A minor changes from that package are:
7f561c08de6b Initial load
duke
parents:
diff changeset
  3126
     * doesn't implement Clonable
7f561c08de6b Initial load
duke
parents:
diff changeset
  3127
     *
7f561c08de6b Initial load
duke
parents:
diff changeset
  3128
     * @xsl.usage internal
7f561c08de6b Initial load
duke
parents:
diff changeset
  3129
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
  3130
    static final class BoolStack
7f561c08de6b Initial load
duke
parents:
diff changeset
  3131
    {
7f561c08de6b Initial load
duke
parents:
diff changeset
  3132
7f561c08de6b Initial load
duke
parents:
diff changeset
  3133
      /** Array of boolean values          */
7f561c08de6b Initial load
duke
parents:
diff changeset
  3134
      private boolean m_values[];
7f561c08de6b Initial load
duke
parents:
diff changeset
  3135
7f561c08de6b Initial load
duke
parents:
diff changeset
  3136
      /** Array size allocated           */
7f561c08de6b Initial load
duke
parents:
diff changeset
  3137
      private int m_allocatedSize;
7f561c08de6b Initial load
duke
parents:
diff changeset
  3138
7f561c08de6b Initial load
duke
parents:
diff changeset
  3139
      /** Index into the array of booleans          */
7f561c08de6b Initial load
duke
parents:
diff changeset
  3140
      private int m_index;
7f561c08de6b Initial load
duke
parents:
diff changeset
  3141
7f561c08de6b Initial load
duke
parents:
diff changeset
  3142
      /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  3143
       * Default constructor.  Note that the default
7f561c08de6b Initial load
duke
parents:
diff changeset
  3144
       * block size is very small, for small lists.
7f561c08de6b Initial load
duke
parents:
diff changeset
  3145
       */
7f561c08de6b Initial load
duke
parents:
diff changeset
  3146
      public BoolStack()
7f561c08de6b Initial load
duke
parents:
diff changeset
  3147
      {
7f561c08de6b Initial load
duke
parents:
diff changeset
  3148
        this(32);
7f561c08de6b Initial load
duke
parents:
diff changeset
  3149
      }
7f561c08de6b Initial load
duke
parents:
diff changeset
  3150
7f561c08de6b Initial load
duke
parents:
diff changeset
  3151
      /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  3152
       * Construct a IntVector, using the given block size.
7f561c08de6b Initial load
duke
parents:
diff changeset
  3153
       *
7f561c08de6b Initial load
duke
parents:
diff changeset
  3154
       * @param size array size to allocate
7f561c08de6b Initial load
duke
parents:
diff changeset
  3155
       */
7f561c08de6b Initial load
duke
parents:
diff changeset
  3156
      public BoolStack(int size)
7f561c08de6b Initial load
duke
parents:
diff changeset
  3157
      {
7f561c08de6b Initial load
duke
parents:
diff changeset
  3158
7f561c08de6b Initial load
duke
parents:
diff changeset
  3159
        m_allocatedSize = size;
7f561c08de6b Initial load
duke
parents:
diff changeset
  3160
        m_values = new boolean[size];
7f561c08de6b Initial load
duke
parents:
diff changeset
  3161
        m_index = -1;
7f561c08de6b Initial load
duke
parents:
diff changeset
  3162
      }
7f561c08de6b Initial load
duke
parents:
diff changeset
  3163
7f561c08de6b Initial load
duke
parents:
diff changeset
  3164
      /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  3165
       * Get the length of the list.
7f561c08de6b Initial load
duke
parents:
diff changeset
  3166
       *
7f561c08de6b Initial load
duke
parents:
diff changeset
  3167
       * @return Current length of the list
7f561c08de6b Initial load
duke
parents:
diff changeset
  3168
       */
7f561c08de6b Initial load
duke
parents:
diff changeset
  3169
      public final int size()
7f561c08de6b Initial load
duke
parents:
diff changeset
  3170
      {
7f561c08de6b Initial load
duke
parents:
diff changeset
  3171
        return m_index + 1;
7f561c08de6b Initial load
duke
parents:
diff changeset
  3172
      }
7f561c08de6b Initial load
duke
parents:
diff changeset
  3173
7f561c08de6b Initial load
duke
parents:
diff changeset
  3174
      /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  3175
       * Clears the stack.
7f561c08de6b Initial load
duke
parents:
diff changeset
  3176
       *
7f561c08de6b Initial load
duke
parents:
diff changeset
  3177
       */
7f561c08de6b Initial load
duke
parents:
diff changeset
  3178
      public final void clear()
7f561c08de6b Initial load
duke
parents:
diff changeset
  3179
      {
7f561c08de6b Initial load
duke
parents:
diff changeset
  3180
        m_index = -1;
7f561c08de6b Initial load
duke
parents:
diff changeset
  3181
      }
7f561c08de6b Initial load
duke
parents:
diff changeset
  3182
7f561c08de6b Initial load
duke
parents:
diff changeset
  3183
      /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  3184
       * Pushes an item onto the top of this stack.
7f561c08de6b Initial load
duke
parents:
diff changeset
  3185
       *
7f561c08de6b Initial load
duke
parents:
diff changeset
  3186
       *
7f561c08de6b Initial load
duke
parents:
diff changeset
  3187
       * @param val the boolean to be pushed onto this stack.
7f561c08de6b Initial load
duke
parents:
diff changeset
  3188
       * @return  the <code>item</code> argument.
7f561c08de6b Initial load
duke
parents:
diff changeset
  3189
       */
7f561c08de6b Initial load
duke
parents:
diff changeset
  3190
      public final boolean push(boolean val)
7f561c08de6b Initial load
duke
parents:
diff changeset
  3191
      {
7f561c08de6b Initial load
duke
parents:
diff changeset
  3192
7f561c08de6b Initial load
duke
parents:
diff changeset
  3193
        if (m_index == m_allocatedSize - 1)
7f561c08de6b Initial load
duke
parents:
diff changeset
  3194
          grow();
7f561c08de6b Initial load
duke
parents:
diff changeset
  3195
7f561c08de6b Initial load
duke
parents:
diff changeset
  3196
        return (m_values[++m_index] = val);
7f561c08de6b Initial load
duke
parents:
diff changeset
  3197
      }
7f561c08de6b Initial load
duke
parents:
diff changeset
  3198
7f561c08de6b Initial load
duke
parents:
diff changeset
  3199
      /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  3200
       * Removes the object at the top of this stack and returns that
7f561c08de6b Initial load
duke
parents:
diff changeset
  3201
       * object as the value of this function.
7f561c08de6b Initial load
duke
parents:
diff changeset
  3202
       *
7f561c08de6b Initial load
duke
parents:
diff changeset
  3203
       * @return     The object at the top of this stack.
7f561c08de6b Initial load
duke
parents:
diff changeset
  3204
       * @throws  EmptyStackException  if this stack is empty.
7f561c08de6b Initial load
duke
parents:
diff changeset
  3205
       */
7f561c08de6b Initial load
duke
parents:
diff changeset
  3206
      public final boolean pop()
7f561c08de6b Initial load
duke
parents:
diff changeset
  3207
      {
7f561c08de6b Initial load
duke
parents:
diff changeset
  3208
        return m_values[m_index--];
7f561c08de6b Initial load
duke
parents:
diff changeset
  3209
      }
7f561c08de6b Initial load
duke
parents:
diff changeset
  3210
7f561c08de6b Initial load
duke
parents:
diff changeset
  3211
      /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  3212
       * Removes the object at the top of this stack and returns the
7f561c08de6b Initial load
duke
parents:
diff changeset
  3213
       * next object at the top as the value of this function.
7f561c08de6b Initial load
duke
parents:
diff changeset
  3214
       *
7f561c08de6b Initial load
duke
parents:
diff changeset
  3215
       *
7f561c08de6b Initial load
duke
parents:
diff changeset
  3216
       * @return Next object to the top or false if none there
7f561c08de6b Initial load
duke
parents:
diff changeset
  3217
       */
7f561c08de6b Initial load
duke
parents:
diff changeset
  3218
      public final boolean popAndTop()
7f561c08de6b Initial load
duke
parents:
diff changeset
  3219
      {
7f561c08de6b Initial load
duke
parents:
diff changeset
  3220
7f561c08de6b Initial load
duke
parents:
diff changeset
  3221
        m_index--;
7f561c08de6b Initial load
duke
parents:
diff changeset
  3222
7f561c08de6b Initial load
duke
parents:
diff changeset
  3223
        return (m_index >= 0) ? m_values[m_index] : false;
7f561c08de6b Initial load
duke
parents:
diff changeset
  3224
      }
7f561c08de6b Initial load
duke
parents:
diff changeset
  3225
7f561c08de6b Initial load
duke
parents:
diff changeset
  3226
      /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  3227
       * Set the item at the top of this stack
7f561c08de6b Initial load
duke
parents:
diff changeset
  3228
       *
7f561c08de6b Initial load
duke
parents:
diff changeset
  3229
       *
7f561c08de6b Initial load
duke
parents:
diff changeset
  3230
       * @param b Object to set at the top of this stack
7f561c08de6b Initial load
duke
parents:
diff changeset
  3231
       */
7f561c08de6b Initial load
duke
parents:
diff changeset
  3232
      public final void setTop(boolean b)
7f561c08de6b Initial load
duke
parents:
diff changeset
  3233
      {
7f561c08de6b Initial load
duke
parents:
diff changeset
  3234
        m_values[m_index] = b;
7f561c08de6b Initial load
duke
parents:
diff changeset
  3235
      }
7f561c08de6b Initial load
duke
parents:
diff changeset
  3236
7f561c08de6b Initial load
duke
parents:
diff changeset
  3237
      /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  3238
       * Looks at the object at the top of this stack without removing it
7f561c08de6b Initial load
duke
parents:
diff changeset
  3239
       * from the stack.
7f561c08de6b Initial load
duke
parents:
diff changeset
  3240
       *
7f561c08de6b Initial load
duke
parents:
diff changeset
  3241
       * @return     the object at the top of this stack.
7f561c08de6b Initial load
duke
parents:
diff changeset
  3242
       * @throws  EmptyStackException  if this stack is empty.
7f561c08de6b Initial load
duke
parents:
diff changeset
  3243
       */
7f561c08de6b Initial load
duke
parents:
diff changeset
  3244
      public final boolean peek()
7f561c08de6b Initial load
duke
parents:
diff changeset
  3245
      {
7f561c08de6b Initial load
duke
parents:
diff changeset
  3246
        return m_values[m_index];
7f561c08de6b Initial load
duke
parents:
diff changeset
  3247
      }
7f561c08de6b Initial load
duke
parents:
diff changeset
  3248
7f561c08de6b Initial load
duke
parents:
diff changeset
  3249
      /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  3250
       * Looks at the object at the top of this stack without removing it
7f561c08de6b Initial load
duke
parents:
diff changeset
  3251
       * from the stack.  If the stack is empty, it returns false.
7f561c08de6b Initial load
duke
parents:
diff changeset
  3252
       *
7f561c08de6b Initial load
duke
parents:
diff changeset
  3253
       * @return     the object at the top of this stack.
7f561c08de6b Initial load
duke
parents:
diff changeset
  3254
       */
7f561c08de6b Initial load
duke
parents:
diff changeset
  3255
      public final boolean peekOrFalse()
7f561c08de6b Initial load
duke
parents:
diff changeset
  3256
      {
7f561c08de6b Initial load
duke
parents:
diff changeset
  3257
        return (m_index > -1) ? m_values[m_index] : false;
7f561c08de6b Initial load
duke
parents:
diff changeset
  3258
      }
7f561c08de6b Initial load
duke
parents:
diff changeset
  3259
7f561c08de6b Initial load
duke
parents:
diff changeset
  3260
      /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  3261
       * Looks at the object at the top of this stack without removing it
7f561c08de6b Initial load
duke
parents:
diff changeset
  3262
       * from the stack.  If the stack is empty, it returns true.
7f561c08de6b Initial load
duke
parents:
diff changeset
  3263
       *
7f561c08de6b Initial load
duke
parents:
diff changeset
  3264
       * @return     the object at the top of this stack.
7f561c08de6b Initial load
duke
parents:
diff changeset
  3265
       */
7f561c08de6b Initial load
duke
parents:
diff changeset
  3266
      public final boolean peekOrTrue()
7f561c08de6b Initial load
duke
parents:
diff changeset
  3267
      {
7f561c08de6b Initial load
duke
parents:
diff changeset
  3268
        return (m_index > -1) ? m_values[m_index] : true;
7f561c08de6b Initial load
duke
parents:
diff changeset
  3269
      }
7f561c08de6b Initial load
duke
parents:
diff changeset
  3270
7f561c08de6b Initial load
duke
parents:
diff changeset
  3271
      /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  3272
       * Tests if this stack is empty.
7f561c08de6b Initial load
duke
parents:
diff changeset
  3273
       *
7f561c08de6b Initial load
duke
parents:
diff changeset
  3274
       * @return  <code>true</code> if this stack is empty;
7f561c08de6b Initial load
duke
parents:
diff changeset
  3275
       *          <code>false</code> otherwise.
7f561c08de6b Initial load
duke
parents:
diff changeset
  3276
       */
7f561c08de6b Initial load
duke
parents:
diff changeset
  3277
      public boolean isEmpty()
7f561c08de6b Initial load
duke
parents:
diff changeset
  3278
      {
7f561c08de6b Initial load
duke
parents:
diff changeset
  3279
        return (m_index == -1);
7f561c08de6b Initial load
duke
parents:
diff changeset
  3280
      }
7f561c08de6b Initial load
duke
parents:
diff changeset
  3281
7f561c08de6b Initial load
duke
parents:
diff changeset
  3282
      /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  3283
       * Grows the size of the stack
7f561c08de6b Initial load
duke
parents:
diff changeset
  3284
       *
7f561c08de6b Initial load
duke
parents:
diff changeset
  3285
       */
7f561c08de6b Initial load
duke
parents:
diff changeset
  3286
      private void grow()
7f561c08de6b Initial load
duke
parents:
diff changeset
  3287
      {
7f561c08de6b Initial load
duke
parents:
diff changeset
  3288
7f561c08de6b Initial load
duke
parents:
diff changeset
  3289
        m_allocatedSize *= 2;
7f561c08de6b Initial load
duke
parents:
diff changeset
  3290
7f561c08de6b Initial load
duke
parents:
diff changeset
  3291
        boolean newVector[] = new boolean[m_allocatedSize];
7f561c08de6b Initial load
duke
parents:
diff changeset
  3292
7f561c08de6b Initial load
duke
parents:
diff changeset
  3293
        System.arraycopy(m_values, 0, newVector, 0, m_index + 1);
7f561c08de6b Initial load
duke
parents:
diff changeset
  3294
7f561c08de6b Initial load
duke
parents:
diff changeset
  3295
        m_values = newVector;
7f561c08de6b Initial load
duke
parents:
diff changeset
  3296
      }
7f561c08de6b Initial load
duke
parents:
diff changeset
  3297
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
  3298
7f561c08de6b Initial load
duke
parents:
diff changeset
  3299
    // Implement DTDHandler
7f561c08de6b Initial load
duke
parents:
diff changeset
  3300
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  3301
     * If this method is called, the serializer is used as a
7f561c08de6b Initial load
duke
parents:
diff changeset
  3302
     * DTDHandler, which changes behavior how the serializer
7f561c08de6b Initial load
duke
parents:
diff changeset
  3303
     * handles document entities.
7f561c08de6b Initial load
duke
parents:
diff changeset
  3304
     * @see org.xml.sax.DTDHandler#notationDecl(java.lang.String, java.lang.String, java.lang.String)
7f561c08de6b Initial load
duke
parents:
diff changeset
  3305
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
  3306
    public void notationDecl(String name, String pubID, String sysID) throws SAXException {
7f561c08de6b Initial load
duke
parents:
diff changeset
  3307
        // TODO Auto-generated method stub
7f561c08de6b Initial load
duke
parents:
diff changeset
  3308
        try {
7f561c08de6b Initial load
duke
parents:
diff changeset
  3309
            DTDprolog();
7f561c08de6b Initial load
duke
parents:
diff changeset
  3310
7f561c08de6b Initial load
duke
parents:
diff changeset
  3311
            m_writer.write("<!NOTATION ");
7f561c08de6b Initial load
duke
parents:
diff changeset
  3312
            m_writer.write(name);
7f561c08de6b Initial load
duke
parents:
diff changeset
  3313
            if (pubID != null) {
7f561c08de6b Initial load
duke
parents:
diff changeset
  3314
                m_writer.write(" PUBLIC \"");
7f561c08de6b Initial load
duke
parents:
diff changeset
  3315
                m_writer.write(pubID);
7f561c08de6b Initial load
duke
parents:
diff changeset
  3316
7f561c08de6b Initial load
duke
parents:
diff changeset
  3317
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
  3318
            else {
7f561c08de6b Initial load
duke
parents:
diff changeset
  3319
                m_writer.write(" SYSTEM \"");
7f561c08de6b Initial load
duke
parents:
diff changeset
  3320
                m_writer.write(sysID);
7f561c08de6b Initial load
duke
parents:
diff changeset
  3321
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
  3322
            m_writer.write("\" >");
7f561c08de6b Initial load
duke
parents:
diff changeset
  3323
            m_writer.write(m_lineSep, 0, m_lineSepLen);
7f561c08de6b Initial load
duke
parents:
diff changeset
  3324
        } catch (IOException e) {
7f561c08de6b Initial load
duke
parents:
diff changeset
  3325
            // TODO Auto-generated catch block
7f561c08de6b Initial load
duke
parents:
diff changeset
  3326
            e.printStackTrace();
7f561c08de6b Initial load
duke
parents:
diff changeset
  3327
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
  3328
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
  3329
7f561c08de6b Initial load
duke
parents:
diff changeset
  3330
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  3331
     * If this method is called, the serializer is used as a
7f561c08de6b Initial load
duke
parents:
diff changeset
  3332
     * DTDHandler, which changes behavior how the serializer
7f561c08de6b Initial load
duke
parents:
diff changeset
  3333
     * handles document entities.
7f561c08de6b Initial load
duke
parents:
diff changeset
  3334
     * @see org.xml.sax.DTDHandler#unparsedEntityDecl(java.lang.String, java.lang.String, java.lang.String, java.lang.String)
7f561c08de6b Initial load
duke
parents:
diff changeset
  3335
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
  3336
    public void unparsedEntityDecl(String name, String pubID, String sysID, String notationName) throws SAXException {
7f561c08de6b Initial load
duke
parents:
diff changeset
  3337
        // TODO Auto-generated method stub
7f561c08de6b Initial load
duke
parents:
diff changeset
  3338
        try {
7f561c08de6b Initial load
duke
parents:
diff changeset
  3339
            DTDprolog();
7f561c08de6b Initial load
duke
parents:
diff changeset
  3340
7f561c08de6b Initial load
duke
parents:
diff changeset
  3341
            m_writer.write("<!ENTITY ");
7f561c08de6b Initial load
duke
parents:
diff changeset
  3342
            m_writer.write(name);
7f561c08de6b Initial load
duke
parents:
diff changeset
  3343
            if (pubID != null) {
7f561c08de6b Initial load
duke
parents:
diff changeset
  3344
                m_writer.write(" PUBLIC \"");
7f561c08de6b Initial load
duke
parents:
diff changeset
  3345
                m_writer.write(pubID);
7f561c08de6b Initial load
duke
parents:
diff changeset
  3346
7f561c08de6b Initial load
duke
parents:
diff changeset
  3347
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
  3348
            else {
7f561c08de6b Initial load
duke
parents:
diff changeset
  3349
                m_writer.write(" SYSTEM \"");
7f561c08de6b Initial load
duke
parents:
diff changeset
  3350
                m_writer.write(sysID);
7f561c08de6b Initial load
duke
parents:
diff changeset
  3351
            }
7f561c08de6b Initial load
duke
parents:
diff changeset
  3352
            m_writer.write("\" NDATA ");
7f561c08de6b Initial load
duke
parents:
diff changeset
  3353
            m_writer.write(notationName);
7f561c08de6b Initial load
duke
parents:
diff changeset
  3354
            m_writer.write(" >");
7f561c08de6b Initial load
duke
parents:
diff changeset
  3355
            m_writer.write(m_lineSep, 0, m_lineSepLen);
7f561c08de6b Initial load
duke
parents:
diff changeset
  3356
        } catch (IOException e) {
7f561c08de6b Initial load
duke
parents:
diff changeset
  3357
            // TODO Auto-generated catch block
7f561c08de6b Initial load
duke
parents:
diff changeset
  3358
            e.printStackTrace();
7f561c08de6b Initial load
duke
parents:
diff changeset
  3359
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
  3360
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
  3361
7f561c08de6b Initial load
duke
parents:
diff changeset
  3362
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  3363
     * A private helper method to output the
7f561c08de6b Initial load
duke
parents:
diff changeset
  3364
     * @throws SAXException
7f561c08de6b Initial load
duke
parents:
diff changeset
  3365
     * @throws IOException
7f561c08de6b Initial load
duke
parents:
diff changeset
  3366
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
  3367
    private void DTDprolog() throws SAXException, IOException {
7f561c08de6b Initial load
duke
parents:
diff changeset
  3368
        final java.io.Writer writer = m_writer;
7f561c08de6b Initial load
duke
parents:
diff changeset
  3369
        if (m_needToOutputDocTypeDecl)
7f561c08de6b Initial load
duke
parents:
diff changeset
  3370
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
  3371
            outputDocTypeDecl(m_elemContext.m_elementName, false);
7f561c08de6b Initial load
duke
parents:
diff changeset
  3372
            m_needToOutputDocTypeDecl = false;
7f561c08de6b Initial load
duke
parents:
diff changeset
  3373
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
  3374
        if (m_inDoctype)
7f561c08de6b Initial load
duke
parents:
diff changeset
  3375
        {
7f561c08de6b Initial load
duke
parents:
diff changeset
  3376
            writer.write(" [");
7f561c08de6b Initial load
duke
parents:
diff changeset
  3377
            writer.write(m_lineSep, 0, m_lineSepLen);
7f561c08de6b Initial load
duke
parents:
diff changeset
  3378
            m_inDoctype = false;
7f561c08de6b Initial load
duke
parents:
diff changeset
  3379
        }
7f561c08de6b Initial load
duke
parents:
diff changeset
  3380
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
  3381
7f561c08de6b Initial load
duke
parents:
diff changeset
  3382
    /**
7f561c08de6b Initial load
duke
parents:
diff changeset
  3383
     * If set to false the serializer does not expand DTD entities,
7f561c08de6b Initial load
duke
parents:
diff changeset
  3384
     * but leaves them as is, the default value is true;
7f561c08de6b Initial load
duke
parents:
diff changeset
  3385
     */
7f561c08de6b Initial load
duke
parents:
diff changeset
  3386
    public void setDTDEntityExpansion(boolean expand) {
7f561c08de6b Initial load
duke
parents:
diff changeset
  3387
        m_expandDTDEntities = expand;
7f561c08de6b Initial load
duke
parents:
diff changeset
  3388
    }
7f561c08de6b Initial load
duke
parents:
diff changeset
  3389
}