All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jibx.runtime.IXMLWriter Maven / Gradle / Ivy

There is a newer version: 1.4.2
Show newest version
/*
Copyright (c) 2004-2008, Dennis M. Sosnoski.
All rights reserved.

Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:

 * Redistributions of source code must retain the above copyright notice, this
   list of conditions and the following disclaimer.
 * Redistributions in binary form must reproduce the above copyright notice,
   this list of conditions and the following disclaimer in the documentation
   and/or other materials provided with the distribution.
 * Neither the name of JiBX nor the names of its contributors may be used
   to endorse or promote products derived from this software without specific
   prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

package org.jibx.runtime;

import java.io.IOException;

/**
 * XML writer interface used for output of marshalled document. This interface
 * allows easy substitution of different output formats, including parse event
 * stream equivalents. This makes heavy use of state information, so each
 * method call defined is only valid in certain states.
 *
 * @author Dennis M. Sosnoski
 */
public interface IXMLWriter
{
    /**
     * Initialize writer.
     * 
     * @throws IOException 
     */
    void init() throws IOException;
    
    /**
     * Get the current element nesting depth. Elements are only counted in the
     * depth returned when they're officially open - after the start tag has
     * been output and before the end tag has been output.
     *
     * @return number of nested elements at current point in output
     */
    int getNestingDepth();
    
    /**
     * Get the number of namespaces currently defined. This is equivalent to the
     * index of the next extension namespace added.
     *
     * @return namespace count
     */
    int getNamespaceCount();
        
    /**
     * Set nesting indentation. This is advisory only, and implementations of
     * this interface are free to ignore it. The intent is to indicate that the
     * generated output should use indenting to illustrate element nesting.
     *
     * @param count number of character to indent per level, or disable
     * indentation if negative (zero means new line only)
     * @param newline sequence of characters used for a line ending
     * (null means use the single character '\n')
     * @param indent whitespace character used for indentation
     */
    void setIndentSpaces(int count, String newline, char indent);
        
    /**
     * Write XML declaration to document. This can only be called before any
     * other methods in the interface are called.
     *
     * @param version XML version text
     * @param encoding text for encoding attribute (unspecified if
     * null)
     * @param standalone text for standalone attribute (unspecified if
     * null)
     * @throws IOException on error writing to document
     */
    void writeXMLDecl(String version, String encoding, String standalone)
        throws IOException;
    
    /**
     * Generate open start tag. This allows attributes and/or namespace
     * declarations to be added to the start tag, but must be followed by a
     * {@link #closeStartTag} call.
     *
     * @param index namespace URI index number
     * @param name unqualified element name
     * @throws IOException on error writing to document
     */
    void startTagOpen(int index, String name) throws IOException;
    
    /**
     * Generate start tag for element with namespaces. This creates the actual
     * start tag, along with any necessary namespace declarations. Previously
     * active namespace declarations are not duplicated. The tag is
     * left incomplete, allowing other attributes to be added.
     *
     * @param index namespace URI index number
     * @param name element name
     * @param nums array of namespace indexes defined by this element (must
     * be constant, reference is kept until end of element)
     * @param prefs array of namespace prefixes mapped by this element (no
     * null values, use "" for default namespace declaration)
     * @throws IOException on error writing to document
     */
    void startTagNamespaces(int index, String name, int[] nums, String[] prefs)
        throws IOException;
     
    /**
     * Add attribute to current open start tag. This is only valid after a call
     * to {@link #startTagOpen} and before the corresponding call to {@link
     * #closeStartTag}.
     *
     * @param index namespace URI index number
     * @param name unqualified attribute name
     * @param value text value for attribute
     * @throws IOException on error writing to document
     */
    void addAttribute(int index, String name, String value) throws IOException;
    
    /**
     * Close the current open start tag. This is only valid after a call to
     * {@link #startTagOpen}.
     *
     * @throws IOException on error writing to document
     */
    void closeStartTag() throws IOException;
    
    /**
     * Close the current open start tag as an empty element. This is only valid
     * after a call to {@link #startTagOpen}.
     *
     * @throws IOException on error writing to document
     */
    void closeEmptyTag() throws IOException;
    
    /**
     * Generate closed start tag. No attributes or namespaces can be added to a
     * start tag written using this call.
     *
     * @param index namespace URI index number
     * @param name unqualified element name
     * @throws IOException on error writing to document
     */
    void startTagClosed(int index, String name) throws IOException;
    
    /**
     * Generate end tag.
     *
     * @param index namespace URI index number
     * @param name unqualified element name
     * @throws IOException on error writing to document
     */
    void endTag(int index, String name) throws IOException;
    
    /**
     * Write ordinary character data text content to document.
     *
     * @param text content value text (must not be null)
     * @throws IOException on error writing to document
     */
    void writeTextContent(String text) throws IOException;
    
    /**
     * Write CDATA text to document.
     *
     * @param text content value text (must not be null)
     * @throws IOException on error writing to document
     */
    void writeCData(String text) throws IOException;
    
