XMLWriter.java 67.6 KB
Newer Older
1
/* XMLWriter.java --
Tom Tromey committed
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
   Copyright (C) 1999,2000,2001 Free Software Foundation, Inc.

This file is part of GNU Classpath.

GNU Classpath is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.

GNU Classpath is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
General Public License for more details.

You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING.  If not, write to the
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 USA.

Linking this library statically or dynamically with other modules is
making a combined work based on this library.  Thus, the terms and
conditions of the GNU General Public License cover the whole
combination.

As a special exception, the copyright holders of this library give you
permission to link this library with independent modules to produce an
executable, regardless of the license terms of these independent
modules, and to copy and distribute the resulting executable under
terms of your choice, provided that you also meet, for each linked
independent module, the terms and conditions of the license of that
module.  An independent module is a module which is not derived from
or based on this library.  If you modify this library, you may extend
this exception to your version of the library, but you are not
obligated to do so.  If you do not wish to do so, delete this
exception statement from your version. */

package gnu.xml.util;

40 41
import gnu.java.lang.CPStringBuilder;

Tom Tromey committed
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
import java.io.BufferedWriter;
import java.io.CharConversionException;
import java.io.IOException;
import java.io.OutputStream;
import java.io.OutputStreamWriter;
import java.io.Writer;
import java.util.Stack;

import org.xml.sax.*;
import org.xml.sax.ext.*;
import org.xml.sax.helpers.*;


/**
 * This class is a SAX handler which writes all its input as a well formed
 * XML or XHTML document.  If driven using SAX2 events, this output may
 * include a recreated document type declaration, subject to limitations
 * of SAX (no internal subset exposed) or DOM (the important declarations,
 * with their documentation, are discarded).
 *
 * <p> By default, text is generated "as-is", but some optional modes
 * are supported.  Pretty-printing is supported, to make life easier
 * for people reading the output.  XHTML (1.0) output has can be made
 * particularly pretty; all the built-in character entities are known.
 * Canonical XML can also be generated, assuming the input is properly
 * formed.
 *
 * <hr>
 *
 * <p> Some of the methods on this class are intended for applications to
 * use directly, rather than as pure SAX2 event callbacks.  Some of those
 * methods access the JavaBeans properties (used to tweak output formats,
 * for example canonicalization and pretty printing).  Subclasses
 * are expected to add new behaviors, not to modify current behavior, so
 * many such methods are final.</p>
 *
 * <p> The <em>write*()</em> methods may be slightly simpler for some
 * applications to use than direct callbacks.  For example, they support
 * a simple policy for encoding data items as the content of a single element.
 *
 * <p> To reuse an XMLWriter you must provide it with a new Writer, since
 * this handler closes the writer it was given as part of its endDocument()
 * handling.  (XML documents have an end of input, and the way to encode
 * that on a stream is to close it.) </p>
 *
 * <hr>
 *
 * <p> Note that any relative URIs in the source document, as found in
 * entity and notation declarations, ought to have been fully resolved by
 * the parser providing events to this handler.  This means that the
 * output text should only have fully resolved URIs, which may not be
 * the desired behavior in cases where later binding is desired. </p>
 *
 * <p> <em>Note that due to SAX2 defaults, you may need to manually
 * ensure that the input events are XML-conformant with respect to namespace
 * prefixes and declarations.  {@link gnu.xml.pipeline.NSFilter} is
 * one solution to this problem, in the context of processing pipelines.</em>
 * Something as simple as connecting this handler to a parser might not
 * generate the correct output.  Another workaround is to ensure that the
 * <em>namespace-prefixes</em> feature is always set to true, if you're
 * hooking this directly up to some XMLReader implementation.
 *
 * @see gnu.xml.pipeline.TextConsumer
 *
 * @author David Brownell
107 108
 *
 * @deprecated Please use the javax.xml.stream APIs instead
Tom Tromey committed
109 110 111 112 113
 */
