/* * The Apache Software License, Version 1.1 * * * Copyright (c) 2001 The Apache Software Foundation. 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 following disclaimer in * the documentation and/or other materials provided with the * distribution. * * 3. The end-user documentation included with the redistribution, * if any, must include the following acknowledgment: * "This product includes software developed by the * Apache Software Foundation (http://www.apache.org/)." * Alternately, this acknowledgment may appear in the software itself, * if and wherever such third-party acknowledgments normally appear. * * 4. The name "Apache Software Foundation" must not be used to endorse or * promote products derived from this software without prior written * permission. For written permission, please contact apache@apache.org. * * 5. Products derived from this software may not be called "Apache", * nor may "Apache" appear in their name, without prior written * permission of the Apache Software Foundation. * * 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 APACHE SOFTWARE FOUNDATION OR * ITS 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 Apache Software Foundation and was * originally based on software copyright (c) 1999-2001, Sun Microsystems, * Inc., http://www.sun.com. For more information on the Apache Software * Foundation, please see <http://www.apache.org/>. */ package jp.kshoji.javax.xml.parsers; import java.io.InputStream; import java.io.IOException; import java.io.File; import org.xml.sax.Parser; import org.xml.sax.XMLReader; import org.xml.sax.HandlerBase; import org.xml.sax.helpers.DefaultHandler; import org.xml.sax.InputSource; import org.xml.sax.SAXException; import org.xml.sax.SAXNotRecognizedException; import org.xml.sax.SAXNotSupportedException; /** * Defines the API that wraps an {@link org.xml.sax.XMLReader} * implementation class. In JAXP 1.0, this class wrapped the * {@link org.xml.sax.Parser} interface, however this interface was * replaced by the {@link org.xml.sax.XMLReader}. For ease * of transition, this class continues to support the same name * and interface as well as supporting new methods. * * An instance of this class can be obtained from the * {@link javax.xml.parsers.SAXParserFactory#newSAXParser()} method. * Once an instance of this class is obtained, XML can be parsed from * a variety of input sources. These input sources are InputStreams, * Files, URLs, and SAX InputSources.<p> * * * As the content is parsed by the underlying parser, methods of the * given {@link org.xml.sax.HandlerBase} or the * {@link org.xml.sax.helpers.DefaultHandler} are called.<p> * * Implementors of this class which wrap an underlying implementation * can consider using the {@link org.xml.sax.helpers.ParserAdapter} * class to initially adapt their SAX1 impelemntation to work under * this revised class.<p> * * An implementation of <code>SAXParser</code> is <em>NOT</em> * guaranteed to behave as per the specification if it is used concurrently by * two or more threads. It is recommended to have one instance of the * <code>SAXParser</code> per thread or it is upto the application to * make sure about the use of <code>SAXParser</code> from more than one * thread. * * @since JAXP 1.0 * @version 1.0 */ public abstract class SAXParser { private static final boolean DEBUG = false ; protected SAXParser () { } /** * Parse the content of the given {@link java.io.InputStream} * instance as XML using the specified {@link org.xml.sax.HandlerBase}. * <i> Use of the DefaultHandler version of this method is recommended as * the HandlerBase class has been deprecated in SAX 2.0</i> * * @param is InputStream containing the content to be parsed. * @param hb The SAX HandlerBase to use. * @exception java.io.IOException If any IO errors occur. * @exception IllegalArgumentException If the given InputStream is null. * @exception org.xml.sax.SAXException If the underlying parser throws a * SAXException while parsing. * @see org.xml.sax.DocumentHandler */ public void parse(InputStream is, HandlerBase hb) throws SAXException, IOException { if (is == null) { throw new IllegalArgumentException("InputStream cannot be null"); } InputSource input = new InputSource(is); this.parse(input, hb); } /** * Parse the content of the given {@link java.io.InputStream} * instance as XML using the specified {@link org.xml.sax.HandlerBase}. * <i> Use of the DefaultHandler version of this method is recommended as * the HandlerBase class has been deprecated in SAX 2.0</i> * * @param is InputStream containing the content to be parsed. * @param hb The SAX HandlerBase to use. * @param systemId The systemId which is needed for resolving relative URIs. * @exception java.io.IOException If any IO errors occur. * @exception IllegalArgumentException If the given InputStream is null. * @exception org.xml.sax.SAXException If the underlying parser throws a * SAXException while parsing. * @see org.xml.sax.DocumentHandler * version of this method instead. */ public void parse(InputStream is, HandlerBase hb, String systemId) throws SAXException, IOException { if (is == null) { throw new IllegalArgumentException("InputStream cannot be null"); } InputSource input = new InputSource(is); input.setSystemId(systemId); this.parse(input, hb); } /** * Parse the content of the given {@link java.io.InputStream} * instance as XML using the specified * {@link org.xml.sax.helpers.DefaultHandler}. * * @param is InputStream containing the content to be parsed. * @param dh The SAX DefaultHandler to use. * @exception java.io.IOException If any IO errors occur. * @exception IllegalArgumentException If the given InputStream is null. * @exception org.xml.sax.SAXException If the underlying parser throws a * SAXException while parsing. * @see org.xml.sax.DocumentHandler */ public void parse(InputStream is, DefaultHandler dh) throws SAXException, IOException { if (is == null) { throw new IllegalArgumentException("InputStream cannot be null"); } InputSource input = new InputSource(is); this.parse(input, dh); } /** * Parse the content of the given {@link java.io.InputStream} * instance as XML using the specified * {@link org.xml.sax.helpers.DefaultHandler}. * * @param is InputStream containing the content to be parsed. * @param dh The SAX DefaultHandler to use. * @param systemId The systemId which is needed for resolving relative URIs. * @exception java.io.IOException If any IO errors occur. * @exception IllegalArgumentException If the given InputStream is null. * @exception org.xml.sax.SAXException If the underlying parser throws a * SAXException while parsing. * @see org.xml.sax.DocumentHandler * version of this method instead. */ public void parse(InputStream is, DefaultHandler dh, String systemId) throws SAXException, IOException { if (is == null) { throw new IllegalArgumentException("InputStream cannot be null"); } InputSource input = new InputSource(is); input.setSystemId(systemId); this.parse(input, dh); } /** * Parse the content described by the giving Uniform Resource * Identifier (URI) as XML using the specified * {@link org.xml.sax.HandlerBase}. * <i> Use of the DefaultHandler version of this method is recommended as * the <code>HandlerBase</code> class has been deprecated in SAX 2.0</i> * * @param uri The location of the content to be parsed. * @param hb The SAX HandlerBase to use. * @exception java.io.IOException If any IO errors occur. * @exception IllegalArgumentException If the uri is null. * @exception org.xml.sax.SAXException If the underlying parser throws a * SAXException while parsing. * @see org.xml.sax.DocumentHandler */ public void parse(String uri, HandlerBase hb) throws SAXException, IOException { if (uri == null) { throw new IllegalArgumentException("uri cannot be null"); } InputSource input = new InputSource(uri); this.parse(input, hb); } /** * Parse the content described by the giving Uniform Resource * Identifier (URI) as XML using the specified * {@link org.xml.sax.helpers.DefaultHandler}. * * @param uri The location of the content to be parsed. * @param dh The SAX DefaultHandler to use. * @exception java.io.IOException If any IO errors occur. * @exception IllegalArgumentException If the uri is null. * @exception org.xml.sax.SAXException If the underlying parser throws a * SAXException while parsing. * @see org.xml.sax.DocumentHandler */ public void parse(String uri, DefaultHandler dh) throws SAXException, IOException { if (uri == null) { throw new IllegalArgumentException("uri cannot be null"); } InputSource input = new InputSource(uri); this.parse(input, dh); } /** * Parse the content of the file specified as XML using the * specified {@link org.xml.sax.HandlerBase}. * <i> Use of the DefaultHandler version of this method is recommended as * the HandlerBase class has been deprecated in SAX 2.0</i> * * @param f The file containing the XML to parse * @param hb The SAX HandlerBase to use. * @exception java.io.IOException If any IO errors occur. * @exception IllegalArgumentException If the File object is null. * @see org.xml.sax.DocumentHandler * @exception org.xml.sax.SAXException If the underlying parser throws a * SAXException while parsing. */ public void parse(File f, HandlerBase hb) throws SAXException, IOException { if (f == null) { throw new IllegalArgumentException("File cannot be null"); } String escapedURI = FilePathToURI.filepath2URI(f.getAbsolutePath()) ; if(DEBUG) System.out.println("Escaped URI = " + escapedURI) ; InputSource input = new InputSource(escapedURI); this.parse(input, hb); } /** * Parse the content of the file specified as XML using the * specified {@link org.xml.sax.helpers.DefaultHandler}. * * @param f The file containing the XML to parse * @param dh The SAX DefaultHandler to use. * @exception java.io.IOException If any IO errors occur. * @exception IllegalArgumentException If the File object is null. * @exception org.xml.sax.SAXException If the underlying parser throws a * SAXException while parsing. * @see org.xml.sax.DocumentHandler */ public void parse(File f, DefaultHandler dh) throws SAXException, IOException { if (f == null) { throw new IllegalArgumentException("File cannot be null"); } String escapedURI = FilePathToURI.filepath2URI(f.getAbsolutePath()) ; if(DEBUG) System.out.println("Escaped URI = " + escapedURI) ; InputSource input = new InputSource(escapedURI); this.parse(input, dh); } /** * Parse the content given {@link org.xml.sax.InputSource} * as XML using the specified * {@link org.xml.sax.HandlerBase}. * <i> Use of the DefaultHandler version of this method is recommended as * the HandlerBase class has been deprecated in SAX 2.0</i> * * @param is The InputSource containing the content to be parsed. * @param hb The SAX HandlerBase to use. * @exception java.io.IOException If any IO errors occur. * @exception IllegalArgumentException If the InputSource is null. * @exception org.xml.sax.SAXException If the underlying parser throws a * SAXException while parsing. * @see org.xml.sax.DocumentHandler */ public void parse(InputSource is, HandlerBase hb) throws SAXException, IOException { if (is == null) { throw new IllegalArgumentException("InputSource cannot be null"); } Parser parser = this.getParser(); if (hb != null) { parser.setDocumentHandler(hb); parser.setEntityResolver(hb); parser.setErrorHandler(hb); parser.setDTDHandler(hb); } parser.parse(is); } /** * Parse the content given {@link org.xml.sax.InputSource} * as XML using the specified * {@link org.xml.sax.helpers.DefaultHandler}. * * @param is The InputSource containing the content to be parsed. * @param dh The SAX DefaultHandler to use. * @exception java.io.IOException If any IO errors occur. * @exception IllegalArgumentException If the InputSource is null. * @exception org.xml.sax.SAXException If the underlying parser throws a * SAXException while parsing. * @see org.xml.sax.DocumentHandler */ public void parse(InputSource is, DefaultHandler dh) throws SAXException, IOException { if (is == null) { throw new IllegalArgumentException("InputSource cannot be null"); } XMLReader reader = this.getXMLReader(); if (dh != null) { reader.setContentHandler(dh); reader.setEntityResolver(dh); reader.setErrorHandler(dh); reader.setDTDHandler(dh); } reader.parse(is); } /** * Returns the SAX parser that is encapsultated by the * implementation of this class. * * @return The SAX parser that is encapsultated by the * implementation of this class. */ public abstract Parser getParser() throws SAXException; /** * Returns the {@link org.xml.sax.XMLReader} that is encapsulated by the * implementation of this class. * * @return The XMLReader that is encapsulated by the * implementation of this class. */ public abstract XMLReader getXMLReader() throws SAXException; /** * Indicates whether or not this parser is configured to * understand namespaces. * * @return true if this parser is configured to * understand namespaces; false otherwise. */ public abstract boolean isNamespaceAware(); /** * Indicates whether or not this parser is configured to * validate XML documents. * * @return true if this parser is configured to * validate XML documents; false otherwise. */ public abstract boolean isValidating(); /** * Sets the particular property in the underlying implementation of * {@link org.xml.sax.XMLReader}. * A list of the core features and properties can be found at * <a href="http://www.megginson.com/SAX/Java/features.html"> http://www.megginson.com/SAX/Java/features.html </a> * * @param name The name of the property to be set. * @param value The value of the property to be set. * @exception org.xml.sax.SAXNotRecognizedException When the underlying XMLReader does * not recognize the property name. * * @exception org.xml.sax.SAXNotSupportedException When the underlying XMLReader * recognizes the property name but doesn't support the * property. * * @see org.xml.sax.XMLReader#setProperty */ public abstract void setProperty(String name, Object value) throws SAXNotRecognizedException, SAXNotSupportedException; /** * * Returns the particular property requested for in the underlying * implementation of {@link org.xml.sax.XMLReader}. * * @param name The name of the property to be retrieved. * @return Value of the requested property. * * @exception org.xml.sax.SAXNotRecognizedException When the underlying XMLReader does * not recognize the property name. * * @exception org.xml.sax.SAXNotSupportedException When the underlying XMLReader * recognizes the property name but doesn't support the * property. * * @see org.xml.sax.XMLReader#getProperty */ public abstract Object getProperty(String name) throws SAXNotRecognizedException, SAXNotSupportedException; }