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:
Result
,Receiver
,ReceiverWithOutputProperties
- Direct Known Subclasses:
HTMLEmitter
,MessageEmitter
,MessageWarner
,TEXTEmitter
,XHTML1Emitter
,XHTML5Emitter
,XQueryEmitter
XMLEmitter is an Emitter that generates XML output
to a specified destination.
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected boolean[]
protected boolean
protected CharacterReferenceGenerator
protected boolean
protected char
protected static final byte[]
protected NodeName
protected int
protected String
protected boolean
protected static final byte[]
protected static boolean[]
protected static boolean[]
protected static boolean[]
protected boolean
protected boolean
protected boolean
protected boolean
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
Fields inherited from interface javax.xml.transform.Result
PI_DISABLE_OUTPUT_ESCAPING, PI_ENABLE_OUTPUT_ESCAPING
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
characters
(UnicodeString chars, Location locationId, int properties) Character data.void
close()
End of the document.void
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
Notify the end of a document nodevoid
End of an element.boolean
Ask whether anything has yet been writtenvoid
namespace
(String nsprefix, NamespaceUri nsuri, boolean isFirst) void
open()
Start of the event stream.protected void
Do the real work of starting the document.void
processingInstruction
(String target, UnicodeString data, Location locationId, int properties) Handle a processing instruction.void
Set the character reference generator to be used for generating hexadecimal or decimal character referencesvoid
setEscapeNonAscii
(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
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, String attname, String value, int properties) Write attribute name=value pair.protected void
protected void
writeCodePoint
(int c) void
Output the XML declarationprotected void
writeDocType
(NodeName name, String displayName, String systemId, String publicId) Output the document type declarationprotected boolean
protected void
writeEmptyElementTagCloser
(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
Methods inherited from interface javax.xml.transform.Result
getSystemId, setSystemId
-
Field Details
-
canonical
protected boolean canonical -
started
protected boolean started -
startedElement
protected boolean startedElement -
openStartTag
protected boolean openStartTag -
declarationIsWritten
protected boolean declarationIsWritten -
elementCode
-
indentForNextAttribute
protected int indentForNextAttribute -
undeclareNamespaces
protected boolean undeclareNamespaces -
unfailing
protected boolean unfailing -
internalSubset
-
delimiter
protected char delimiter -
attSpecials
protected boolean[] attSpecials -
elementStack
-
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
-
-
Constructor Details
-
XMLEmitter
public XMLEmitter()
-
-
Method Details
-
setCharacterReferenceGenerator
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
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
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
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
Notify the end of a document node- Throws:
XPathException
- if an error occurs
-
openDocument
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
Output the XML declaration- Throws:
XPathException
- if any error occurs
-
writeDocType
protected void writeDocType(NodeName name, String displayName, String systemId, 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
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
- 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
- Throws:
IOException
-
closeStartTag
Mark the end of the start tag- Throws:
XPathException
- if an IO exception occurs
-
writeEmptyElementTagCloser
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:
IOException
- if an IO exception occurs
-
writeAttribute
protected void writeAttribute(NodeName elCode, String attname, 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
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
Where characters are not available in the selected encoding, substitute them- Parameters:
chars
- the characters to be converted- Returns:
- the converted string
-
endElement
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(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 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:
IOException
- if an IO exception occursXPathException
- if an IO exception occurs
-
writeCodePoint
- Throws:
IOException
-
comment
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
-