public class XMLWriter
    implements ContentHandler, LexicalHandler, DTDHandler, DeclHandler
{
    // text prints/escapes differently depending on context
114 115 116 117
    //  CTX_ENTITY ... entity literal value
    //  CTX_ATTRIBUTE ... attribute literal value
    //  CTX_CONTENT ... content of an element
    //  CTX_UNPARSED ... CDATA, comment, PI, names, etc
Tom Tromey committed
118
    //  CTX_NAME ... name or nmtoken, no escapes possible
119 120 121 122 123
    private static final int    CTX_ENTITY = 1;
    private static final int    CTX_ATTRIBUTE = 2;
    private static final int    CTX_CONTENT = 3;
    private static final int    CTX_UNPARSED = 4;
    private static final int    CTX_NAME = 5;
Tom Tromey committed
124 125 126 127 128

// FIXME: names (element, attribute, PI, notation, etc) are not
// currently written out with range checks (escapeChars).
// In non-XHTML, some names can't be directly written; panic!

129
    private static String       sysEOL;
Tom Tromey committed
130 131

    static {
132 133
        try {
            sysEOL = System.getProperty ("line.separator", "\n");
Tom Tromey committed
134

135 136 137
            // don't use the system's EOL if it's illegal XML.
            if (!isLineEnd (sysEOL))
                sysEOL = "\n";
Tom Tromey committed
138

139 140 141
        } catch (SecurityException e) {
            sysEOL = "\n";
        }
Tom Tromey committed
142 143 144 145
    }

    private static boolean isLineEnd (String eol)
    {
146 147 148
        return "\n".equals (eol)
                    || "\r".equals (eol)
                    || "\r\n".equals (eol);
Tom Tromey committed
149 150
    }

151 152 153 154
    private Writer              out;
    private boolean             inCDATA;
    private int                 elementNestLevel;
    private String              eol = sysEOL;
Tom Tromey committed
155

156 157 158 159
    private short               dangerMask;
    private CPStringBuilder     stringBuf;
    private Locator             locator;
    private ErrorHandler        errHandler;
Tom Tromey committed
160

161 162 163 164 165
    private boolean             expandingEntities = false;
    private int                 entityNestLevel;
    private boolean             xhtml;
    private boolean             startedDoctype;
    private String              encoding;
Tom Tromey committed
166

167 168 169
    private boolean             canonical;
    private boolean             inDoctype;
    private boolean             inEpilogue;
Tom Tromey committed
170 171

    // pretty printing controls
172 173 174 175
    private boolean             prettyPrinting;
    private int                 column;
    private boolean             noWrap;
    private Stack               space = new Stack ();
Tom Tromey committed
176 177 178 179 180

    // this is not a hard'n'fast rule -- longer lines are OK,
    // but are to be avoided.  Here, prettyprinting is more to
    // show structure "cleanly" than to be precise about it.
    // better to have ragged layout than one line 24Kb long.
181
    private static final int    lineLength = 75;
Tom Tromey committed
182 183 184 185 186 187 188 189


    /**
     * Constructs this handler with System.out used to write SAX events
     * using the UTF-8 encoding.  Avoid using this except when you know
     * it's safe to close System.out at the end of the document.
     */
    public XMLWriter () throws IOException
190
        { this (System.out); }
Tom Tromey committed
191 192 193 194 195 196 197 198 199 200

    /**
     * Constructs a handler which writes all input to the output stream
     * in the UTF-8 encoding, and closes it when endDocument is called.
     * (Yes it's annoying that this throws an exception -- but there's
     * really no way around it, since it's barely possible a JDK may
     * exist somewhere that doesn't know how to emit UTF-8.)
     */
    public XMLWriter (OutputStream out) throws IOException
    {
201
        this (new OutputStreamWriter (out, "UTF8"));
Tom Tromey committed
202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217
    }

    /**
     * Constructs a handler which writes all input to the writer, and then
     * closes the writer when the document ends.  If an XML declaration is
     * written onto the output, and this class can determine the name of
     * the character encoding for this writer, that encoding name will be
     * included in the XML declaration.
     *
     * <P> See the description of the constructor which takes an encoding
     * name for imporant information about selection of encodings.
     *
     * @param writer XML text is written to this writer.
     */
    public XMLWriter (Writer writer)
    {
218
        this (writer, null);
Tom Tromey committed
219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250
    }

    /**
     * Constructs a handler which writes all input to the writer, and then
     * closes the writer when the document ends.  If an XML declaration is
     * written onto the output, this class will use the specified encoding
     * name in that declaration.  If no encoding name is specified, no
     * encoding name will be declared unless this class can otherwise
     * determine the name of the character encoding for this writer.
     *
     * <P> At this time, only the UTF-8 ("UTF8") and UTF-16 ("Unicode")
     * output encodings are fully lossless with respect to XML data.  If you
     * use any other encoding you risk having your data be silently mangled
     * on output, as the standard Java character encoding subsystem silently
     * maps non-encodable characters to a question mark ("?") and will not
     * report such errors to applications.
     *
     * <p> For a few other encodings the risk can be reduced. If the writer is
     * a java.io.OutputStreamWriter, and uses either the ISO-8859-1 ("8859_1",
     * "ISO8859_1", etc) or US-ASCII ("ASCII") encodings, content which
     * can't be encoded in those encodings will be written safely.  Where
     * relevant, the XHTML entity names will be used; otherwise, numeric
     * character references will be emitted.
     *
     * <P> However, there remain a number of cases where substituting such
     * entity or character references is not an option.  Such references are
     * not usable within a DTD, comment, PI, or CDATA section.  Neither may
     * they be used when element, attribute, entity, or notation names have
     * the problematic characters.
     *
     * @param writer XML text is written to this writer.
     * @param encoding if non-null, and an XML declaration is written,
251
     *  this is the name that will be used for the character encoding.
Tom Tromey committed
252 253 254
     */
    public XMLWriter (Writer writer, String encoding)
    {
255
        setWriter (writer, encoding);
Tom Tromey committed
256
    }
257

Tom Tromey committed
258 259
    private void setEncoding (String encoding)
    {
260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297
        if (encoding == null && out instanceof OutputStreamWriter)
            encoding = ((OutputStreamWriter)out).getEncoding ();

        if (encoding != null) {
            encoding = encoding.toUpperCase ();

            // Use official encoding names where we know them,
            // avoiding the Java-only names.  When using common
            // encodings where we can easily tell if characters
            // are out of range, we'll escape out-of-range
            // characters using character refs for safety.

            // I _think_ these are all the main synonyms for these!
            if ("UTF8".equals (encoding)) {
                encoding = "UTF-8";
            } else if ("US-ASCII".equals (encoding)
                    || "ASCII".equals (encoding)) {
                dangerMask = (short) 0xff80;
                encoding = "US-ASCII";
            } else if ("ISO-8859-1".equals (encoding)
                    || "8859_1".equals (encoding)
                    || "ISO8859_1".equals (encoding)) {
                dangerMask = (short) 0xff00;
                encoding = "ISO-8859-1";
            } else if ("UNICODE".equals (encoding)
                    || "UNICODE-BIG".equals (encoding)
                    || "UNICODE-LITTLE".equals (encoding)) {
                encoding = "UTF-16";

                // TODO: UTF-16BE, UTF-16LE ... no BOM; what
                // release of JDK supports those Unicode names?
            }

            if (dangerMask != 0)
                stringBuf = new CPStringBuilder ();
        }

        this.encoding = encoding;
Tom Tromey committed
298 299 300 301 302 303 304 305
    }


    /**
     * Resets the handler to write a new text document.
     *
     * @param writer XML text is written to this writer.
     * @param encoding if non-null, and an XML declaration is written,
306
     *  this is the name that will be used for the character encoding.
Tom Tromey committed
307 308
     *
     * @exception IllegalStateException if the current
309
     *  document hasn't yet ended (with {@link #endDocument})
Tom Tromey committed
310 311 312
     */
    final public void setWriter (Writer writer, String encoding)
    {
313 314 315 316 317 318 319 320 321
        if (out != null)
            throw new IllegalStateException (
                "can't change stream in mid course");
        out = writer;
        if (out != null)
            setEncoding (encoding);
        if (!(out instanceof BufferedWriter))
            out = new BufferedWriter (out);
        space.push ("default");
Tom Tromey committed
322 323 324 325 326
    }

    /**
     * Assigns the line ending style to be used on output.
     * @param eolString null to use the system default; else
327
     *  "\n", "\r", or "\r\n".
Tom Tromey committed
328 329 330
     */
    final public void setEOL (String eolString)
    {
331 332 333 334 335 336
        if (eolString == null)
            eol = sysEOL;
        else if (!isLineEnd (eolString))
            eol = eolString;
        else
            throw new IllegalArgumentException (eolString);
Tom Tromey committed
337 338 339 340 341 342 343 344
    }

    /**
     * Assigns the error handler to be used to present most fatal
     * errors.
     */
    public void setErrorHandler (ErrorHandler handler)
    {
345
        errHandler = handler;
Tom Tromey committed
346 347 348 349 350 351 352 353 354 355 356 357
    }

    /**
     * Used internally and by subclasses, this encapsulates the logic
     * involved in reporting fatal errors.  It uses locator information
     * for good diagnostics, if available, and gives the application's
     * ErrorHandler the opportunity to handle the error before throwing
     * an exception.
     */
    protected void fatal (String message, Exception e)
    throws SAXException
    {
358 359 360 361 362 363 364 365 366
        SAXParseException       x;

        if (locator == null)
            x = new SAXParseException (message, null, null, -1, -1, e);
        else
            x = new SAXParseException (message, locator, e);
        if (errHandler != null)
            errHandler.fatalError (x);
        throw x;
Tom Tromey committed
367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387
    }


    // JavaBeans properties

    /**
     * Controls whether the output should attempt to follow the "transitional"
     * XHTML rules so that it meets the "HTML Compatibility Guidelines"
     * appendix in the XHTML specification.  A "transitional" Document Type
     * Declaration (DTD) is placed near the beginning of the output document,
     * instead of whatever DTD would otherwise have been placed there, and
     * XHTML empty elements are printed specially.  When writing text in
     * US-ASCII or ISO-8859-1 encodings, the predefined XHTML internal
     * entity names are used (in preference to character references) when
     * writing content characters which can't be expressed in those encodings.
     *
     * <p> When this option is enabled, it is the caller's responsibility
     * to ensure that the input is otherwise valid as XHTML.  Things to
     * be careful of in all cases, as described in the appendix referenced
     * above, include:  <ul>
     *
388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411
     *  <li> Element and attribute names must be in lower case, both
     *          in the document and in any CSS style sheet.
     *  <li> All XML constructs must be valid as defined by the XHTML
     *          "transitional" DTD (including all familiar constructs,
     *          even deprecated ones).
     *  <li> The root element must be "html".
     *  <li> Elements that must be empty (such as <em>&lt;br&gt;</em>
     *          must have no content.
     *  <li> Use both <em>lang</em> and <em>xml:lang</em> attributes
     *          when specifying language.
     *  <li> Similarly, use both <em>id</em> and <em>name</em> attributes
     *          when defining elements that may be referred to through
     *          URI fragment identifiers ... and make sure that the
     *          value is a legal NMTOKEN, since not all such HTML 4.0
     *          identifiers are valid in XML.
     *  <li> Be careful with character encodings; make sure you provide
     *          a <em>&lt;meta http-equiv="Content-type"
     *          content="text/xml;charset=..." /&gt;</em> element in
     *          the HTML "head" element, naming the same encoding
     *          used to create this handler.  Also, if that encoding
     *          is anything other than US-ASCII, make sure that if
     *          the document is given a MIME content type, it has
     *          a <em>charset=...</em> attribute with that encoding.
     *  </ul>
Tom Tromey committed
412 413 414 415
     *
     * <p> Additionally, some of the oldest browsers have additional
     * quirks, to address with guidelines such as: <ul>
     *
416 417 418 419 420 421 422 423 424 425 426 427 428
     *  <li> Processing instructions may be rendered, so avoid them.
     *          (Similarly for an XML declaration.)
     *  <li> Embedded style sheets and scripts should not contain XML
     *          markup delimiters:  &amp;, &lt;, and ]]&gt; are trouble.
     *  <li> Attribute values should not have line breaks or multiple
     *          consecutive white space characters.
     *  <li> Use no more than one of the deprecated (transitional)
     *          <em>&lt;isindex&gt;</em> elements.
     *  <li> Some boolean attributes (such as <em>compact, checked,
     *          disabled, readonly, selected,</em> and more) confuse
     *          some browsers, since they only understand minimized
     *          versions which are illegal in XML.
     *  </ul>
Tom Tromey committed
429 430 431 432 433 434 435 436 437 438 439
     *
     * <p> Also, some characteristics of the resulting output may be
     * a function of whether the document is later given a MIME
     * content type of <em>text/html</em> rather than one indicating
     * XML (<em>application/xml</em> or <em>text/xml</em>).  Worse,
     * some browsers ignore MIME content types and prefer to rely URI
     * name suffixes -- so an "index.xml" could always be XML, never
     * XHTML, no matter its MIME type.
     */
    final public void setXhtml (boolean value)
    {
440 441 442 443 444
        if (locator != null)
            throw new IllegalStateException ("started parsing");
        xhtml = value;
        if (xhtml)
            canonical = false;
Tom Tromey committed
445 446 447 448 449 450 451 452 453 454
    }

    /**
     * Returns true if the output attempts to echo the input following
     * "transitional" XHTML rules and matching the "HTML Compatibility
     * Guidelines" so that an HTML version 3 browser can read the output
     * as HTML; returns false (the default) othewise.
     */
    final public boolean isXhtml ()
    {
455
        return xhtml;
Tom Tromey committed
456 457 458 459 460 461 462 463 464
    }

    /**
     * Controls whether the output text contains references to
     * entities (the default), or instead contains the expanded
     * values of those entities.
     */
    final public void setExpandingEntities (boolean value)
    {
465 466 467 468 469
        if (locator != null)
            throw new IllegalStateException ("started parsing");
        expandingEntities = value;
        if (!expandingEntities)
            canonical = false;
Tom Tromey committed
470 471 472 473 474 475 476 477
    }

    /**
     * Returns true if the output will have no entity references;
     * returns false (the default) otherwise.
     */
    final public boolean isExpandingEntities ()
    {
478
        return expandingEntities;
Tom Tromey committed
479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501
    }

    /**
     * Controls pretty-printing, which by default is not enabled
     * (and currently is most useful for XHTML output).
     * Pretty printing enables structural indentation, sorting of attributes
     * by name, line wrapping, and potentially other mechanisms for making
     * output more or less readable.
     *
     * <p> At this writing, structural indentation and line wrapping are
     * enabled when pretty printing is enabled and the <em>xml:space</em>
     * attribute has the value <em>default</em> (its other legal value is
     * <em>preserve</em>, as defined in the XML specification).  The three
     * XHTML element types which use another value are recognized by their
     * names (namespaces are ignored).
     *
     * <p> Also, for the record, the "pretty" aspect of printing here
     * is more to provide basic structure on outputs that would otherwise
     * risk being a single long line of text.  For now, expect the
     * structure to be ragged ... unless you'd like to submit a patch
     * to make this be more strictly formatted!
     *
     * @exception IllegalStateException thrown if this method is invoked
502
     *  after output has begun.
Tom Tromey committed
503 504 505
     */
    final public void setPrettyPrinting (boolean value)
    {
506 507 508 509 510
        if (locator != null)
            throw new IllegalStateException ("started parsing");
        prettyPrinting = value;
        if (prettyPrinting)
            canonical = false;
Tom Tromey committed
511 512 513 514 515 516 517
    }

    /**
     * Returns value of flag controlling pretty printing.
     */
    final public boolean isPrettyPrinting ()
    {
518
        return prettyPrinting;
Tom Tromey committed
519 520 521 522 523 524 525 526
    }


    /**
     * Sets the output style to be canonicalized.  Input events must
     * meet requirements that are slightly more stringent than the
     * basic well-formedness ones, and include:  <ul>
     *
527 528 529 530
     *  <li> Namespace prefixes must not have been changed from those
     *  in the original document.  (This may only be ensured by setting
     *  the SAX2 XMLReader <em>namespace-prefixes</em> feature flag;
     *  by default, it is cleared.)
Tom Tromey committed
531
     *
532 533 534 535
     *  <li> Redundant namespace declaration attributes have been
     *  removed.  (If an ancestor element defines a namespace prefix
     *  and that declaration hasn't been overriden, an element must
     *  not redeclare it.)
Tom Tromey committed
536
     *
537 538 539
     *  <li> If comments are not to be included in the canonical output,
     *  they must first be removed from the input event stream; this
     *  <em>Canonical XML with comments</em> by default.
Tom Tromey committed
540
     *
541 542 543
     *  <li> If the input character encoding was not UCS-based, the
     *  character data must have been normalized using Unicode
     *  Normalization Form C.  (UTF-8 and UTF-16 are UCS-based.)
Tom Tromey committed
544
     *
545 546 547
     *  <li> Attribute values must have been normalized, as is done
     *  by any conformant XML processor which processes all external
     *  parameter entities.
Tom Tromey committed
548
     *
549
     *  <li> Similarly, attribute value defaulting has been performed.
Tom Tromey committed
550
     *
551
     *  </ul>
Tom Tromey committed
552 553 554 555 556 557 558
     *
     * <p> Note that fragments of XML documents, as specified by an XPath
     * node set, may be canonicalized.  In such cases, elements may need
     * some fixup (for <em>xml:*</em> attributes and application-specific
     * context).
     *
     * @exception IllegalArgumentException if the output encoding
559
     *  is anything other than UTF-8.
Tom Tromey committed
560 561 562
     */
    final public void setCanonical (boolean value)
    {
563 564 565 566 567 568 569 570
        if (value && !"UTF-8".equals (encoding))
            throw new IllegalArgumentException ("encoding != UTF-8");
        canonical = value;
        if (canonical) {
            prettyPrinting = xhtml = false;
            expandingEntities = true;
            eol = "\n";
        }
Tom Tromey committed
571 572 573 574 575 576 577 578
    }


    /**
     * Returns value of flag controlling canonical output.
     */
    final public boolean isCanonical ()
    {
579
        return canonical;
Tom Tromey committed
580 581 582 583 584 585 586 587 588 589 590
    }


    /**
     * Flushes the output stream.  When this handler is used in long lived
     * pipelines, it can be important to flush buffered state, for example
     * so that it can reach the disk as part of a state checkpoint.
     */
    final public void flush ()
    throws IOException
    {
591 592
        if (out != null)
            out.flush ();
Tom Tromey committed
593 594 595 596 597 598 599
    }


    // convenience routines

// FIXME:  probably want a subclass that holds a lot of these...
// and maybe more!
600

Tom Tromey committed
601 602 603 604 605 606 607 608
    /**
     * Writes the string as if characters() had been called on the contents
     * of the string.  This is particularly useful when applications act as
     * producers and write data directly to event consumers.
     */
    final public void write (String data)
    throws SAXException
    {
609 610
        char    buf [] = data.toCharArray ();
        characters (buf, 0, buf.length);
Tom Tromey committed
611 612 613 614 615 616 617 618 619
    }


    /**
     * Writes an element that has content consisting of a single string.
     * @see #writeEmptyElement
     * @see #startElement
     */
    public void writeElement (
620 621 622 623 624
        String uri,
        String localName,
        String qName,
        Attributes atts,
        String content
Tom Tromey committed
625 626
    ) throws SAXException
    {
627 628 629 630 631 632 633 634
        if (content == null || content.length () == 0) {
            writeEmptyElement (uri, localName, qName, atts);
            return;
        }
        startElement (uri, localName, qName, atts);
        char chars [] = content.toCharArray ();
        characters (chars, 0, chars.length);
        endElement (uri, localName, qName);
Tom Tromey committed
635 636 637 638 639 640 641 642 643 644
    }


    /**
     * Writes an element that has content consisting of a single integer,
     * encoded as a decimal string.
     * @see #writeEmptyElement
     * @see #startElement
     */
    public void writeElement (
645 646 647 648 649
        String uri,
        String localName,
        String qName,
        Attributes atts,
        int content
Tom Tromey committed
650 651
    ) throws SAXException
    {
652
        writeElement (uri, localName, qName, atts, Integer.toString (content));
Tom Tromey committed
653 654 655 656 657 658 659
    }


    // SAX1 ContentHandler
    /** <b>SAX1</b>:  provides parser status information */
    final public void setDocumentLocator (Locator l)
    {
660
        locator = l;
Tom Tromey committed
661 662 663 664 665 666 667
    }


    // URL for dtd that validates against all normal HTML constructs
    private static final String xhtmlFullDTD =
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";

668

Tom Tromey committed
669 670 671 672 673 674 675 676 677
    /**
     * <b>SAX1</b>:  indicates the beginning of a document parse.
     * If you're writing (well formed) fragments of XML, neither
     * this nor endDocument should be called.
     */
    // NOT final
    public void startDocument ()
    throws SAXException
    {
678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731
        try {
            if (out == null)
                throw new IllegalStateException (
                    "null Writer given to XMLWriter");

            // Not all parsers provide the locator we want; this also
            // flags whether events are being sent to this object yet.
            // We could only have this one call if we only printed whole
            // documents ... but we also print fragments, so most of the
            // callbacks here replicate this test.

            if (locator == null)
                locator = new LocatorImpl ();

            // Unless the data is in US-ASCII or we're canonicalizing, write
            // the XML declaration if we know the encoding.  US-ASCII won't
            // normally get mangled by web server confusion about the
            // character encodings used.  Plus, it's an easy way to
            // ensure we can write ASCII that's unlikely to confuse
            // elderly HTML parsers.

            if (!canonical
                    && dangerMask != (short) 0xff80
                    && encoding != null) {
                rawWrite ("<?xml version='1.0'");
                rawWrite (" encoding='" + encoding + "'");
                rawWrite ("?>");
                newline ();
            }

            if (xhtml) {

                rawWrite ("<!DOCTYPE html PUBLIC");
                newline ();
                rawWrite ("  '-//W3C//DTD XHTML 1.0 Transitional//EN'");
                newline ();
                rawWrite ("  '");
                    // NOTE:  URL (above) matches the REC
                rawWrite (xhtmlFullDTD);
                rawWrite ("'>");
                newline ();
                newline ();

                // fake the rest of the handler into ignoring
                // everything until the root element, so any
                // XHTML DTD comments, PIs, etc are ignored
                startedDoctype = true;
            }

            entityNestLevel = 0;

        } catch (IOException e) {
            fatal ("can't write", e);
        }
Tom Tromey committed
732 733 734 735 736 737 738 739 740 741 742
    }

    /**
     * <b>SAX1</b>:  indicates the completion of a parse.
     * Note that all complete SAX event streams make this call, even
     * if an error is reported during a parse.
     */
    // NOT final
    public void endDocument ()
    throws SAXException
    {
743 744 745 746 747 748 749 750 751 752 753
        try {
            if (!canonical) {
                newline ();
                newline ();
            }
            out.close ();
            out = null;
            locator = null;
        } catch (IOException e) {
            fatal ("can't write", e);
        }
Tom Tromey committed
754 755 756 757 758
    }

    // XHTML elements declared as EMPTY print differently
    final private static boolean isEmptyElementTag (String tag)
    {
759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774
        switch (tag.charAt (0)) {
          case 'a':     return "area".equals (tag);
          case 'b':     return "base".equals (tag)
                            || "basefont".equals (tag)
                            || "br".equals (tag);
          case 'c':     return "col".equals (tag);
          case 'f':     return "frame".equals (tag);
          case 'h':     return "hr".equals (tag);
          case 'i':     return "img".equals (tag)
                            || "input".equals (tag)
                            || "isindex".equals (tag);
          case 'l':     return "link".equals (tag);
          case 'm':     return "meta".equals (tag);
          case 'p':     return "param".equals (tag);
        }
        return false;
Tom Tromey committed
775 776 777 778
    }

    private static boolean indentBefore (String tag)
    {
779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799
        // basically indent before block content
        // and within structure like tables, lists
        switch (tag.charAt (0)) {
          case 'a':     return "applet".equals (tag);
          case 'b':     return "body".equals (tag)
                            || "blockquote".equals (tag);
          case 'c':     return "center".equals (tag);
          case 'f':     return "frame".equals (tag)
                            || "frameset".equals (tag);
          case 'h':     return "head".equals (tag);
          case 'm':     return "meta".equals (tag);
          case 'o':     return "object".equals (tag);
          case 'p':     return "param".equals (tag)
                            || "pre".equals (tag);
          case 's':     return "style".equals (tag);
          case 't':     return "title".equals (tag)
                            || "td".equals (tag)
                            || "th".equals (tag);
        }
        // ... but not inline elements like "em", "b", "font"
        return false;
Tom Tromey committed
800 801 802 803
    }

    private static boolean spaceBefore (String tag)
    {
804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820
        // blank line AND INDENT before certain structural content
        switch (tag.charAt (0)) {
          case 'h':     return "h1".equals (tag)
                            || "h2".equals (tag)
                            || "h3".equals (tag)
                            || "h4".equals (tag)
                            || "h5".equals (tag)
                            || "h6".equals (tag)
                            || "hr".equals (tag);
          case 'l':     return "li".equals (tag);
          case 'o':     return "ol".equals (tag);
          case 'p':     return "p".equals (tag);
          case 't':     return "table".equals (tag)
                            || "tr".equals (tag);
          case 'u':     return "ul".equals (tag);
        }
        return false;
Tom Tromey committed
821 822 823 824 825
    }

    // XHTML DTDs say these three have xml:space="preserve"
    private static boolean spacePreserve (String tag)
    {
826 827 828
        return "pre".equals (tag)
                || "style".equals (tag)
                || "script".equals (tag);
Tom Tromey committed
829 830 831 832 833 834
    }

    /**
     * <b>SAX2</b>:  ignored.
     */
    final public void startPrefixMapping (String prefix, String uri)
835
        {}
Tom Tromey committed
836 837 838 839 840

    /**
     * <b>SAX2</b>:  ignored.
     */
    final public void endPrefixMapping (String prefix)
841
        {}
Tom Tromey committed
842 843

    private void writeStartTag (
844 845 846
        String name,
        Attributes atts,
        boolean isEmpty
Tom Tromey committed
847 848
    ) throws SAXException, IOException
    {
849 850
        rawWrite ('<');
        rawWrite (name);
Tom Tromey committed
851

852 853 854
        // write out attributes ... sorting is particularly useful
        // with output that's been heavily defaulted.
        if (atts != null && atts.getLength () != 0) {
Tom Tromey committed
855

856 857
            // Set up to write, with optional sorting
            int         indices [] = new int [atts.getLength ()];
Tom Tromey committed
858

859 860 861 862
            for (int i= 0; i < indices.length; i++)
                indices [i] = i;

            // optionally sort
Tom Tromey committed
863 864 865 866 867

// FIXME:  canon xml demands xmlns nodes go first,
// and sorting by URI first (empty first) then localname
// it should maybe use a different sort

868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900
            if (canonical || prettyPrinting) {

                // insertion sort by attribute name
                for (int i = 1; i < indices.length; i++) {
                    int n = indices [i], j;
                    String      s = atts.getQName (n);

                    for (j = i - 1; j >= 0; j--) {
                        if (s.compareTo (atts.getQName (indices [j]))
                                >= 0)
                            break;
                        indices [j + 1] = indices [j];
                    }
                    indices [j + 1] = n;
                }
            }

            // write, sorted or no
            for (int i= 0; i < indices.length; i++) {
                String  s = atts.getQName (indices [i]);

                    if (s == null || "".equals (s))
                        throw new IllegalArgumentException ("no XML name");
                rawWrite (" ");
                rawWrite (s);
                rawWrite ("=");
                writeQuotedValue (atts.getValue (indices [i]),
                    CTX_ATTRIBUTE);
            }
        }
        if (isEmpty)
            rawWrite (" /");
        rawWrite ('>');
Tom Tromey committed
901 902 903 904 905 906 907 908 909
    }

    /**
     * <b>SAX2</b>:  indicates the start of an element.
     * When XHTML is in use, avoid attribute values with
     * line breaks or multiple whitespace characters, since
     * not all user agents handle them correctly.
     */
    final public void startElement (
910 911 912 913
        String uri,
        String localName,
        String qName,
        Attributes atts
Tom Tromey committed
914 915
    ) throws SAXException
    {
916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955
        startedDoctype = false;

        if (locator == null)
            locator = new LocatorImpl ();

        if (qName == null || "".equals (qName))
            throw new IllegalArgumentException ("no XML name");

        try {
            if (entityNestLevel != 0)
                return;
            if (prettyPrinting) {
                String whitespace = null;

                if (xhtml && spacePreserve (qName))
                    whitespace = "preserve";
                else if (atts != null)
                    whitespace = atts.getValue ("xml:space");
                if (whitespace == null)
                    whitespace = (String) space.peek ();
                space.push (whitespace);

                if ("default".equals (whitespace)) {
                    if (xhtml) {
                        if (spaceBefore (qName)) {
                            newline ();
                            doIndent ();
                        } else if (indentBefore (qName))
                            doIndent ();
                        // else it's inlined, modulo line length
                        // FIXME: incrementing element nest level
                        // for inlined elements causes ugliness
                    } else
                        doIndent ();
                }
            }
            elementNestLevel++;
            writeStartTag (qName, atts, xhtml && isEmptyElementTag (qName));

            if (xhtml) {
Tom Tromey committed
956 957
// FIXME: if this is an XHTML "pre" element, turn
// off automatic wrapping.
958
            }
Tom Tromey committed
959

960 961 962
        } catch (IOException e) {
            fatal ("can't write", e);
        }
Tom Tromey committed
963 964 965 966 967 968 969
    }

    /**
     * Writes an empty element.
     * @see #startElement
     */
    public void writeEmptyElement (
970 971 972 973
        String uri,
        String localName,
        String qName,
        Attributes atts
Tom Tromey committed
974 975
    ) throws SAXException
    {
976 977 978 979 980 981 982 983 984 985
        if (canonical) {
            startElement (uri, localName, qName, atts);
            endElement (uri, localName, qName);
        } else {
            try {
                writeStartTag (qName, atts, true);
            } catch (IOException e) {
                fatal ("can't write", e);
            }
        }
Tom Tromey committed
986 987 988 989 990 991 992
    }


    /** <b>SAX2</b>:  indicates the end of an element */
    final public void endElement (String uri, String localName, String qName)
    throws SAXException
    {
993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017
        if (qName == null || "".equals (qName))
            throw new IllegalArgumentException ("no XML name");

        try {
            elementNestLevel--;
            if (entityNestLevel != 0)
                return;
            if (xhtml && isEmptyElementTag (qName))
                return;
            rawWrite ("</");
            rawWrite (qName);
            rawWrite ('>');

            if (prettyPrinting) {
                if (!space.empty ())
                    space.pop ();
                else
                    fatal ("stack discipline", null);
            }
            if (elementNestLevel == 0)
                inEpilogue = true;

        } catch (IOException e) {
            fatal ("can't write", e);
        }
Tom Tromey committed
1018 1019 1020 1021 1022 1023
    }

    /** <b>SAX1</b>:  reports content characters */
    final public void characters (char ch [], int start, int length)
    throws SAXException
    {
1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037
        if (locator == null)
            locator = new LocatorImpl ();

        try {
            if (entityNestLevel != 0)
                return;
            if (inCDATA) {
                escapeChars (ch, start, length, CTX_UNPARSED);
            } else {
                escapeChars (ch, start, length, CTX_CONTENT);
            }
        } catch (IOException e) {
            fatal ("can't write", e);
        }
Tom Tromey committed
1038 1039 1040 1041 1042 1043
    }

    /** <b>SAX1</b>:  reports ignorable whitespace */
    final public void ignorableWhitespace (char ch [], int start, int length)
    throws SAXException
    {
1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054
        if (locator == null)
            locator = new LocatorImpl ();

        try {
            if (entityNestLevel != 0)
                return;
            // don't forget to map NL to CRLF, CR, etc
            escapeChars (ch, start, length, CTX_CONTENT);
        } catch (IOException e) {
            fatal ("can't write", e);
        }
Tom Tromey committed
1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065
    }

    /**
     * <b>SAX1</b>:  reports a PI.
     * This doesn't check for illegal target names, such as "xml" or "XML",
     * or namespace-incompatible ones like "big:dog"; the caller is
     * responsible for ensuring those names are legal.
     */
    final public void processingInstruction (String target, String data)
    throws SAXException
    {
1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090
        if (locator == null)
            locator = new LocatorImpl ();

        // don't print internal subset for XHTML
        if (xhtml && startedDoctype)
            return;

        // ancient HTML browsers might render these ... their loss.
        // to prevent:  "if (xhtml) return;".

        try {
            if (entityNestLevel != 0)
                return;
            if (canonical && inEpilogue)
                newline ();
            rawWrite ("<?");
            rawWrite (target);
            rawWrite (' ');
            escapeChars (data.toCharArray (), -1, -1, CTX_UNPARSED);
            rawWrite ("?>");
            if (elementNestLevel == 0 && !(canonical && inEpilogue))
                newline ();
        } catch (IOException e) {
            fatal ("can't write", e);
        }
Tom Tromey committed
1091 1092 1093 1094 1095 1096
    }

    /** <b>SAX1</b>: indicates a non-expanded entity reference */
    public void skippedEntity (String name)
    throws SAXException
    {
1097 1098 1099 1100 1101 1102 1103
        try {
            rawWrite ("&");
            rawWrite (name);
            rawWrite (";");
        } catch (IOException e) {
            fatal ("can't write", e);
        }
Tom Tromey committed
1104 1105 1106 1107 1108 1109 1110 1111
    }

    // SAX2 LexicalHandler

    /** <b>SAX2</b>:  called before parsing CDATA characters */
    final public void startCDATA ()
    throws SAXException
    {
1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124
        if (locator == null)
            locator = new LocatorImpl ();

        if (canonical)
            return;

        try {
            inCDATA = true;
            if (entityNestLevel == 0)
                rawWrite ("<![CDATA[");
        } catch (IOException e) {
            fatal ("can't write", e);
        }
Tom Tromey committed
1125 1126 1127 1128 1129 1130
    }

    /** <b>SAX2</b>:  called after parsing CDATA characters */
    final public void endCDATA ()
    throws SAXException
    {
1131 1132 1133 1134 1135 1136 1137 1138 1139 1140
        if (canonical)
            return;

        try {
            inCDATA = false;
            if (entityNestLevel == 0)
                rawWrite ("]]>");
        } catch (IOException e) {
            fatal ("can't write", e);
        }
Tom Tromey committed
1141 1142 1143 1144 1145 1146 1147 1148 1149 1150
    }

    /**
     * <b>SAX2</b>:  called when the doctype is partially parsed
     * Note that this, like other doctype related calls, is ignored
     * when XHTML is in use.
     */
    final public void startDTD (String name, String publicId, String systemId)
    throws SAXException
    {
1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174
        if (locator == null)
            locator = new LocatorImpl ();
        if (xhtml)
            return;
        try {
            inDoctype = startedDoctype = true;
            if (canonical)
                return;
            rawWrite ("<!DOCTYPE ");
            rawWrite (name);
            rawWrite (' ');

            if (!expandingEntities) {
                if (publicId != null)
                    rawWrite ("PUBLIC '" + publicId + "' '" + systemId + "' ");
                else if (systemId != null)
                    rawWrite ("SYSTEM '" + systemId + "' ");
            }

            rawWrite ('[');
            newline ();
        } catch (IOException e) {
            fatal ("can't write", e);
        }
Tom Tromey committed
1175 1176 1177 1178 1179 1180
    }

    /** <b>SAX2</b>:  called after the doctype is parsed */
    final public void endDTD ()
    throws SAXException
    {
1181 1182 1183 1184 1185 1186 1187 1188 1189
        inDoctype = false;
        if (canonical || xhtml)
            return;
        try {
            rawWrite ("]>");
            newline ();
        } catch (IOException e) {
            fatal ("can't write", e);
        }
Tom Tromey committed
1190 1191 1192 1193 1194 1195 1196 1197
    }

    /**
     * <b>SAX2</b>:  called before parsing a general entity in content
     */
    final public void startEntity (String name)
    throws SAXException
    {
1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221
        try {
            boolean     writeEOL = true;

            // Predefined XHTML entities (for characters) will get
            // mapped back later.
            if (xhtml || expandingEntities)
                return;

            entityNestLevel++;
            if (name.equals ("[dtd]"))
                return;
            if (entityNestLevel != 1)
                return;
            if (!name.startsWith ("%")) {
                writeEOL = false;
                rawWrite ('&');
            }
            rawWrite (name);
            rawWrite (';');
            if (writeEOL)
                newline ();
        } catch (IOException e) {
            fatal ("can't write", e);
        }
Tom Tromey committed
1222 1223 1224 1225 1226 1227 1228 1229
    }

    /**
     * <b>SAX2</b>:  called after parsing a general entity in content
     */
    final public void endEntity (String name)
    throws SAXException
    {
1230 1231 1232
        if (xhtml || expandingEntities)
            return;
        entityNestLevel--;
Tom Tromey committed
1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245
    }

    /**
     * <b>SAX2</b>:  called when comments are parsed.
     * When XHTML is used, the old HTML tradition of using comments
     * to for inline CSS, or for JavaScript code is  discouraged.
     * This is because XML processors are encouraged to discard, on
     * the grounds that comments are for users (and perhaps text
     * editors) not programs.  Instead, use external scripts
     */
    final public void comment (char ch [], int start, int length)
    throws SAXException
    {
1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277
        if (locator == null)
            locator = new LocatorImpl ();

        // don't print internal subset for XHTML
        if (xhtml && startedDoctype)
            return;
        // don't print comment in doctype for canon xml
        if (canonical && inDoctype)
            return;

        try {
            boolean indent;

            if (prettyPrinting && space.empty ())
                fatal ("stack discipline", null);
            indent = prettyPrinting && "default".equals (space.peek ());
            if (entityNestLevel != 0)
                return;
            if (indent)
                doIndent ();
            if (canonical && inEpilogue)
                newline ();
            rawWrite ("<!--");
            escapeChars (ch, start, length, CTX_UNPARSED);
            rawWrite ("-->");
            if (indent)
                doIndent ();
            if (elementNestLevel == 0 && !(canonical && inEpilogue))
                newline ();
        } catch (IOException e) {
            fatal ("can't write", e);
        }
Tom Tromey committed
1278 1279 1280 1281 1282 1283
    }

    // SAX1 DTDHandler

    /** <b>SAX1</b>:  called on notation declarations */
    final public void notationDecl (String name,
1284
        String publicId, String systemId)
Tom Tromey committed
1285 1286
    throws SAXException
    {
1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307
        if (xhtml)
            return;
        try {
            // At this time, only SAX2 callbacks start these.
            if (!startedDoctype)
                return;

            if (entityNestLevel != 0)
                return;
            rawWrite ("<!NOTATION " + name + " ");
            if (publicId != null)
                rawWrite ("PUBLIC \"" + publicId + '"');
            else
                rawWrite ("SYSTEM ");
            if (systemId != null)
                rawWrite ('"' + systemId + '"');
            rawWrite (">");
            newline ();
        } catch (IOException e) {
            fatal ("can't write", e);
        }
Tom Tromey committed
1308 1309 1310 1311
    }

    /** <b>SAX1</b>:  called on unparsed entity declarations */
    final public void unparsedEntityDecl (String name,
1312 1313
        String publicId, String systemId,
        String notationName)
Tom Tromey committed
1314 1315
    throws SAXException
    {
1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338
        if (xhtml)
            return;
        try {
            // At this time, only SAX2 callbacks start these.
            if (!startedDoctype)  {
                // FIXME: write to temporary buffer, and make the start
                // of the root element write these declarations.
                return;
            }

            if (entityNestLevel != 0)
                return;
            rawWrite ("<!ENTITY " + name + " ");
            if (publicId != null)
                rawWrite ("PUBLIC \"" + publicId + '"');
            else
                rawWrite ("SYSTEM ");
            rawWrite ('"' + systemId + '"');
            rawWrite (" NDATA " + notationName + ">");
            newline ();
        } catch (IOException e) {
            fatal ("can't write", e);
        }
Tom Tromey committed
1339 1340 1341 1342 1343 1344
    }

    // SAX2 DeclHandler

    /** <b>SAX2</b>:  called on attribute declarations */
    final public void attributeDecl (String eName, String aName,
1345
            String type, String mode, String value)
Tom Tromey committed
1346 1347
    throws SAXException
    {
1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367
        if (xhtml)
            return;
        try {
            // At this time, only SAX2 callbacks start these.
            if (!startedDoctype)
                return;
            if (entityNestLevel != 0)
                return;
            rawWrite ("<!ATTLIST " + eName + ' ' + aName + ' ');
            rawWrite (type);
            rawWrite (' ');
            if (mode != null)
                rawWrite (mode + ' ');
            if (value != null)
                writeQuotedValue (value, CTX_ATTRIBUTE);
            rawWrite ('>');
            newline ();
        } catch (IOException e) {
            fatal ("can't write", e);
        }
Tom Tromey committed
1368 1369 1370 1371 1372 1373
    }

    /** <b>SAX2</b>:  called on element declarations */
    final public void elementDecl (String name, String model)
    throws SAXException
    {
1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386
        if (xhtml)
            return;
        try {
            // At this time, only SAX2 callbacks start these.
            if (!startedDoctype)
                return;
            if (entityNestLevel != 0)
                return;
            rawWrite ("<!ELEMENT " + name + ' ' + model + '>');
            newline ();
        } catch (IOException e) {
            fatal ("can't write", e);
        }
Tom Tromey committed
1387 1388 1389 1390
    }

    /** <b>SAX2</b>:  called on external entity declarations */
    final public void externalEntityDecl (
1391 1392 1393
        String name,
        String publicId,
        String systemId)
Tom Tromey committed
1394 1395
    throws SAXException
    {
1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418
        if (xhtml)
            return;
        try {
            // At this time, only SAX2 callbacks start these.
            if (!startedDoctype)
                return;
            if (entityNestLevel != 0)
                return;
            rawWrite ("<!ENTITY ");
            if (name.startsWith ("%")) {
                rawWrite ("% ");
                rawWrite (name.substring (1));
            } else
                rawWrite (name);
            if (publicId != null)
                rawWrite (" PUBLIC \"" + publicId + '"');
            else
                rawWrite (" SYSTEM ");
            rawWrite ('"' + systemId + "\">");
            newline ();
        } catch (IOException e) {
            fatal ("can't write", e);
        }
Tom Tromey committed
1419 1420 1421 1422 1423 1424
    }

    /** <b>SAX2</b>:  called on internal entity declarations */
    final public void internalEntityDecl (String name, String value)
    throws SAXException
    {
1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445
        if (xhtml)
            return;
        try {
            // At this time, only SAX2 callbacks start these.
            if (!startedDoctype)
                return;
            if (entityNestLevel != 0)
                return;
            rawWrite ("<!ENTITY ");
            if (name.startsWith ("%")) {
                rawWrite ("% ");
                rawWrite (name.substring (1));
            } else
                rawWrite (name);
            rawWrite (' ');
            writeQuotedValue (value, CTX_ENTITY);
            rawWrite ('>');
            newline ();
        } catch (IOException e) {
            fatal ("can't write", e);
        }
Tom Tromey committed
1446 1447 1448 1449 1450
    }

    private void writeQuotedValue (String value, int code)
    throws SAXException, IOException
    {
1451 1452 1453 1454 1455 1456 1457 1458 1459
        char    buf [] = value.toCharArray ();
        int     off = 0, len = buf.length;

        // we can't add line breaks to attribute/entity/... values
        noWrap = true;
        rawWrite ('"');
        escapeChars (buf, off, len, code);
        rawWrite ('"');
        noWrap = false;
Tom Tromey committed
1460
    }
1461

Tom Tromey committed
1462 1463 1464 1465
    // From "HTMLlat1x.ent" ... names of entities for ISO-8859-1
    // (Latin/1) characters, all codes:  160-255 (0xA0-0xFF).
    // Codes 128-159 have no assigned values.
    private static final String HTMLlat1x [] = {
1466 1467 1468
        // 160
        "nbsp", "iexcl", "cent", "pound", "curren",
        "yen", "brvbar", "sect", "uml", "copy",
Tom Tromey committed
1469

1470 1471 1472
        // 170
        "ordf", "laquo", "not", "shy", "reg",
        "macr", "deg", "plusmn", "sup2", "sup3",
Tom Tromey committed
1473

1474 1475 1476
        // 180
        "acute", "micro", "para", "middot", "cedil",
        "sup1", "ordm", "raquo", "frac14", "frac12",
Tom Tromey committed
1477

1478 1479 1480
        // 190
        "frac34", "iquest", "Agrave", "Aacute", "Acirc",
        "Atilde", "Auml", "Aring", "AElig", "Ccedil",
Tom Tromey committed
1481

1482 1483 1484
        // 200
        "Egrave", "Eacute", "Ecirc", "Euml", "Igrave",
        "Iacute", "Icirc", "Iuml", "ETH", "Ntilde",
Tom Tromey committed
1485

1486 1487 1488
        // 210
        "Ograve", "Oacute", "Ocirc", "Otilde", "Ouml",
        "times", "Oslash", "Ugrave", "Uacute", "Ucirc",
Tom Tromey committed
1489

1490 1491 1492
        // 220
        "Uuml", "Yacute", "THORN", "szlig", "agrave",
        "aacute", "acirc", "atilde", "auml", "aring",
Tom Tromey committed
1493

1494 1495 1496
        // 230
        "aelig", "ccedil", "egrave", "eacute", "ecirc",
        "euml", "igrave", "iacute", "icirc", "iuml",
Tom Tromey committed
1497

1498 1499 1500
        // 240
        "eth", "ntilde", "ograve", "oacute", "ocirc",
        "otilde", "ouml", "divide", "oslash", "ugrave",
Tom Tromey committed
1501

1502 1503 1504
        // 250
        "uacute", "ucirc", "uuml", "yacute", "thorn",
        "yuml"
Tom Tromey committed
1505 1506 1507 1508 1509 1510
    };

    // From "HTMLsymbolx.ent" ... some of the symbols that
    // we can conveniently handle.  Entities for the Greek.
    // alphabet (upper and lower cases) are compact.
    private static final String HTMLsymbolx_GR [] = {
1511 1512 1513
        // 913
        "Alpha", "Beta", "Gamma", "Delta", "Epsilon",
        "Zeta", "Eta", "Theta", "Iota", "Kappa",
Tom Tromey committed
1514

1515 1516 1517
        // 923
        "Lambda", "Mu", "Nu", "Xi", "Omicron",
        "Pi", "Rho", null, "Sigma", "Tau",
Tom Tromey committed
1518

1519 1520
        // 933
        "Upsilon", "Phi", "Chi", "Psi", "Omega"
Tom Tromey committed
1521 1522 1523
    };

    private static final String HTMLsymbolx_gr [] = {
1524 1525 1526
        // 945
        "alpha", "beta", "gamma", "delta", "epsilon",
        "zeta", "eta", "theta", "iota", "kappa",
Tom Tromey committed
1527

1528 1529 1530
        // 955
        "lambda", "mu", "nu", "xi", "omicron",
        "pi", "rho", "sigmaf", "sigma", "tau",
Tom Tromey committed
1531

1532 1533
        // 965
        "upsilon", "phi", "chi", "psi", "omega"
Tom Tromey committed
1534 1535 1536 1537 1538 1539 1540 1541
    };


    // General routine to write text and substitute predefined
    // entities (XML, and a special case for XHTML) as needed.
    private void escapeChars (char buf [], int off, int len, int code)
    throws SAXException, IOException
    {
1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624
        int     first = 0;

        if (off < 0) {
            off = 0;
            len = buf.length;
        }
        for (int i = 0; i < len; i++) {
            String      esc;
            char        c = buf [off + i];

            switch (c) {
              // Note that CTX_ATTRIBUTE isn't explicitly tested here;
              // all syntax delimiters are escaped in CTX_ATTRIBUTE,
              // otherwise it's similar to CTX_CONTENT

              // ampersand flags entity references; entity replacement
              // text has unexpanded references, other text doesn't.
              case '&':
                if (code == CTX_ENTITY || code == CTX_UNPARSED)
                    continue;
                esc = "amp";
                break;

              // attributes and text may NOT have literal '<', but
              // entities may have markup constructs
              case '<':
                if (code == CTX_ENTITY || code == CTX_UNPARSED)
                    continue;
                esc = "lt";
                break;

              // as above re markup constructs; but otherwise
              // except when canonicalizing, this is for consistency
              case '>':
                if (code == CTX_ENTITY || code == CTX_UNPARSED)
                    continue;
                esc = "gt";
                break;
              case '\'':
                if (code == CTX_CONTENT || code == CTX_UNPARSED)
                    continue;
                if (canonical)
                    continue;
                esc = "apos";
                break;

              // needed when printing quoted attribute/entity values
              case '"':
                if (code == CTX_CONTENT || code == CTX_UNPARSED)
                    continue;
                esc = "quot";
                break;

              // make line ends work per host OS convention
              case '\n':
                esc = eol;
                break;

              //
              // No other characters NEED special treatment ... except
              // for encoding-specific issues, like whether the character
              // can really be represented in that encoding.
              //
              default:
                //
                // There are characters we can never write safely; getting
                // them is an error.
                //
                //   (a) They're never legal in XML ... detected by range
                //      checks, and (eventually) by remerging surrogate
                //      pairs on output.  (Easy error for apps to prevent.)
                //
                //   (b) This encoding can't represent them, and we
                //      can't make reference substitution (e.g. inside
                //      CDATA sections, names, PI data, etc).  (Hard for
                //      apps to prevent, except by using UTF-8 or UTF-16
                //      as their output encoding.)
                //
                // We know a very little bit about what characters
                // the US-ASCII and ISO-8859-1 encodings support.  For
                // other encodings we can't detect the second type of
                // error at all.  (Never an issue for UTF-8 or UTF-16.)
                //
Tom Tromey committed
1625 1626 1627 1628 1629

// FIXME:  CR in CDATA is an error; in text, turn to a char ref

// FIXME:  CR/LF/TAB in attributes should become char refs

1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803
                if ((c > 0xfffd)
                        || ((c < 0x0020) && !((c == 0x0009)
                                || (c == 0x000A) || (c == 0x000D)))
                        || (((c & dangerMask) != 0)
                            && (code == CTX_UNPARSED))) {

                    // if case (b) in CDATA, we might end the section,
                    // write a reference, then restart ... possible
                    // in one DOM L3 draft.

                    throw new CharConversionException (
                            "Illegal or non-writable character: U+"
                            + Integer.toHexString (c));
                }

                //
                // If the output encoding represents the character
                // directly, let it do so!  Else we'll escape it.
                //
                if ((c & dangerMask) == 0)
                    continue;
                esc = null;

                // Avoid numeric refs where symbolic ones exist, as
                // symbolic ones make more sense to humans reading!
                if (xhtml) {
                    // all the HTMLlat1x.ent entities
                    // (all the "ISO-8859-1" characters)
                    if (c >= 160 && c <= 255)
                        esc = HTMLlat1x [c - 160];

                    // not quite half the HTMLsymbolx.ent entities
                    else if (c >= 913 && c <= 937)
                        esc = HTMLsymbolx_GR [c - 913];
                    else if (c >= 945 && c <= 969)
                        esc = HTMLsymbolx_gr [c - 945];

                    else switch (c) {
                        // all of the HTMLspecialx.ent entities
                        case  338: esc = "OElig";       break;
                        case  339: esc = "oelig";       break;
                        case  352: esc = "Scaron";      break;
                        case  353: esc = "scaron";      break;
                        case  376: esc = "Yuml";        break;
                        case  710: esc = "circ";        break;
                        case  732: esc = "tilde";       break;
                        case 8194: esc = "ensp";        break;
                        case 8195: esc = "emsp";        break;
                        case 8201: esc = "thinsp";      break;
                        case 8204: esc = "zwnj";        break;
                        case 8205: esc = "zwj";         break;
                        case 8206: esc = "lrm";         break;
                        case 8207: esc = "rlm";         break;
                        case 8211: esc = "ndash";       break;
                        case 8212: esc = "mdash";       break;
                        case 8216: esc = "lsquo";       break;
                        case 8217: esc = "rsquo";       break;
                        case 8218: esc = "sbquo";       break;
                        case 8220: esc = "ldquo";       break;
                        case 8221: esc = "rdquo";       break;
                        case 8222: esc = "bdquo";       break;
                        case 8224: esc = "dagger";      break;
                        case 8225: esc = "Dagger";      break;
                        case 8240: esc = "permil";      break;
                        case 8249: esc = "lsaquo";      break;
                        case 8250: esc = "rsaquo";      break;
                        case 8364: esc = "euro";        break;

                        // the other HTMLsymbox.ent entities
                        case  402: esc = "fnof";        break;
                        case  977: esc = "thetasym";    break;
                        case  978: esc = "upsih";       break;
                        case  982: esc = "piv";         break;
                        case 8226: esc = "bull";        break;
                        case 8230: esc = "hellip";      break;
                        case 8242: esc = "prime";       break;
                        case 8243: esc = "Prime";       break;
                        case 8254: esc = "oline";       break;
                        case 8260: esc = "frasl";       break;
                        case 8472: esc = "weierp";      break;
                        case 8465: esc = "image";       break;
                        case 8476: esc = "real";        break;
                        case 8482: esc = "trade";       break;
                        case 8501: esc = "alefsym";     break;
                        case 8592: esc = "larr";        break;
                        case 8593: esc = "uarr";        break;
                        case 8594: esc = "rarr";        break;
                        case 8595: esc = "darr";        break;
                        case 8596: esc = "harr";        break;
                        case 8629: esc = "crarr";       break;
                        case 8656: esc = "lArr";        break;
                        case 8657: esc = "uArr";        break;
                        case 8658: esc = "rArr";        break;
                        case 8659: esc = "dArr";        break;
                        case 8660: esc = "hArr";        break;
                        case 8704: esc = "forall";      break;
                        case 8706: esc = "part";        break;
                        case 8707: esc = "exist";       break;
                        case 8709: esc = "empty";       break;
                        case 8711: esc = "nabla";       break;
                        case 8712: esc = "isin";        break;
                        case 8713: esc = "notin";       break;
                        case 8715: esc = "ni";          break;
                        case 8719: esc = "prod";        break;
                        case 8721: esc = "sum";         break;
                        case 8722: esc = "minus";       break;
                        case 8727: esc = "lowast";      break;
                        case 8730: esc = "radic";       break;
                        case 8733: esc = "prop";        break;
                        case 8734: esc = "infin";       break;
                        case 8736: esc = "ang";         break;
                        case 8743: esc = "and";         break;
                        case 8744: esc = "or";          break;
                        case 8745: esc = "cap";         break;
                        case 8746: esc = "cup";         break;
                        case 8747: esc = "int";         break;
                        case 8756: esc = "there4";      break;
                        case 8764: esc = "sim";         break;
                        case 8773: esc = "cong";        break;
                        case 8776: esc = "asymp";       break;
                        case 8800: esc = "ne";          break;
                        case 8801: esc = "equiv";       break;
                        case 8804: esc = "le";          break;
                        case 8805: esc = "ge";          break;
                        case 8834: esc = "sub";         break;
                        case 8835: esc = "sup";         break;
                        case 8836: esc = "nsub";        break;
                        case 8838: esc = "sube";        break;
                        case 8839: esc = "supe";        break;
                        case 8853: esc = "oplus";       break;
                        case 8855: esc = "otimes";      break;
                        case 8869: esc = "perp";        break;
                        case 8901: esc = "sdot";        break;
                        case 8968: esc = "lceil";       break;
                        case 8969: esc = "rceil";       break;
                        case 8970: esc = "lfloor";      break;
                        case 8971: esc = "rfloor";      break;
                        case 9001: esc = "lang";        break;
                        case 9002: esc = "rang";        break;
                        case 9674: esc = "loz";         break;
                        case 9824: esc = "spades";      break;
                        case 9827: esc = "clubs";       break;
                        case 9829: esc = "hearts";      break;
                        case 9830: esc = "diams";       break;
                    }
                }

                // else escape with numeric char refs
                if (esc == null) {
                    stringBuf.setLength (0);
                    stringBuf.append ("#x");
                    stringBuf.append (Integer.toHexString (c).toUpperCase ());
                    esc = stringBuf.toString ();

                    // FIXME:  We don't write surrogate pairs correctly.
                    // They should work as one ref per character, since
                    // each pair is one character.  For reading back into
                    // Unicode, it matters beginning in Unicode 3.1 ...
                }
                break;
            }
            if (i != first)
                rawWrite (buf, off + first, i - first);
            first = i + 1;
            if (esc == eol)
                newline ();
            else {
                rawWrite ('&');
                rawWrite (esc);
                rawWrite (';');
            }
        }
        if (first < len)
            rawWrite (buf, off + first, len - first);
Tom Tromey committed
1804 1805 1806 1807 1808 1809 1810
    }



    private void newline ()
    throws SAXException, IOException
    {
1811 1812
        out.write (eol);
        column = 0;
Tom Tromey committed
1813 1814 1815 1816 1817
    }

    private void doIndent ()
    throws SAXException, IOException
    {
1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830
        int     space = elementNestLevel * 2;

        newline ();
        column = space;
        // track tabs only at line starts
        while (space > 8) {
            out.write ("\t");
            space -= 8;
        }
        while (space > 0) {
            out.write ("  ");
            space -= 2;
        }
Tom Tromey committed
1831 1832 1833 1834 1835
    }

    private void rawWrite (char c)
    throws IOException
    {
1836 1837
        out.write (c);
        column++;
Tom Tromey committed
1838 1839 1840 1841 1842
    }

    private void rawWrite (String s)
    throws SAXException, IOException
    {
1843 1844 1845 1846 1847 1848 1849
        if (prettyPrinting && "default".equals (space.peek ())) {
            char data [] = s.toCharArray ();
            rawWrite (data, 0, data.length);
        } else {
            out.write (s);
            column += s.length ();
        }
Tom Tromey committed
1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864
    }

    // NOTE:  if xhtml, the REC gives some rules about whitespace
    // which we could follow ... notably, many places where conformant
    // agents "must" consolidate/normalize whitespace.  Line ends can
    // be removed there, etc.  This may not be the right place to do
    // such mappings though.

    // Line buffering may help clarify algorithms and improve results.

    // It's likely xml:space needs more attention.

    private void rawWrite (char buf [], int offset, int length)
    throws SAXException, IOException
    {
1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929
        boolean         wrap;

        if (prettyPrinting && space.empty ())
            fatal ("stack discipline", null);

        wrap = prettyPrinting && "default".equals (space.peek ());
        if (!wrap) {
            out.write (buf, offset, length);
            column += length;
            return;
        }

        // we're pretty printing and want to fill lines out only
        // to the desired line length.
        while (length > 0) {
            int         target = lineLength - column;
            boolean     wrote = false;

            // Do we even have a problem?
            if (target > length || noWrap) {
                out.write (buf, offset, length);
                column += length;
                return;
            }

            // break the line at a space character, trying to fill
            // as much of the line as possible.
            char        c;

            for (int i = target - 1; i >= 0; i--) {
                if ((c = buf [offset + i]) == ' ' || c == '\t') {
                    i++;
                    out.write (buf, offset, i);
                    doIndent ();
                    offset += i;
                    length -= i;
                    wrote = true;
                    break;
                }
            }
            if (wrote)
                continue;

            // no space character permitting break before target
            // line length is filled.  So, take the next one.
            if (target < 0)
                target = 0;
            for (int i = target; i < length; i++)
                if ((c = buf [offset + i]) == ' ' || c == '\t') {
                    i++;
                    out.write (buf, offset, i);
                    doIndent ();
                    offset += i;
                    length -= i;
                    wrote = true;
                    break;
                }
            if (wrote)
                continue;

            // no such luck.
            out.write (buf, offset, length);
            column += length;
            break;
        }
Tom Tromey committed
1930 1931
    }
}