/*-- $Id: SAXBuilder.java,v 1.57 2001/08/03 22:06:55 bmclaugh Exp $ Copyright (C) 2000 Brett McLaughlin & Jason Hunter. 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 license@jdom.org. 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 (pm@jdom.org). 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 Brett McLaughlin and Jason Hunter . For more information on the JDOM Project, please see . */ package org.jdom.input; import java.io.*; import java.lang.reflect.*; import java.net.*; import java.util.*; import org.jdom.*; import org.xml.sax.*; import org.xml.sax.ext.LexicalHandler; import org.xml.sax.helpers.DefaultHandler; import org.xml.sax.helpers.XMLReaderFactory; /** *

SAXBuilder builds a JDOM tree using SAX. * Information about SAX can be found at * http://www.megginson.com/SAX.

* *

Known issues: Relative paths for a DocType or EntityRef may be * converted by the SAX parser into absolute paths

* * @author Jason Hunter * @author Brett McLaughlin * @author Dan Schaffer * @author Philip Nelson * @author Alex Rosen * @version 1.0 */ public class SAXBuilder { private static final String CVS_ID = "@(#) $RCSfile: SAXBuilder.java,v $ $Revision: 1.57 $ $Date: 2001/08/03 22:06:55 $ $Name: $"; /** * Default parser class to use. This is used when no other parser * is given and JAXP isn't available. */ private static final String DEFAULT_SAX_DRIVER = "org.apache.xerces.parsers.SAXParser"; /** Whether validation should occur */ private boolean validate; /** Whether expansion of entities should occur */ private boolean expand = true; /** Adapter class to use */ private String saxDriverClass; /** ErrorHandler class to use */ private ErrorHandler saxErrorHandler = null; /** EntityResolver class to use */ private EntityResolver saxEntityResolver = null; /** DTDHandler class to use */ private DTDHandler saxDTDHandler = null; /** XMLFilter instance to use */ private XMLFilter saxXMLFilter = null; /** The factory for creating new JDOM objects */ protected JDOMFactory factory = null; /** Whether to ignore ignorable whitespace */ private boolean ignoringWhite = false; /** User-specified features to be set on the SAX parser */ private HashMap features = new HashMap(5); /** User-specified properties to be set on the SAX parser */ private HashMap properties = new HashMap(5); /** *

* Creates a new SAXBuilder which will attempt to first locate * a parser via JAXP, then will try to use a set of default * SAX Drivers. The underlying parser will not validate. *

*/ public SAXBuilder() { this(false); } /** *

* Creates a new SAXBuilder which will attempt to first locate * a parser via JAXP, then will try to use a set of default * SAX Drivers. The underlying parser will validate or not * according to the given parameter. *

* * @param validate boolean indicating if * validation should occur. */ public SAXBuilder(boolean validate) { this.validate = validate; } /** *

* Creates a new SAXBuilder using the specified SAX parser. * The underlying parser will not validate. *

* * @param saxDriverClass String name of SAX Driver * to use for parsing. */ public SAXBuilder(String saxDriverClass) { this(saxDriverClass, false); } /** *

* Creates a new SAXBuilder using the specified SAX parser. * The underlying parser will validate or not * according to the given parameter. *

* * @param saxDriverClass String name of SAX Driver * to use for parsing. * @param validate boolean indicating if * validation should occur. */ public SAXBuilder(String saxDriverClass, boolean validate) { this.saxDriverClass = saxDriverClass; this.validate = validate; } /* *

* This sets a custom JDOMFactory for the builder. Use this to build * the tree with your own subclasses of the JDOM classes. *

* * @param factory JDOMFactory to use */ public void setFactory(JDOMFactory factory) { this.factory = factory; } /** *

* This sets validation for the builder. *

* * @param validate boolean indicating whether validation * should occur. */ public void setValidation(boolean validate) { this.validate = validate; } /** *

* This sets custom ErrorHandler for the Builder. *

* * @param errorHandler ErrorHandler */ public void setErrorHandler(ErrorHandler errorHandler) { saxErrorHandler = errorHandler; } /** *

* This sets custom EntityResolver for the Builder. *

* * @param entityResolver EntityResolver */ public void setEntityResolver(EntityResolver entityResolver) { saxEntityResolver = entityResolver; } /** *

* This sets custom DTDHandler for the Builder. *

* * @param dtdHandler DTDHandler */ public void setDTDHandler(DTDHandler dtdHandler) { saxDTDHandler = dtdHandler; } /** *

* This sets custom XMLFilter for the Builder. *

* * @param xmlFilter XMLFilter */ public void setXMLFilter(XMLFilter xmlFilter) { saxXMLFilter = xmlFilter; } /** *

* Specifies whether or not the parser should elminate whitespace in * element content (sometimes known as "ignorable whitespace") when * building the document. Only whitespace which is contained within * element content that has an element only content model will be * eliminated (see XML Rec 3.2.1). For this setting to take effect * requires that validation be turned on. The default value of this * setting is false. *

* * @param ignoringWhite Whether to ignore ignorable whitespace */ public void setIgnoringElementContentWhitespace(boolean ignoringWhite) { this.ignoringWhite = ignoringWhite; } /** *

* This sets a feature on the SAX parser. See the SAX documentation for * more information. *

*

* NOTE: SAXBuilder requires that some particular features of the SAX parser be * set up in certain ways for it to work properly. The list of such features * may change in the future. Therefore, the use of this method may cause * parsing to break, and even if it doesn't break anything today it might * break parsing in a future JDOM version, because what JDOM parsers require * may change over time. Use with caution. *

* * @param name The feature name, which is a fully-qualified URI. * @param value The requested state of the feature (true or false). */ public void setFeature(String name, boolean value) { // Save the specified feature for later. features.put(name, new Boolean(value)); } /** *

* This sets a property on the SAX parser. See the SAX documentation for * more information. *

*

* NOTE: SAXBuilder requires that some particular properties of the SAX parser be * set up in certain ways for it to work properly. The list of such properties * may change in the future. Therefore, the use of this method may cause * parsing to break, and even if it doesn't break anything today it might * break parsing in a future JDOM version, because what JDOM parsers require * may change over time. Use with caution. *

* * @param name The property name, which is a fully-qualified URI. * @param value The requested value for the property. */ public void setProperty(String name, Object value) { // Save the specified property for later. properties.put(name, value); } /** *

* 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. */ public Document build(InputSource in) throws JDOMException { SAXHandler contentHandler = null; try { // Create and configure the content handler. contentHandler = createContentHandler(); configureContentHandler(contentHandler); // Create and configure the parser. XMLReader parser = createParser(); // Install optional filter if (saxXMLFilter != null) { // Connect filter chain to parser XMLFilter root = saxXMLFilter; while (root.getParent() instanceof XMLFilter) { root = (XMLFilter)root.getParent(); } root.setParent(parser); // Read from filter parser = saxXMLFilter; } // Configure parser configureParser(parser, contentHandler); // Parse the document. parser.parse(in); return contentHandler.getDocument(); } catch (Exception e) { if (e instanceof SAXParseException) { SAXParseException p = (SAXParseException)e; String systemId = p.getSystemId(); if (systemId != null) { throw new JDOMException("Error on line " + p.getLineNumber() + " of document " + systemId, e); } else { throw new JDOMException("Error on line " + p.getLineNumber(), e); } } else if (e instanceof JDOMException) { throw (JDOMException)e; } else { throw new JDOMException("Error in building", e); } } finally { // Explicitly nullify the handler to encourage GC // It's a stack var so this shouldn't be necessary, but it // seems to help on some JVMs contentHandler = null; } } /** *

* This creates the SAXHandler that will be used to build the Document. *

*/ protected SAXHandler createContentHandler() throws Exception { SAXHandler contentHandler = new SAXHandler(factory); return contentHandler; } /** *

* This configures the SAXHandler that will be used to build the Document. *

*

* The default implementation simply passes through some configuration * settings that were set on the SAXBuilder: setExpandEntities() and * setIgnoringElementContentWhitespace(). *

*/ protected void configureContentHandler(SAXHandler contentHandler) throws Exception { // Setup pass through behavior contentHandler.setExpandEntities(expand); contentHandler.setIgnoringElementContentWhitespace(ignoringWhite); } /** *

* This creates the XMLReader to be used for reading the XML document. *

*

* The default behavior is to (1) use the saxDriverClass, if it has been * set, (2) try to obtain a parser from JAXP, if it is available, and * (3) if all else fails, use a hard-coded default parser (currently * the Xerces parser). Subclasses may override this method to determine * the parser to use in a different way. *

*/ protected XMLReader createParser() throws Exception { XMLReader parser = null; if (saxDriverClass != null) { // The user knows that they want to use a particular class parser = XMLReaderFactory.createXMLReader(saxDriverClass); // System.out.println("using specific " + saxDriverClass); } else { // Try using JAXP... // Note we need JAXP 1.1, and if JAXP 1.0 is all that's // available then the getXMLReader call fails and we skip // to the hard coded default parser try { Class factoryClass = Class.forName("javax.xml.parsers.SAXParserFactory"); // factory = SAXParserFactory.newInstance(); Method newParserInstance = factoryClass.getMethod("newInstance", null); Object factory = newParserInstance.invoke(null, null); // factory.setValidating(validate); Method setValidating = factoryClass.getMethod("setValidating", new Class[]{boolean.class}); setValidating.invoke(factory, new Object[]{new Boolean(validate)}); // jaxpParser = factory.newSAXParser(); Method newSAXParser = factoryClass.getMethod("newSAXParser", null); Object jaxpParser = newSAXParser.invoke(factory, null); // parser = jaxpParser.getXMLReader(); Class parserClass = jaxpParser.getClass(); Method getXMLReader = parserClass.getMethod("getXMLReader", null); parser = (XMLReader)getXMLReader.invoke(jaxpParser, null); saxDriverClass = parser.getClass().getName(); // System.out.println("Using jaxp " + // parser.getClass().getName()); } catch (ClassNotFoundException e) { //e.printStackTrace(); } catch (InvocationTargetException e) { //e.printStackTrace(); } catch (NoSuchMethodException e) { //e.printStackTrace(); } catch (IllegalAccessException e) { //e.printStackTrace(); } } // Check to see if we got a parser yet, if not, try to use a // hard coded default if (parser == null) { parser = XMLReaderFactory.createXMLReader(DEFAULT_SAX_DRIVER); // System.out.println("using default " + DEFAULT_SAX_DRIVER); saxDriverClass = parser.getClass().getName(); } return parser; } /** *

* This configures the XMLReader to be used for reading the XML document. *

*

* The default implementation sets various options on the given XMLReader, * such as validation, DTD resolution, entity handlers, etc., according * to the options that were set (e.g. via setEntityResolver) * and set various SAX properties and features that are required for JDOM * internals. These features may change in future releases, so change this * behavior at your own risk. *

*/ protected void configureParser(XMLReader parser, SAXHandler contentHandler) throws Exception { // Setup SAX handlers. parser.setContentHandler(contentHandler); if (saxEntityResolver != null) { parser.setEntityResolver(saxEntityResolver); } if (saxDTDHandler != null) { parser.setDTDHandler(saxDTDHandler); } else { parser.setDTDHandler(contentHandler); } if (saxErrorHandler != null) { parser.setErrorHandler(saxErrorHandler); } else { parser.setErrorHandler(new BuilderErrorHandler()); } // Set any user-specified features on the parser. Iterator iter = features.keySet().iterator(); while(iter.hasNext()) { String name = (String)iter.next(); Boolean value = (Boolean)features.get(name); internalSetFeature(parser, name, value.booleanValue(), name); } // Set any user-specified properties on the parser. Iterator iter2 = properties.keySet().iterator(); while(iter2.hasNext()) { String name = (String)iter2.next(); Object value = properties.get(name); internalSetProperty(parser, name, value, name); } // Setup lexical reporting. boolean lexicalReporting = false; try { parser.setProperty("http://xml.org/sax/handlers/LexicalHandler", contentHandler); lexicalReporting = true; } catch (SAXNotSupportedException e) { // No lexical reporting available } catch (SAXNotRecognizedException e) { // No lexical reporting available } // Some parsers use alternate property for lexical handling (grr...) if (!lexicalReporting) { try { parser.setProperty( "http://xml.org/sax/properties/lexical-handler", contentHandler); lexicalReporting = true; } catch (SAXNotSupportedException e) { // No lexical reporting available } catch (SAXNotRecognizedException e) { // No lexical reporting available } } // Try setting the DeclHandler if entity expansion is off if (!expand) { try { parser.setProperty( "http://xml.org/sax/properties/declaration-handler", contentHandler); } catch (SAXNotSupportedException e) { // No lexical reporting available } catch (SAXNotRecognizedException e) { // No lexical reporting available } } // Set validation. try { internalSetFeature(parser, "http://xml.org/sax/features/validation", validate, "Validation"); } catch (JDOMException e) { // If validation is not supported, and the user is requesting // that we don't validate, that's fine - don't throw an exception. if (validate) throw e; } // Setup some namespace features. internalSetFeature(parser, "http://xml.org/sax/features/namespaces", true, "Namespaces"); internalSetFeature(parser, "http://xml.org/sax/features/namespace-prefixes", false, "Namespace prefixes"); // Set entity expansion // Note SAXHandler can work regardless of how this is set, but when // entity expansion it's worth it to try to tell the parser not to // even bother with external general entities. // Apparently no parsers yet support this feature. // XXX It might make sense to setEntityResolver() with a resolver // that simply ignores external general entities try { if (parser.getFeature("http://xml.org/sax/features/external-general-entities") != expand) { parser.setFeature("http://xml.org/sax/features/external-general-entities", expand); } } catch (SAXNotRecognizedException e) { /* // No entity expansion available throw new JDOMException( "Entity expansion feature not recognized by " + saxDriverClass); */ } catch (SAXNotSupportedException e) { /* // No entity expansion available throw new JDOMException( "Entity expansion feature not supported by " + saxDriverClass); */ } } /** *

* Tries to set a feature on the parser. If the feature cannot be set, * throws a JDOMException describing the problem. *

*/ private void internalSetFeature(XMLReader parser, String feature, boolean value, String displayName) throws JDOMException { try { parser.setFeature(feature, value); } catch (SAXNotSupportedException e) { throw new JDOMException( displayName + " feature not supported for SAX driver " + saxDriverClass); } catch (SAXNotRecognizedException e) { throw new JDOMException( displayName + " feature not recognized for SAX driver " + saxDriverClass); } } /** *

* Tries to set a property on the parser. If the property cannot be set, * throws a JDOMException describing the problem. *

*/ private void internalSetProperty(XMLReader parser, String property, Object value, String displayName) throws JDOMException { try { parser.setProperty(property, value); } catch (SAXNotSupportedException e) { throw new JDOMException( displayName + " property not supported for SAX driver " + saxDriverClass); } catch (SAXNotRecognizedException e) { throw new JDOMException( displayName + " property not recognized for SAX driver " + saxDriverClass); } } /** *

* 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. */ public Document build(InputStream in) throws JDOMException { return build(new InputSource(in)); } /** *

* 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. */ public Document build(File file) throws JDOMException { try { URL url = fileToURL(file); return build(url); } catch (MalformedURLException e) { throw new JDOMException("Error in building", e); } } /** *

* 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. */ public Document build(URL url) throws JDOMException { String systemID = url.toExternalForm(); return build(new InputSource(systemID)); } /** *

* 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. */ public Document build(InputStream in, String systemId) throws JDOMException { InputSource src = new InputSource(in); src.setSystemId(systemId); return build(src); } /** *

* This builds a document from the supplied * Reader. *

* * @param in Reader to read from. * @return Document - resultant Document object. * @throws JDOMException when errors occur in parsing. */ public Document build(Reader characterStream) throws JDOMException { return build(new InputSource(characterStream)); } /** *

* This builds a document from the supplied * Reader. *

* * @param in Reader to read from. * @param systemId base for resolving relative URIs * @return Document - resultant Document object. * @throws JDOMException when errors occur in parsing. */ public Document build(Reader characterStream, String SystemId) throws JDOMException { InputSource src = new InputSource(characterStream); src.setSystemId(SystemId); return build(src); } /** *

* 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. */ public Document build(String systemId) throws JDOMException { return build(new InputSource(systemId)); } /** * Imitation of File.toURL(), a JDK 1.2 method, reimplemented * here to work with JDK 1.1. * * @see java.io.File * * @param f the file to convert * @return the file path converted to a file: URL */ protected URL fileToURL(File f) throws MalformedURLException { String path = f.getAbsolutePath(); if (File.separatorChar != '/') { path = path.replace(File.separatorChar, '/'); } if (!path.startsWith("/")) { path = "/" + path; } if (!path.endsWith("/") && f.isDirectory()) { path = path + "/"; } return new URL("file", "", path); } /** *

* This sets whether or not to expand entities for the builder. * A true means to expand entities as normal content. A false means to * leave entities unexpanded as EntityRef objects. The * default is true. *

* * @param expand boolean indicating whether entity expansion * should occur. */ public void setExpandEntities(boolean expand) { this.expand = expand; } }