Parser configurations built using the Xerces Native Interface are made from a series of parser components. This document details the XNI API for these components and how they are put together to construct a parser configuration in the following sections:
In addition, several examples are included to show how to create some parser components and configurations:
org.apache.xerces.xni.parser package
but may use various interfaces and classes from the core XNI
package, org.apache.xerces.xni.
Parser configurations are comprised of a number of parser
components that perform various tasks. For example, a parser
component may be responsible for the actual scanning of XML
documents to generate document "streaming" information
events; another component may manage commonly used symbols
within the parser configuration in order to improve
performance; and a third component may even manage the
resolution of external parsed entities and the transcoding
of these entities from various international encodings into
Note: Even though a parser is comprised of a number of components, not all of these components are configurable. In other words, some components depend on knowing the state of certain features and properties of the parser configuration while others can operate completely independent of the parser configuration. However, when we use the term "component" when talking about XNI, we are talking about a configurable component within the parser configuration.
The following diagram shows an example of this collection of parser components: (Please note that this is not the only configuration of parser components.)
The only distinguishing feature of a component
is that it can be notified of the state
of parser features and properties. Features represent parser
state of type boolean whereas properties represent
parser state of type java.lang.Object. Each
component can also be queried for which features and properties
it recognizes.
This interface is the basic configurable component in a parser configuration. It is managed by the XMLComponentManager which holds the parser state.
| Methods |
|---|
public void reset(
XMLComponentManager manager
) throws XMLConfigurationException;
|
public Boolean getDefaultFeature(
String featureId);
|
public void getDefaultProperty(
String propertyId);
|
public void setFeature(
String featureId,
boolean state
) throws XMLConfigurationException;
|
public void setProperty(
String propertyId,
Object value
) throws XMLConfigurationException;
|
public String[] getRecognizedFeatures(); |
public String[] getRecognizedProperties(); |
| Extends XNIException |
|---|
| Constants |
public static final short NOT_RECOGNIZED; |
public static final short NOT_SUPPORTED; |
| Constructors |
public XMLConfigurationException(
short type,
String identifier
);
|
public XMLConfigurationException(
short type,
String identifier,
String message
);
|
| Methods |
public short getType(); |
public String getIdentifier(); |
Components are managed by a component manager. The component manager keeps track of the parser state for features and properties. The component manager is responsible for notifying each component when the value of those features and properties change.
Before parsing a document, a parser configuration must use the component manager to reset all of the parser components. Then, during parsing, each time a feature or property value is modified, all of the components must be informed of the change.
The component manager interface allows components to query
needed features and properties during a call to the
XMLComponent#reset(XMLComponentManager) method.
However, components should not keep a reference to
the component manager. In other words, all necessary state
should be queried when the component is reset.
| Methods |
|---|
public boolean getFeature(
String featureId
) throws XMLConfigurationException;
|
public Object getProperty(
String propertyId
) throws XMLConfigurationException;
|
Note:
A compliant XNI parser configuration is not
required to use any components that implement the
XMLComponent
interface. That interface is included as a convenience for
people building modular and configurable parser components.
The Xerces2 reference implementation uses the component
interface to implement its components so that they can be
used interchangeably in various configurations.
An XNI parser configuration defines the entry point for a parser to set features and properties, initiate a parse of an XML instance document, perform entity resolution, and receive notification of errors that occurred in the document.
A parser configuration is typically comprised of a series of parser components. Some of these components may be connected together to form the parsing pipeline. This parser configuration is then used by a specific parser implementation that generates a particular API, such as DOM or SAX. The separation between the parser configuration and parser instance allows the same API-generating parser to be used with an unlimited number of different parser configurations.
When a document is parsed, the parser configuration resets the configurable components and initiates the scanning of the document. Typically, a scanner starts scanning the document which generates XNI information set events that are sent to the next component in the pipeline (e.g. the validator). The information set events coming out of the end of the pipeline are then communicated to the document and DTD handlers that are registered with the parser configuration.
The following diagram shows both the generic parsing pipeline contained within a parser configuration and the separation of parser configuration and specific parser classes.
There are two parser configuration interfaces defined in XNI:
the XMLParserConfiguration and the
XMLPullParserConfiguration. For most purposes, the
standard parser configuration will suffice. Document and DTD
handler interfaces will be registered on the parser configuration
and the document will be parsed completely by calling the
parse(XMLInputSource) method. In this situation,
the application is driven by the output of the configuration.
However, the XMLPullParserConfiguration interface
extends the XMLParserConfiguration interface to
provide methods that allow the application to drive the
configuration. Any configuration class that implements this
interface guarantees that it can be driven in a pull parsing
fashion but does not make any statement as to how much or how
little pull parsing will be performed at each step.
The parser configuration is the primary connection to specific
parser instances. Because the parser configuration is responsible
for holding the parser state, the
addRecognizedFeatures(String[]) and
addRecognizedProperties(String[]) methods allow the
parser instance to add recognized features and properties that
the parser configuration will store.
Parser configurations that implement this interface state that they can be driven by the application in a pull parser fashion.
| Extends XMLParserConfiguration |
|---|
| Methods |
public void setInputSource(
XMLInputSource source
) throws java.io.IOException,
XMLConfigurationException;
|
public boolean parse(boolean complete)
throws java.io.IOException,
XNIException;
|
This interface is used to resolve external parsed entities. The
application can register an object that implements this interface
with the parser configuration in order to intercept entities and
resolve them explicitly. If the registered entity resolver cannot
resolve the entity, it should return null so that the
parser will try to resolve the entity using a default mechanism.
| Methods |
|---|
public XMLInputSource resolveEntity(
XMLResourceIdentifier resourceIdentifier
) throws java.io.IOException, XMLParseException;
|
An interface for handling errors. If the application is interested in error notifications, then it can register an error handler object that implements this interface with the parser configuration.
| Methods |
|---|
public void warning(
String domain,
String key,
XMLParseException exception
) throws XNIException;
|
public void error(
String domain,
String key,
XMLParseException exception
) throws XNIException;
|
public void fatalError(
String domain,
String key,
XMLParseException exception
) throws XNIException;
|
This class represents an input source for an XML document. The basic properties of an input source are the following: public identifier, system identifier, byte stream or character stream.
This represents the basic physical description of the location of any XML resource (a Schema grammar, a DTD, a general entity etc.)
A parsing exception. This exception is different from the standard XNI exception in that it stores the location in the document (or its entities) where the exception occurred.
The Core Interfaces provide
interfaces for the streaming information set. While these
interfaces are sufficient for communicating the document and
DTD information, it does not provide an easy way to construct
the pipeline or initiate the pipeline to start parsing an
XML document. The org.apache.xerces.xni.parser
package has additional interfaces to fill exactly this need.
Each parser configuration can be thought of as two separate pipelines: one for document information and one for DTD information. Each pipeline starts with a scanner and is followed by zero or more filters (objects that implement interfaces to handle the incoming information as well as register handlers for the outgoing information). The information that comes out the end of the pipeline is usually forwarded by the parser configuration to the registered handlers.
There are two scanner interfaces defined: the XMLDocumentScanner and the XMLDTDScanner:
This interface defines an XML document scanner.
| Extends XMLDocumentSource |
|---|
| Methods |
public void setInputSource(
XMLInputSource source
) throws java.io.IOException;
|
public boolean scanDocument(boolean complete)
throws java.io.IOException, XNIException;
|
This interface defines a DTD scanner. Typically, scanning of
the DTD internal subset is initiated from the XML document
scanner so the input source is implicitly the same as the
one used by the document scanner. Therefore, the
setInputSource method should only be called before
scanning of the DTD external subset.
| Extends XMLDTDSource, XMLDTDContentModelSource |
|---|
| Methods |
public void setInputSource(
XMLInputSource source
) throws java.io.IOException;
|
public boolean scanDTDInternalSubset(
boolean complete,
boolean standalone,
boolean hasExternalSubset
) throws java.io.IOException, XNIException;
|
public boolean scanDTDExternalSubset(
boolean complete
) throws java.io.IOException, XNIException;
|
Notice how each scanner interface's scanning methods take a
complete parameter and returns a boolean. This
allows (but does not require) scanners that implement these
interfaces to provide "pull" parsing behaviour in which the
application drives the parser's operation instead of having
parsing events "pushed" to the registered handlers.
After the scanners, zero or filters may be present in a parser configuration pipeline. A document pipeline filter implements the XMLDocumentHandler interface from the XNI Core Interfaces as well as the XMLDocumentSource interface which allows filters to be chained together in the pipeline. There are equivalents source interfaces for the DTD information as well.
This interface allows a document handler to be registered.
| Methods |
|---|
public void setDocumentHandler(
XMLDocumentHandler handler
);
|
public XMLDocumentHandler getDocumentHandler();
|
Defines a document filter that acts as both a receiver and an emitter of document events.
| Extends XMLDocumentHandler, XMLDocumentSource |
|---|
This interface allows a DTD handler to be registered.
| Methods |
|---|
public void setDTDHandler(
XMLDTDHandler handler
);
|
public XMLDTDHandler getDTDHandler();
|
Defines a DTD filter that acts as both a receiver and an emitter of DTD events.
| Extends XMLDTDHandler, XMLDTDSource |
|---|
This interface allows a DTD content model handler to be registered.
| Methods |
|---|
public void setDTDContentModelHandler(
XMLDTDContentModelHandler handler
);
|
public XMLDTDContentModelHandler getDTDContentModelHandler();
|
Defines a DTD content model filter that acts as both a receiver and an emitter of DTD content model events.
| Extends XMLDTDContentModelHandler, XMLDTDContentModelSource |
|---|
The next section gives some basic examples for using the XNI framework to construct filters and parser configurations.
The following samples show how to create various parser components and parser configurations. The XNI samples included with the Xerces2 reference release provide a convenient way to test a parser configuration. For example, to test the CSV Parser Configuration example, run the following command:
Or a new CSV parser can be constructed that produces standard SAX events. For example:
The following samples are available:
This abstract parser configuration simply helps manage components, features and properties, and other tasks common to all parser configurations.
This example is a very simple parser configuration that can parse files with comma-separated values (CSV) to generate XML events. For example, the following CSV document:
produces the following XML "document" as represented by the XNI streaming document information:
Here is the source code for the CSV parser configuration.
Notice that it does not use any components. Rather, it implements
the CSV parsing directly in the parser configuration's
parse(XMLInputSource) method. This demonstrates
that you are not required to use the
XMLComponent interface but it is there for
building modular components that can be used in other
configurations.
The source code is longer than it actually needs to be because it also emits the DTD information necessary for a validating parser to validate the document. The real core of the example is the following: