Package net.sf.saxon.serialize
Class XMLEmitter
- java.lang.Object
-
- net.sf.saxon.event.SequenceReceiver
-
- net.sf.saxon.serialize.Emitter
-
- net.sf.saxon.serialize.XMLEmitter
-
- All Implemented Interfaces:
javax.xml.transform.Result
,Receiver
,ReceiverWithOutputProperties
- Direct Known Subclasses:
HTMLEmitter
,MessageEmitter
,MessageWarner
,TEXTEmitter
,XHTML1Emitter
,XHTML5Emitter
,XQueryEmitter
public class XMLEmitter extends Emitter
XMLEmitter is an Emitter that generates XML output to a specified destination.
-
-
Field Summary
Fields Modifier and Type Field Description protected boolean[]
attSpecials
protected boolean
canonical
protected CharacterReferenceGenerator
characterReferenceGenerator
protected boolean
declarationIsWritten
protected char
delimiter
protected static byte[]
DOCTYPE
protected NodeName
elementCode
protected java.util.Stack<java.lang.String>
elementStack
protected int
indentForNextAttribute
protected java.lang.String
internalSubset
protected boolean
openStartTag
protected static byte[]
RIGHT_ANGLE_NEWLINE
protected static boolean[]
specialInAtt
protected static boolean[]
specialInAttSingle
protected static boolean[]
specialInText
protected boolean
started
protected boolean
startedElement
protected boolean
undeclareNamespaces
protected boolean
unfailing
-
Fields inherited from class net.sf.saxon.serialize.Emitter
allCharactersEncodable, characterSet, outputProperties, writer
-
Fields inherited from class net.sf.saxon.event.SequenceReceiver
pipelineConfiguration, previousAtomic, systemId
-
-
Constructor Summary
Constructors Constructor Description XMLEmitter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
characters(UnicodeString chars, Location locationId, int properties)
Character data.void
close()
End of the document.void
closeStartTag()
Mark the end of the start tagvoid
comment(UnicodeString chars, Location locationId, int properties)
Handle a comment.protected UnicodeString
convertToAscii(UnicodeString chars)
Where characters are not available in the selected encoding, substitute themvoid
endDocument()
Notify the end of a document nodevoid
endElement()
End of an element.boolean
isStarted()
Ask whether anything has yet been writtenvoid
namespace(java.lang.String nsprefix, NamespaceUri nsuri, boolean isFirst)
void
open()
Start of the event stream.protected void
openDocument()
Do the real work of starting the document.void
processingInstruction(java.lang.String target, UnicodeString data, Location locationId, int properties)
Handle a processing instruction.void
setCharacterReferenceGenerator(CharacterReferenceGenerator generator)
Set the character reference generator to be used for generating hexadecimal or decimal character referencesvoid
setEscapeNonAscii(java.lang.Boolean escape)
Say that all non-ASCII characters should be escaped, regardless of the character encodingvoid
setIndentForNextAttribute(int indent)
Set the indentation to be used for attributes (this excludes the length of the element name itself)void
startDocument(int properties)
Start of a document node.void
startElement(NodeName elemName, SchemaType type, AttributeMap attributes, NamespaceMap namespaces, Location location, int properties)
Start of an element.protected int
testCharacters(UnicodeString chars)
Test that all characters in a name (for example) are supported in the target encoding.boolean
usesTypeAnnotations()
Ask whether this Receiver (or the downstream pipeline) makes any use of the type annotations supplied on element and attribute eventsprotected void
writeAttribute(NodeName elCode, java.lang.String attname, java.lang.String value, int properties)
Write attribute name=value pair.protected void
writeAttributeIndentString()
protected void
writeCodePoint(int c)
void
writeDeclaration()
Output the XML declarationprotected void
writeDocType(NodeName name, java.lang.String displayName, java.lang.String systemId, java.lang.String publicId)
Output the document type declarationprotected boolean
writeDocTypeWithNullSystemId()
protected void
writeEmptyElementTagCloser(java.lang.String displayName, NodeName nameCode)
Close an empty element tag.protected void
writeEscape(UnicodeString chars, boolean inAttribute)
Write contents of array to current writer, after escaping special characters.-
Methods inherited from class net.sf.saxon.serialize.Emitter
append, getOutputProperties, setMustClose, setOutputProperties, setUnicodeWriter, setUnparsedEntity
-
Methods inherited from class net.sf.saxon.event.SequenceReceiver
append, decompose, flatten, getConfiguration, getErrorCodeForDecomposingFunctionItems, getNamePool, getPipelineConfiguration, getSystemId, handlesAppend, setPipelineConfiguration, setSystemId
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface net.sf.saxon.event.Receiver
append, getPipelineConfiguration, handlesAppend, setPipelineConfiguration
-
-
-
-
Field Detail
-
canonical
protected boolean canonical
-
started
protected boolean started
-
startedElement
protected boolean startedElement
-
openStartTag
protected boolean openStartTag
-
declarationIsWritten
protected boolean declarationIsWritten
-
elementCode
protected NodeName elementCode
-
indentForNextAttribute
protected int indentForNextAttribute
-
undeclareNamespaces
protected boolean undeclareNamespaces
-
unfailing
protected boolean unfailing
-
internalSubset
protected java.lang.String internalSubset
-
delimiter
protected char delimiter
-
attSpecials
protected boolean[] attSpecials
-
elementStack
protected java.util.Stack<java.lang.String> elementStack
-
characterReferenceGenerator
protected CharacterReferenceGenerator characterReferenceGenerator
-
specialInText
protected static boolean[] specialInText
-
specialInAtt
protected static boolean[] specialInAtt
-
specialInAttSingle
protected static boolean[] specialInAttSingle
-
DOCTYPE
protected static final byte[] DOCTYPE
-
RIGHT_ANGLE_NEWLINE
protected static final byte[] RIGHT_ANGLE_NEWLINE
-
-
Method Detail
-
setCharacterReferenceGenerator
public void setCharacterReferenceGenerator(CharacterReferenceGenerator generator)
Set the character reference generator to be used for generating hexadecimal or decimal character references- Parameters:
generator
- the character reference generator to be used
-
setEscapeNonAscii
public void setEscapeNonAscii(java.lang.Boolean escape)
Say that all non-ASCII characters should be escaped, regardless of the character encoding- Parameters:
escape
- true if all non ASCII characters should be escaped
-
open
public void open() throws XPathException
Start of the event stream. Nothing is done at this stage: the opening of the output file is deferred until some content is written to it.- Specified by:
open
in interfaceReceiver
- Overrides:
open
in classSequenceReceiver
- Throws:
XPathException
- if an error occurs
-
startDocument
public void startDocument(int properties) throws XPathException
Start of a document node. Nothing is done at this stage: the opening of the output file is deferred until some content is written to it.- Parameters:
properties
- bit-significant integer indicating properties of the document node. The definitions of the bits are in classReceiverOption
- Throws:
XPathException
- if an error occurs
-
endDocument
public void endDocument() throws XPathException
Notify the end of a document node- Throws:
XPathException
- if an error occurs
-
openDocument
protected void openDocument() throws XPathException
Do the real work of starting the document. This happens when the first content is written.- Throws:
XPathException
- if an error occurs opening the output file
-
writeDeclaration
public void writeDeclaration() throws XPathException
Output the XML declaration- Throws:
XPathException
- if any error occurs
-
writeDocType
protected void writeDocType(NodeName name, java.lang.String displayName, java.lang.String systemId, java.lang.String publicId) throws XPathException
Output the document type declaration- Parameters:
name
- the qualified name of the elementdisplayName
- The element name as displayedsystemId
- The DOCTYPE system identifierpublicId
- The DOCTYPE public identifier- Throws:
XPathException
- if an error occurs writing to the output
-
close
public void close() throws XPathException
End of the document.- Specified by:
close
in interfaceReceiver
- Overrides:
close
in classEmitter
- Throws:
XPathException
- if an error occurs
-
startElement
public void startElement(NodeName elemName, SchemaType type, AttributeMap attributes, NamespaceMap namespaces, Location location, int properties) throws XPathException
Start of an element. Output the start tag, escaping special characters.- Parameters:
elemName
- the name of the elementtype
- the type annotation of the elementattributes
- the attributes of this elementnamespaces
- the in-scope namespaces of this element: generally this is all the in-scope namespaces, without relying on inheriting namespaces from parent elementslocation
- an object providing information about the module, line, and column where the node originatedproperties
- bit-significant properties of the element node. If there are no relevant properties, zero is supplied. The definitions of the bits are in classReceiverOption
- Throws:
XPathException
- if an error occurs
-
writeDocTypeWithNullSystemId
protected boolean writeDocTypeWithNullSystemId()
-
namespace
public void namespace(java.lang.String nsprefix, NamespaceUri nsuri, boolean isFirst) throws XPathException
- Throws:
XPathException
-
setIndentForNextAttribute
public void setIndentForNextAttribute(int indent)
Set the indentation to be used for attributes (this excludes the length of the element name itself)- Parameters:
indent
- the number of spaces to be output before each attribute (on a new line)
-
writeAttributeIndentString
protected void writeAttributeIndentString() throws java.io.IOException
- Throws:
java.io.IOException
-
closeStartTag
public void closeStartTag() throws XPathException
Mark the end of the start tag- Throws:
XPathException
- if an IO exception occurs
-
writeEmptyElementTagCloser
protected void writeEmptyElementTagCloser(java.lang.String displayName, NodeName nameCode) throws java.io.IOException
Close an empty element tag. (This is overridden in XHTMLEmitter).- Parameters:
displayName
- the name of the empty elementnameCode
- the fingerprint of the name of the empty element- Throws:
java.io.IOException
- if an IO exception occurs
-
writeAttribute
protected void writeAttribute(NodeName elCode, java.lang.String attname, java.lang.String value, int properties) throws XPathException
Write attribute name=value pair.- Parameters:
elCode
- The element name is not used in this version of the method, but is used in the HTML subclass.attname
- The attribute name, which has already been validated to ensure it can be written in this encodingvalue
- The value of the attributeproperties
- Any special properties of the attribute- Throws:
XPathException
- if an error occurs
-
testCharacters
protected int testCharacters(UnicodeString chars)
Test that all characters in a name (for example) are supported in the target encoding.- Parameters:
chars
- the characters to be tested- Returns:
- zero if all the characters are available, or the value of the first offending character if not
-
convertToAscii
protected UnicodeString convertToAscii(UnicodeString chars)
Where characters are not available in the selected encoding, substitute them- Parameters:
chars
- the characters to be converted- Returns:
- the converted string
-
endElement
public void endElement() throws XPathException
End of an element.- Throws:
XPathException
- if an error occurs
-
characters
public void characters(UnicodeString chars, Location locationId, int properties) throws XPathException
Character data.- Parameters:
chars
- The characterslocationId
- provides information such as line number and system ID.properties
- Bit significant value. The following bits are defined:- DISABLE_ESCAPING
- Disable escaping for this text node
- USE_CDATA
- Output as a CDATA section
- Throws:
XPathException
- if an error occurs
-
processingInstruction
public void processingInstruction(java.lang.String target, UnicodeString data, Location locationId, int properties) throws XPathException
Handle a processing instruction.- Parameters:
target
- The PI name. This must be a legal name (it will not be checked).data
- The data portion of the processing instructionlocationId
- provides information such as line number and system ID.properties
- Additional information about the PI.- Throws:
XPathException
- if an error occurs
-
writeEscape
protected void writeEscape(UnicodeString chars, boolean inAttribute) throws java.io.IOException, XPathException
Write contents of array to current writer, after escaping special characters. This method converts the XML special characters (such as < and &) into their predefined entities.- Parameters:
chars
- The character sequence containing the stringinAttribute
- Set to true if the text is in an attribute value- Throws:
java.io.IOException
- if an IO exception occursXPathException
- if an IO exception occurs
-
writeCodePoint
protected void writeCodePoint(int c) throws java.io.IOException
- Throws:
java.io.IOException
-
comment
public void comment(UnicodeString chars, Location locationId, int properties) throws XPathException
Handle a comment.- Parameters:
chars
- The content of the commentlocationId
- provides information such as line number and system ID.properties
- Additional information about the comment.- Throws:
XPathException
- if an error occurs
-
usesTypeAnnotations
public boolean usesTypeAnnotations()
Ask whether this Receiver (or the downstream pipeline) makes any use of the type annotations supplied on element and attribute events- Specified by:
usesTypeAnnotations
in interfaceReceiver
- Overrides:
usesTypeAnnotations
in classEmitter
- Returns:
- true if the Receiver makes any use of this information. If false, the caller may supply untyped nodes instead of supplying the type annotation
-
isStarted
public boolean isStarted()
Ask whether anything has yet been written- Returns:
- true if content has been output
-
-