Class StylesheetHandler
- java.lang.Object
-
- org.xml.sax.helpers.DefaultHandler
-
- org.apache.xalan.processor.StylesheetHandler
-
- All Implemented Interfaces:
javax.xml.transform.sax.TemplatesHandler,NodeConsumer,PrefixResolver,org.xml.sax.ContentHandler,org.xml.sax.DTDHandler,org.xml.sax.EntityResolver,org.xml.sax.ErrorHandler
public class StylesheetHandler extends org.xml.sax.helpers.DefaultHandler implements javax.xml.transform.sax.TemplatesHandler, PrefixResolver, NodeConsumer
Initializes and processes a stylesheet via SAX events. This class acts as essentially a state machine, maintaining a ContentHandler stack, and pushing appropriate content handlers as parse events occur.
-
-
Field Summary
Fields Modifier and Type Field Description static intSTYPE_IMPORTIf getStylesheetType returns this value, the current stylesheet is an imported stylesheet.static intSTYPE_INCLUDEIf getStylesheetType returns this value, the current stylesheet is an included stylesheet.static intSTYPE_ROOTIf getStylesheetType returns this value, the current stylesheet is a root stylesheet.
-
Constructor Summary
Constructors Constructor Description StylesheetHandler(TransformerFactoryImpl processor)Create a StylesheetHandler object, creating a root stylesheet as the target.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcharacters(char[] ch, int start, int length)Receive notification of character data inside an element.XPathcreateXPath(java.lang.String str, ElemTemplateElement owningTemplate)Process an expression string into an XPath.voidendDocument()Receive notification of the end of the document.voidendElement(java.lang.String uri, java.lang.String localName, java.lang.String rawName)Receive notification of the end of an element.voidendPrefixMapping(java.lang.String prefix)Receive notification of the end of a Namespace mapping.voiderror(org.xml.sax.SAXParseException e)Receive notification of a recoverable XSLT processing error.voidfatalError(org.xml.sax.SAXParseException e)Report a fatal XSLT processing error.java.lang.StringgetBaseIdentifier()Return the base identifier.booleangetIncremental()SAXSourceLocatorgetLocator()Get the current stylesheet Locator object.java.lang.StringgetNamespaceForPrefix(java.lang.String prefix)Given a namespace, get the corrisponding prefix from the current namespace support context.java.lang.StringgetNamespaceForPrefix(java.lang.String prefix, org.w3c.dom.Node context)Given a namespace, get the corrisponding prefix.booleangetOptimize()org.w3c.dom.NodegetOriginatingNode()Set the node that is originating the SAX event.XSLTSchemagetSchema()Get the root of the XSLT Schema, which tells us how to transition content handlers, create elements, etc.booleangetSource_location()TransformerFactoryImplgetStylesheetProcessor()Get the XSLT TransformerFactoryImpl for needed services.StylesheetRootgetStylesheetRoot()Return the stylesheet root that this handler is constructing.java.lang.StringgetSystemId()Get the base ID (URI or system ID) from where relative URLs will be resolved.javax.xml.transform.TemplatesgetTemplates()When this object is used as a ContentHandler or ContentHandler, it will create a Templates object, which the caller can get once the SAX events have been completed.booleanhandlesNullPrefixes()voidignorableWhitespace(char[] ch, int start, int length)Receive notification of ignorable whitespace in element content.booleanisStylesheetParsingComplete()Test whether the _last_ endDocument() has been processed.voidnotationDecl(java.lang.String name, java.lang.String publicId, java.lang.String systemId)Receive notification of a notation declaration.voidprocessingInstruction(java.lang.String target, java.lang.String data)Receive notification of a processing instruction.voidpushStylesheet(Stylesheet s)Push the current stylesheet being constructed.org.xml.sax.InputSourceresolveEntity(java.lang.String publicId, java.lang.String systemId)Resolve an external entity.voidsetDocumentLocator(org.xml.sax.Locator locator)Receive a Locator object for document events.voidsetOriginatingNode(org.w3c.dom.Node n)Set the node that is originating the SAX event.voidsetSystemId(java.lang.String baseID)Set the base ID (URL or system ID) for the stylesheet created by this builder.voidskippedEntity(java.lang.String name)Receive notification of a skipped entity.voidstartDocument()Receive notification of the beginning of the document.voidstartElement(java.lang.String uri, java.lang.String localName, java.lang.String rawName, org.xml.sax.Attributes attributes)Receive notification of the start of an element.voidstartPrefixMapping(java.lang.String prefix, java.lang.String uri)Receive notification of the start of a Namespace mapping.voidunparsedEntityDecl(java.lang.String name, java.lang.String publicId, java.lang.String systemId, java.lang.String notationName)Receive notification of an unparsed entity declaration.voidwarn(java.lang.String msg, java.lang.Object[] args)Warn the user of an problem.voidwarning(org.xml.sax.SAXParseException e)Receive notification of a XSLT processing warning.
-
-
-
Field Detail
-
STYPE_ROOT
public static final int STYPE_ROOT
If getStylesheetType returns this value, the current stylesheet is a root stylesheet.- See Also:
- Constant Field Values
-
STYPE_INCLUDE
public static final int STYPE_INCLUDE
If getStylesheetType returns this value, the current stylesheet is an included stylesheet.- See Also:
- Constant Field Values
-
STYPE_IMPORT
public static final int STYPE_IMPORT
If getStylesheetType returns this value, the current stylesheet is an imported stylesheet.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
StylesheetHandler
public StylesheetHandler(TransformerFactoryImpl processor) throws javax.xml.transform.TransformerConfigurationException
Create a StylesheetHandler object, creating a root stylesheet as the target.- Parameters:
processor- non-null reference to the transformer factory that owns this handler.- Throws:
javax.xml.transform.TransformerConfigurationException- if a StylesheetRoot can not be constructed for some reason.
-
-
Method Detail
-
createXPath
public XPath createXPath(java.lang.String str, ElemTemplateElement owningTemplate) throws javax.xml.transform.TransformerException
Process an expression string into an XPath. Must be public for access by the AVT class.- Parameters:
str- A non-null reference to a valid or invalid XPath expression string.- Returns:
- A non-null reference to an XPath object that represents the string argument.
- Throws:
javax.xml.transform.TransformerException- if the expression can not be processed.- See Also:
- Section 4 Expressions in XSLT Specification
-
getNamespaceForPrefix
public java.lang.String getNamespaceForPrefix(java.lang.String prefix)
Given a namespace, get the corrisponding prefix from the current namespace support context.- Specified by:
getNamespaceForPrefixin interfacePrefixResolver- Parameters:
prefix- The prefix to look up, which may be an empty string ("") for the default Namespace.- Returns:
- The associated Namespace URI, or null if the prefix is undeclared in this context.
-
getNamespaceForPrefix
public java.lang.String getNamespaceForPrefix(java.lang.String prefix, org.w3c.dom.Node context)Given a namespace, get the corrisponding prefix. This is here only to support thePrefixResolverinterface, and will throw an error if invoked on this object.- Specified by:
getNamespaceForPrefixin interfacePrefixResolver- Parameters:
prefix- The prefix to look up, which may be an empty string ("") for the default Namespace.context- The node context from which to look up the URI.- Returns:
- The associated Namespace URI, or null if the prefix is undeclared in this context.
-
getTemplates
public javax.xml.transform.Templates getTemplates()
When this object is used as a ContentHandler or ContentHandler, it will create a Templates object, which the caller can get once the SAX events have been completed.- Specified by:
getTemplatesin interfacejavax.xml.transform.sax.TemplatesHandler- Returns:
- The stylesheet object that was created during the SAX event process, or null if no stylesheet has been created. Author Scott Boag
-
setSystemId
public void setSystemId(java.lang.String baseID)
Set the base ID (URL or system ID) for the stylesheet created by this builder. This must be set in order to resolve relative URLs in the stylesheet.- Specified by:
setSystemIdin interfacejavax.xml.transform.sax.TemplatesHandler- Parameters:
baseID- Base URL for this stylesheet.
-
getSystemId
public java.lang.String getSystemId()
Get the base ID (URI or system ID) from where relative URLs will be resolved.- Specified by:
getSystemIdin interfacejavax.xml.transform.sax.TemplatesHandler- Returns:
- The systemID that was set with
setSystemId(java.lang.String).
-
resolveEntity
public org.xml.sax.InputSource resolveEntity(java.lang.String publicId, java.lang.String systemId) throws org.xml.sax.SAXExceptionResolve an external entity.- Specified by:
resolveEntityin interfaceorg.xml.sax.EntityResolver- Overrides:
resolveEntityin classorg.xml.sax.helpers.DefaultHandler- Parameters:
publicId- The public identifer, or null if none is available.systemId- The system identifier provided in the XML document.- Returns:
- The new input source, or null to require the default behaviour.
- Throws:
org.xml.sax.SAXException- if the entity can not be resolved.
-
notationDecl
public void notationDecl(java.lang.String name, java.lang.String publicId, java.lang.String systemId)Receive notification of a notation declaration.By default, do nothing. Application writers may override this method in a subclass if they wish to keep track of the notations declared in a document.
- Specified by:
notationDeclin interfaceorg.xml.sax.DTDHandler- Overrides:
notationDeclin classorg.xml.sax.helpers.DefaultHandler- Parameters:
name- The notation name.publicId- The notation public identifier, or null if not available.systemId- The notation system identifier.- See Also:
DTDHandler.notationDecl(java.lang.String, java.lang.String, java.lang.String)
-
unparsedEntityDecl
public void unparsedEntityDecl(java.lang.String name, java.lang.String publicId, java.lang.String systemId, java.lang.String notationName)Receive notification of an unparsed entity declaration.- Specified by:
unparsedEntityDeclin interfaceorg.xml.sax.DTDHandler- Overrides:
unparsedEntityDeclin classorg.xml.sax.helpers.DefaultHandler- Parameters:
name- The entity name.publicId- The entity public identifier, or null if not available.systemId- The entity system identifier.notationName- The name of the associated notation.- See Also:
DTDHandler.unparsedEntityDecl(java.lang.String, java.lang.String, java.lang.String, java.lang.String)
-
setDocumentLocator
public void setDocumentLocator(org.xml.sax.Locator locator)
Receive a Locator object for document events. This is called by the parser to push a locator for the stylesheet being parsed. The stack needs to be popped after the stylesheet has been parsed. We pop in popStylesheet.- Specified by:
setDocumentLocatorin interfaceorg.xml.sax.ContentHandler- Overrides:
setDocumentLocatorin classorg.xml.sax.helpers.DefaultHandler- Parameters:
locator- A locator for all SAX document events.- See Also:
ContentHandler.setDocumentLocator(org.xml.sax.Locator),Locator
-
startDocument
public void startDocument() throws org.xml.sax.SAXExceptionReceive notification of the beginning of the document.- Specified by:
startDocumentin interfaceorg.xml.sax.ContentHandler- Overrides:
startDocumentin classorg.xml.sax.helpers.DefaultHandler- Throws:
org.xml.sax.SAXException- Any SAX exception, possibly wrapping another exception.- See Also:
ContentHandler.startDocument()
-
isStylesheetParsingComplete
public boolean isStylesheetParsingComplete()
Test whether the _last_ endDocument() has been processed. This is needed as guidance for stylesheet optimization and compilation engines, which generally don't want to start until all included and imported stylesheets have been fully parsed.- Returns:
- true iff the complete stylesheet tree has been built.
-
endDocument
public void endDocument() throws org.xml.sax.SAXExceptionReceive notification of the end of the document.- Specified by:
endDocumentin interfaceorg.xml.sax.ContentHandler- Overrides:
endDocumentin classorg.xml.sax.helpers.DefaultHandler- Throws:
org.xml.sax.SAXException- Any SAX exception, possibly wrapping another exception.- See Also:
ContentHandler.endDocument()
-
startPrefixMapping
public void startPrefixMapping(java.lang.String prefix, java.lang.String uri) throws org.xml.sax.SAXExceptionReceive notification of the start of a Namespace mapping.By default, do nothing. Application writers may override this method in a subclass to take specific actions at the start of each element (such as allocating a new tree node or writing output to a file).
- Specified by:
startPrefixMappingin interfaceorg.xml.sax.ContentHandler- Overrides:
startPrefixMappingin classorg.xml.sax.helpers.DefaultHandler- Parameters:
prefix- The Namespace prefix being declared.uri- The Namespace URI mapped to the prefix.- Throws:
org.xml.sax.SAXException- Any SAX exception, possibly wrapping another exception.- See Also:
ContentHandler.startPrefixMapping(java.lang.String, java.lang.String)
-
endPrefixMapping
public void endPrefixMapping(java.lang.String prefix) throws org.xml.sax.SAXExceptionReceive notification of the end of a Namespace mapping.By default, do nothing. Application writers may override this method in a subclass to take specific actions at the start of each element (such as allocating a new tree node or writing output to a file).
- Specified by:
endPrefixMappingin interfaceorg.xml.sax.ContentHandler- Overrides:
endPrefixMappingin classorg.xml.sax.helpers.DefaultHandler- Parameters:
prefix- The Namespace prefix being declared.- Throws:
org.xml.sax.SAXException- Any SAX exception, possibly wrapping another exception.- See Also:
ContentHandler.endPrefixMapping(java.lang.String)
-
startElement
public void startElement(java.lang.String uri, java.lang.String localName, java.lang.String rawName, org.xml.sax.Attributes attributes) throws org.xml.sax.SAXExceptionReceive notification of the start of an element.- Specified by:
startElementin interfaceorg.xml.sax.ContentHandler- Overrides:
startElementin classorg.xml.sax.helpers.DefaultHandler- Parameters:
uri- The Namespace URI, or an empty string.localName- The local name (without prefix), or empty string if not namespace processing.rawName- The qualified name (with prefix).attributes- The specified or defaulted attributes.- Throws:
org.xml.sax.SAXException
-
endElement
public void endElement(java.lang.String uri, java.lang.String localName, java.lang.String rawName) throws org.xml.sax.SAXExceptionReceive notification of the end of an element.- Specified by:
endElementin interfaceorg.xml.sax.ContentHandler- Overrides:
endElementin classorg.xml.sax.helpers.DefaultHandler- Parameters:
uri- The Namespace URI, or an empty string.localName- The local name (without prefix), or empty string if not namespace processing.rawName- The qualified name (with prefix).- Throws:
org.xml.sax.SAXException- Any SAX exception, possibly wrapping another exception.- See Also:
ContentHandler.endElement(java.lang.String, java.lang.String, java.lang.String)
-
characters
public void characters(char[] ch, int start, int length) throws org.xml.sax.SAXExceptionReceive notification of character data inside an element.- Specified by:
charactersin interfaceorg.xml.sax.ContentHandler- Overrides:
charactersin classorg.xml.sax.helpers.DefaultHandler- Parameters:
ch- The characters.start- The start position in the character array.length- The number of characters to use from the character array.- Throws:
org.xml.sax.SAXException- Any SAX exception, possibly wrapping another exception.- See Also:
ContentHandler.characters(char[], int, int)
-
ignorableWhitespace
public void ignorableWhitespace(char[] ch, int start, int length) throws org.xml.sax.SAXExceptionReceive notification of ignorable whitespace in element content.- Specified by:
ignorableWhitespacein interfaceorg.xml.sax.ContentHandler- Overrides:
ignorableWhitespacein classorg.xml.sax.helpers.DefaultHandler- Parameters:
ch- The whitespace characters.start- The start position in the character array.length- The number of characters to use from the character array.- Throws:
org.xml.sax.SAXException- Any SAX exception, possibly wrapping another exception.- See Also:
ContentHandler.ignorableWhitespace(char[], int, int)
-
processingInstruction
public void processingInstruction(java.lang.String target, java.lang.String data) throws org.xml.sax.SAXExceptionReceive notification of a processing instruction.The Parser will invoke this method once for each processing instruction found: note that processing instructions may occur before or after the main document element.
A SAX parser should never report an XML declaration (XML 1.0, section 2.8) or a text declaration (XML 1.0, section 4.3.1) using this method.
By default, do nothing. Application writers may override this method in a subclass to take specific actions for each processing instruction, such as setting status variables or invoking other methods.
- Specified by:
processingInstructionin interfaceorg.xml.sax.ContentHandler- Overrides:
processingInstructionin classorg.xml.sax.helpers.DefaultHandler- Parameters:
target- The processing instruction target.data- The processing instruction data, or null if none is supplied.- Throws:
org.xml.sax.SAXException- Any SAX exception, possibly wrapping another exception.- See Also:
ContentHandler.processingInstruction(java.lang.String, java.lang.String)
-
skippedEntity
public void skippedEntity(java.lang.String name) throws org.xml.sax.SAXExceptionReceive notification of a skipped entity.By default, do nothing. Application writers may override this method in a subclass to take specific actions for each processing instruction, such as setting status variables or invoking other methods.
- Specified by:
skippedEntityin interfaceorg.xml.sax.ContentHandler- Overrides:
skippedEntityin classorg.xml.sax.helpers.DefaultHandler- Parameters:
name- The name of the skipped entity.- Throws:
org.xml.sax.SAXException- Any SAX exception, possibly wrapping another exception.- See Also:
ContentHandler.processingInstruction(java.lang.String, java.lang.String)
-
warn
public void warn(java.lang.String msg, java.lang.Object[] args) throws org.xml.sax.SAXExceptionWarn the user of an problem.- Parameters:
msg- An key into theXSLTErrorResourcestable, that is one of the WG_ prefixed definitions.args- An array of arguments for the given warning.- Throws:
org.xml.sax.SAXException- that wraps aTransformerExceptionif the currentErrorListener.warning(javax.xml.transform.TransformerException)method chooses to flag this condition as an error.
-
warning
public void warning(org.xml.sax.SAXParseException e) throws org.xml.sax.SAXExceptionReceive notification of a XSLT processing warning.- Specified by:
warningin interfaceorg.xml.sax.ErrorHandler- Overrides:
warningin classorg.xml.sax.helpers.DefaultHandler- Parameters:
e- The warning information encoded as an exception.- Throws:
org.xml.sax.SAXException- that wraps aTransformerExceptionif the currentErrorListener.warning(javax.xml.transform.TransformerException)method chooses to flag this condition as an error.
-
error
public void error(org.xml.sax.SAXParseException e) throws org.xml.sax.SAXExceptionReceive notification of a recoverable XSLT processing error.- Specified by:
errorin interfaceorg.xml.sax.ErrorHandler- Overrides:
errorin classorg.xml.sax.helpers.DefaultHandler- Parameters:
e- The error information encoded as an exception.- Throws:
org.xml.sax.SAXException- that wraps aTransformerExceptionif the currentErrorListener.error(javax.xml.transform.TransformerException)method chooses to flag this condition as an error.
-
fatalError
public void fatalError(org.xml.sax.SAXParseException e) throws org.xml.sax.SAXExceptionReport a fatal XSLT processing error.- Specified by:
fatalErrorin interfaceorg.xml.sax.ErrorHandler- Overrides:
fatalErrorin classorg.xml.sax.helpers.DefaultHandler- Parameters:
e- The error information encoded as an exception.- Throws:
org.xml.sax.SAXException- that wraps aTransformerExceptionif the currentErrorListener.fatalError(javax.xml.transform.TransformerException)method chooses to flag this condition as an error.
-
getStylesheetProcessor
public TransformerFactoryImpl getStylesheetProcessor()
Get the XSLT TransformerFactoryImpl for needed services. TODO: This method should be renamed.- Returns:
- The TransformerFactoryImpl that owns this handler.
-
getStylesheetRoot
public StylesheetRoot getStylesheetRoot()
Return the stylesheet root that this handler is constructing.- Returns:
- The root stylesheet of the stylesheets tree.
-
pushStylesheet
public void pushStylesheet(Stylesheet s)
Push the current stylesheet being constructed. If no other stylesheets have been pushed onto the stack, assume the argument is a stylesheet root, and also set the stylesheet root member.- Parameters:
s- non-null reference to a stylesheet.
-
getSchema
public XSLTSchema getSchema()
Get the root of the XSLT Schema, which tells us how to transition content handlers, create elements, etc.- Returns:
- The root XSLT Schema, which should never be null.
-
getBaseIdentifier
public java.lang.String getBaseIdentifier()
Return the base identifier.- Specified by:
getBaseIdentifierin interfacePrefixResolver- Returns:
- The base identifier of the current stylesheet.
-
getLocator
public SAXSourceLocator getLocator()
Get the current stylesheet Locator object.- Returns:
- non-null reference to the current locator object.
-
setOriginatingNode
public void setOriginatingNode(org.w3c.dom.Node n)
Set the node that is originating the SAX event.- Specified by:
setOriginatingNodein interfaceNodeConsumer- Parameters:
n- Reference to node that originated the current event.- See Also:
NodeConsumer
-
getOriginatingNode
public org.w3c.dom.Node getOriginatingNode()
Set the node that is originating the SAX event.- Returns:
- Reference to node that originated the current event.
- See Also:
NodeConsumer
-
handlesNullPrefixes
public boolean handlesNullPrefixes()
- Specified by:
handlesNullPrefixesin interfacePrefixResolver- See Also:
PrefixResolver.handlesNullPrefixes()
-
getOptimize
public boolean getOptimize()
- Returns:
- Optimization flag
-
getIncremental
public boolean getIncremental()
- Returns:
- Incremental flag
-
getSource_location
public boolean getSource_location()
- Returns:
- Source Location flag
-
-