    /**
     * Write comment to document.
     *
     * @param text comment text (must not be null)
     * @throws IOException on error writing to document
     */
    void writeComment(String text) throws IOException;
    
    /**
     * Write entity reference to document.
     *
     * @param name entity name (must not be null)
     * @throws IOException on error writing to document
     */
    void writeEntityRef(String name) throws IOException;
    
    /**
     * Write DOCTYPE declaration to document.
     *
     * @param name root element name
     * @param sys system ID (null if none, must be
     * non-null for public ID to be used)
     * @param pub public ID (null if none)
     * @param subset internal subset (null if none)
     * @throws IOException on error writing to document
     */
    void writeDocType(String name, String sys, String pub, String subset)
        throws IOException;
    
    /**
     * Write processing instruction to document.
     *
     * @param target processing instruction target name (must not be
     * null)
     * @param data processing instruction data (must not be null)
     * @throws IOException on error writing to document
     */
    void writePI(String target, String data) throws IOException;
    
    /**
     * Request output indent. The writer implementation should normally indent
     * output as appropriate. This method can be used to request indenting of
     * output that might otherwise not be indented. The normal effect when used
     * with a text-oriented writer should be to output the appropriate line end
     * sequence followed by the appropriate number of indent characters for the
     * current nesting level.
     *
     * @throws IOException on error writing to document
     */
    void indent() throws IOException;
    
    /**
     * Flush document output. Writes any buffered data to the output medium.
     * This does not flush the output medium itself, only any internal
     * buffering within the writer.
     *
     * @throws IOException on error writing to document
     */
    void flush() throws IOException;
    
    /**
     * Close document output. Completes writing of document output, including
     * flushing and closing the output medium.
     *
     * @throws IOException on error writing to document
     */
    void close() throws IOException;
    
    /**
     * Reset to initial state for reuse. The writer is serially reusable, as
     * long as this method is called to clear any retained state information
     * between uses.
     */
    void reset();
    
    /**
     * Get namespace URIs for mapping. This gets the full ordered array of
     * namespaces known in the binding used for this marshalling, where the
     * index number of each namespace URI is the namespace index used to lookup
     * the prefix when marshalling a name in that namespace. The returned array
     * must not be modified.
     *
     * @return array of namespaces
     */
    String[] getNamespaces();
    
    /**
     * Get URI for namespace.
     *
     * @param index namespace URI index number
     * @return namespace URI text, or null if the namespace index
     * is invalid
     */
    String getNamespaceUri(int index);
    
    /**
     * Get current prefix defined for namespace.
     *
     * @param index namespace URI index number
     * @return current prefix text, or null if the namespace is not
     * currently mapped
     */
    String getNamespacePrefix(int index);
    
    /**
     * Get index of namespace mapped to prefix. This can be an expensive
     * operation with time proportional to the number of namespaces defined, so
     * it should be used with care.
     * 
     * @param prefix text to match  (non-null, use "" for default
     * prefix)
     * @return index namespace URI index number mapped to prefix
     */
    int getPrefixIndex(String prefix);
    
    /**
     * Append extension namespace URIs to those in mapping.
     *
     * @param uris namespace URIs to extend those in mapping
     */
    void pushExtensionNamespaces(String[] uris);
    
    /**
     * Remove extension namespace URIs. This removes the last set of
     * extension namespaces pushed using {@link #pushExtensionNamespaces}.
     */
    void popExtensionNamespaces();
    
    /**
     * Get extension namespace URIs added to those in mapping. This gets the
     * current set of extension definitions. The returned arrays must not be
     * modified.
     *
     * @return array of arrays of extension namespaces (null if
     * none)
     */
    String[][] getExtensionNamespaces();
    
    /**
     * Open the specified namespaces for use. This method is normally only
     * called internally, when namespace declarations are actually written to
     * output. It is exposed as part of this interface to allow for special
     * circumstances where namespaces are being written outside the usual
     * processing. The namespaces will remain open for use until the current
     * element is closed.
     *
     * @param nums array of namespace indexes defined by this element (reference
     * kept until namespaces are closed, values may be modified by this method)
     * @param prefs array of namespace prefixes mapped by this element (no
     * null values, use "" for default namespace declaration)
     * @return array of indexes for namespaces not previously active (the ones
     * actually needing to be declared, in the case of text output)
     * @throws IOException on error writing to document
     */
    int[] openNamespaces(int[] nums, String[] prefs) throws IOException;
    
    /**
     * Push a translation table to be used for converting namespace index
     * numbers passed as arguments to values used for internal lookup. This
     * allows a layer of indirection between the client code and the
     * namespace definitions, designed for use in supporting precompiled
     * bindings. The translated values must match the internal tables.
     *
     * @param table translation table to be used (null if no
     * change)
     */
    void pushTranslationTable(int[] table);
    
    /**
     * Pop a translation table used for converting namespace index numbers to
     * values matching the internal lookup.
     */
    void popTranslationTable();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy