org.jdom2.input.sax.SAXEngine Maven / Gradle / Ivy
Show all versions of jdom Show documentation
/*--
Copyright (C) 2011 Jason Hunter & Brett McLaughlin.
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions, and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions, and the disclaimer that follows
these conditions in the documentation and/or other materials
provided with the distribution.
3. The name "JDOM" must not be used to endorse or promote products
derived from this software without prior written permission. For
written permission, please contact .
4. Products derived from this software may not be called "JDOM", nor
may "JDOM" appear in their name, without prior written permission
from the JDOM Project Management .
In addition, we request (but do not require) that you include in the
end-user documentation provided with the redistribution and/or in the
software itself an acknowledgement equivalent to the following:
"This product includes software developed by the
JDOM Project (http://www.jdom.org/)."
Alternatively, the acknowledgment may be graphical using the logos
available at http://www.jdom.org/images/logos.
THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED 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 JDOM AUTHORS OR THE PROJECT
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.
This software consists of voluntary contributions made by many
individuals on behalf of the JDOM Project and was originally
created by Jason Hunter and
Brett McLaughlin . For more information
on the JDOM Project, please see .
*/
package org.jdom2.input.sax;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.io.Reader;
import java.net.URL;
import org.xml.sax.DTDHandler;
import org.xml.sax.EntityResolver;
import org.xml.sax.ErrorHandler;
import org.xml.sax.InputSource;
import org.jdom2.Document;
import org.jdom2.JDOMException;
import org.jdom2.JDOMFactory;
/**
* SAXEngine provides an interface to interact with either the SAXBuilder or the
* SAXBuilderEngine. This makes it possible to do pooling of SAXEngines for
* parsing using instances of either SAXBuilder or SAXBuilderEngine.
*
* @see org.jdom2.input.sax
* @author Rolf Lear
*/
public interface SAXEngine {
/**
* Returns the current {@link org.jdom2.JDOMFactory} in use.
*
* @return the factory in use
*/
public abstract JDOMFactory getJDOMFactory();
/**
* Returns whether validation is to be performed during the build.
*
* @return whether validation is to be performed during the build
*/
public abstract boolean isValidating();
/**
* Returns the {@link ErrorHandler} assigned, or null if none.
*
* @return the ErrorHandler assigned, or null if none
*/
public abstract ErrorHandler getErrorHandler();
/**
* Returns the {@link EntityResolver} assigned, or null if none.
*
* @return the EntityResolver assigned
*/
public abstract EntityResolver getEntityResolver();
/**
* Returns the {@link DTDHandler} assigned, or null if none.
*
* @return the DTDHandler assigned
*/
public abstract DTDHandler getDTDHandler();
/**
* Returns whether element content whitespace is to be ignored during the
* build.
*
* @return whether element content whitespace is to be ignored during the
* build
*/
public abstract boolean getIgnoringElementContentWhitespace();
/**
* Returns whether or not the parser will elminate element content
* containing only whitespace.
*
* @return boolean
- whether only whitespace content will be
* ignored during build.
*/
public abstract boolean getIgnoringBoundaryWhitespace();
/**
* Returns whether or not entities are being expanded into normal text
* content.
*
* @return whether entities are being expanded
*/
public abstract boolean getExpandEntities();
/**
* This builds a document from the supplied input source.
*
* @param in
* InputSource
to read from
* @return Document
resultant Document object
* @throws JDOMException
* when errors occur in parsing
* @throws IOException
* when an I/O error prevents a document from being fully parsed
*/
public abstract Document build(InputSource in)
throws JDOMException, IOException;
/**
*
* This builds a document from the supplied input stream.
*
*
* @param in
* InputStream
to read from
* @return Document
resultant Document object
* @throws JDOMException
* when errors occur in parsing
* @throws IOException
* when an I/O error prevents a document from being fully parsed.
*/
public abstract Document build(InputStream in) throws JDOMException, IOException;
/**
*
* This builds a document from the supplied filename.
*
*
* @param file
* File
to read from
* @return Document
resultant Document object
* @throws JDOMException
* when errors occur in parsing
* @throws IOException
* when an I/O error prevents a document from being fully parsed
*/
public abstract Document build(final File file) throws JDOMException, IOException;
/**
*
* This builds a document from the supplied URL.
*
*
* @param url
* URL
to read from.
* @return Document
- resultant Document object.
* @throws JDOMException
* when errors occur in parsing
* @throws IOException
* when an I/O error prevents a document from being fully parsed.
*/
public abstract Document build(final URL url) throws JDOMException, IOException;
/**
*
* This builds a document from the supplied input stream.
*
*
* @param in
* InputStream
to read from.
* @param systemId
* base for resolving relative URIs
* @return Document
resultant Document object
* @throws JDOMException
* when errors occur in parsing
* @throws IOException
* when an I/O error prevents a document from being fully parsed
*/
public abstract Document build(final InputStream in, final String systemId)
throws JDOMException, IOException;
/**
*
* This builds a document from the supplied Reader. It's the programmer's
* responsibility to make sure the reader matches the encoding of the file.
* It's often easier and safer to use an InputStream rather than a Reader,
* and to let the parser auto-detect the encoding from the XML declaration.
*
*
* @param characterStream
* Reader
to read from
* @return Document
resultant Document object
* @throws JDOMException
* when errors occur in parsing
* @throws IOException
* when an I/O error prevents a document from being fully parsed
*/
public abstract Document build(final Reader characterStream)
throws JDOMException, IOException;
/**
*
* This builds a document from the supplied Reader. It's the programmer's
* responsibility to make sure the reader matches the encoding of the file.
* It's often easier and safer to use an InputStream rather than a Reader,
* and to let the parser auto-detect the encoding from the XML declaration.
*
*
* @param characterStream
* Reader
to read from.
* @param systemId
* base for resolving relative URIs
* @return Document
resultant Document object
* @throws JDOMException
* when errors occur in parsing
* @throws IOException
* when an I/O error prevents a document from being fully parsed
*/
public abstract Document build(final Reader characterStream, final String systemId)
throws JDOMException, IOException;
/**
*
* This builds a document from the supplied URI.
*
*
* @param systemId
* URI for the input
* @return Document
resultant Document object
* @throws JDOMException
* when errors occur in parsing
* @throws IOException
* when an I/O error prevents a document from being fully parsed
*/
public abstract Document build(final String systemId)
throws JDOMException, IOException;
}