Class DOMCatalogReader

java.lang.Object
org.apache.xml.resolver.readers.DOMCatalogReader
All Implemented Interfaces:
CatalogReader

public class DOMCatalogReader extends Object implements CatalogReader
A DOM-based CatalogReader.

This class is used to read XML Catalogs using the DOM. This reader has an advantage over the SAX-based reader that it can analyze the DOM tree rather than simply a series of SAX events. It has the disadvantage that it requires all of the code necessary to build and walk a DOM tree.

Since the choice of CatalogReaders (in the InputStream case) can only be made on the basis of MIME type, the following problem occurs: only one CatalogReader can exist for all XML mime types. In order to get around this problem, the DOMCatalogReader relies on a set of external CatalogParsers to actually build the catalog.

The selection of CatalogParsers is made on the basis of the QName of the root element of the document.

This class requires the Java API for XML Parsing.

Version:
1.0
Author:
Norman Walsh Norman.Walsh@Sun.COM
See Also:
  • Field Details

    • namespaceMap

      protected Hashtable namespaceMap
      Mapping table from QNames to CatalogParser classes.

      Each key in this hash table has the form "elementname" or "{namespaceuri}elementname". The former is used if the namespace URI is null.

  • Constructor Details

    • DOMCatalogReader

      public DOMCatalogReader()
      Null constructor; something for subclasses to call.
  • Method Details

    • setCatalogParser

      public void setCatalogParser(String namespaceURI, String rootElement, String parserClass)
      Add a new parser to the reader.

      This method associates the specified parserClass with the namespaceURI/rootElement names specified.

      Parameters:
      namespaceURI - The namespace URI. Not the prefix.
      rootElement - The name of the root element.
      parserClass - The name of the parserClass to instantiate for this kind of catalog.
    • getCatalogParser

      public String getCatalogParser(String namespaceURI, String rootElement)
      Get the name of the parser class for a given catalog type.

      This method returns the parserClass associated with the namespaceURI/rootElement names specified.

      Parameters:
      namespaceURI - The namespace URI. Not the prefix.
      rootElement - The name of the root element.
      Returns:
      The parser class.
    • readCatalog

      public void readCatalog(Catalog catalog, InputStream is) throws IOException, CatalogException
      Read a catalog from an input stream.

      This class reads a catalog from an input stream:

      • Based on the QName of the root element, it determines which parser to instantiate for this catalog.
      • It constructs a DOM Document from the catalog and
      • For each child of the root node, it calls the parser's parseCatalogEntry method. This method is expected to make appropriate calls back into the catalog to add entries for the entries in the catalog. It is free to do this in whatever manner is appropriate (perhaps using just the node passed in, perhaps wandering arbitrarily throughout the tree).
      Specified by:
      readCatalog in interface CatalogReader
      Parameters:
      catalog - The catalog for which this reader is called.
      is - The input stream that is to be read.
    • readCatalog

      public void readCatalog(Catalog catalog, String fileUrl) throws MalformedURLException, IOException, CatalogException
      Read the catalog behind the specified URL.
      Specified by:
      readCatalog in interface CatalogReader
      Parameters:
      catalog - The catalog for which we are reading.
      fileUrl - The URL of the document that should be read.
      See Also: