|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.geronimo.system.configuration.BaseMarkupSerializer
public abstract class BaseMarkupSerializer
Base class for a serializer supporting both DOM and SAX pretty serializing of XML/HTML/XHTML documents. Derives classes perform the method-specific serializing, this class provides the common serializing mechanisms.
The serializer must be initialized with the proper writer and
output format before it can be used by calling #init
.
The serializer can be reused any number of times, but cannot
be used concurrently by two threads.
If an output stream is used, the encoding is taken from the output format (defaults to UTF-8). If a writer is used, make sure the writer uses the same encoding (if applies) as specified in the output format.
The serializer supports both DOM and SAX. DOM serializing is done
by calling serialize(org.w3c.dom.Element)
and SAX serializing is done by firing
SAX events and using the serializer as a document handler.
This also applies to derived class.
If an I/O exception occurs while serializing, the serializer
will not throw an exception directly, but only throw it
at the end of serializing (either DOM or SAX's DocumentHandler.endDocument()
.
For elements that are not specified as whitespace preserving, the serializer will potentially break long text lines at space boundaries, indent lines, and serialize elements on separate lines. Line terminators will be regarded as spaces, and spaces at beginning of line will be stripped.
When indenting, the serializer is capable of detecting seemingly element content, and serializing these elements indented on separate lines. An element is serialized indented when it is the first or last child of an element, or immediate following or preceding another element.
Serializer
,
DOMSerializer
Field Summary | |
---|---|
protected String |
docTypePublicId
The system identifier of the document type, if known. |
protected String |
docTypeSystemId
The system identifier of the document type, if known. |
protected OutputFormat |
format
The output format associated with this serializer. |
protected boolean |
indenting
True if indenting printer. |
protected Hashtable |
prefixes
Association between namespace URIs (keys) and prefixes (values). |
protected Printer |
printer
The printer used for printing text parts. |
protected boolean |
started
If the document has been started (header serialized), this flag is set to true so it's not started twice. |
Constructor Summary | |
---|---|
protected |
BaseMarkupSerializer(OutputFormat format)
Protected constructor can only be used by derived class. |
Method Summary | |
---|---|
void |
attributeDecl(String eName,
String aName,
String type,
String valueDefault,
String value)
|
void |
characters(char[] chars,
int start,
int length)
|
protected void |
characters(String text)
Called to print the text contents in the prevailing element format. |
void |
comment(char[] chars,
int start,
int length)
|
void |
comment(String text)
|
protected ElementState |
content()
Must be called by a method about to print any type of content. |
void |
elementDecl(String name,
String model)
|
void |
endCDATA()
|
void |
endDocument()
Called at the end of the document to wrap it up. |
void |
endDTD()
|
void |
endEntity(String name)
|
void |
endNonEscaping()
|
void |
endPrefixMapping(String prefix)
|
void |
endPreserving()
|
protected ElementState |
enterElementState(String namespaceURI,
String localName,
String rawName,
boolean preserveSpace)
Enter a new element state for the specified element. |
void |
externalEntityDecl(String name,
String publicId,
String systemId)
|
protected ElementState |
getElementState()
Return the state of the current element. |
protected abstract String |
getEntityRef(int ch)
Returns the suitable entity reference for this character value, or null if no such entity exists. |
protected String |
getPrefix(String namespaceURI)
Returns the namespace prefix for the specified URI. |
void |
ignorableWhitespace(char[] chars,
int start,
int length)
|
void |
internalEntityDecl(String name,
String value)
|
protected boolean |
isDocumentState()
Returns true if in the state of the document. |
protected ElementState |
leaveElementState()
Leave the current element state and return to the state of the parent element. |
void |
notationDecl(String name,
String publicId,
String systemId)
|
protected void |
prepare()
|
protected void |
printDoctypeURL(String url)
Print a document type public or system identifier URL. |
protected void |
printEscaped(int ch)
|
protected void |
printEscaped(String source)
Escapes a string so it may be printed as text content or attribute value. |
protected void |
printText(char[] chars,
int start,
int length,
boolean preserveSpace,
boolean unescaped)
Called to print additional text with whitespace handling. |
protected void |
printText(String text,
boolean preserveSpace,
boolean unescaped)
|
void |
processingInstruction(String target,
String code)
|
void |
processingInstructionIO(String target,
String code)
|
boolean |
reset()
|
void |
serialize(Document doc)
Serializes the DOM document using the previously specified writer and output format. |
void |
serialize(DocumentFragment frag)
Serializes the DOM document fragmnt using the previously specified writer and output format. |
void |
serialize(Element elem)
Serializes the DOM element using the previously specified writer and output format. |
protected abstract void |
serializeElement(Element elem)
Called to serializee the DOM element. |
protected void |
serializeNode(Node node)
Serialize the DOM node. |
protected void |
serializePreRoot()
Comments and PIs cannot be serialized before the root element, because the root element serializes the document type, which generally comes first. |
void |
setDocumentLocator(Locator locator)
|
void |
setOutputByteStream(OutputStream output)
|
void |
setOutputCharStream(Writer writer)
|
void |
setOutputFormat(OutputFormat format)
|
void |
skippedEntity(String name)
|
void |
startCDATA()
|
void |
startDocument()
|
void |
startDTD(String name,
String publicId,
String systemId)
|
void |
startEntity(String name)
|
void |
startNonEscaping()
|
void |
startPrefixMapping(String prefix,
String uri)
|
void |
startPreserving()
|
void |
unparsedEntityDecl(String name,
String publicId,
String systemId,
String notationName)
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
protected boolean started
protected Hashtable prefixes
protected String docTypePublicId
protected String docTypeSystemId
protected OutputFormat format
protected Printer printer
protected boolean indenting
Constructor Detail |
---|
protected BaseMarkupSerializer(OutputFormat format)
#init
.
Method Detail |
---|
public void setOutputByteStream(OutputStream output)
public void setOutputCharStream(Writer writer)
public void setOutputFormat(OutputFormat format)
public boolean reset()
protected void prepare() throws IOException
IOException
public void serialize(Element elem) throws IOException
elem
- The element to serialize
IOException
- An I/O exception occured while
serializingpublic void serialize(DocumentFragment frag) throws IOException
elem
- The element to serialize
IOException
- An I/O exception occured while
serializingpublic void serialize(Document doc) throws IOException
doc
- The document to serialize
IOException
- An I/O exception occured while
serializingpublic void startDocument() throws SAXException
SAXException
public void characters(char[] chars, int start, int length) throws SAXException
SAXException
public void ignorableWhitespace(char[] chars, int start, int length) throws SAXException
SAXException
public final void processingInstruction(String target, String code) throws SAXException
SAXException
public void processingInstructionIO(String target, String code) throws IOException
IOException
public void comment(char[] chars, int start, int length) throws SAXException
SAXException
public void comment(String text) throws IOException
IOException
public void startCDATA()
public void endCDATA()
public void startNonEscaping()
public void endNonEscaping()
public void startPreserving()
public void endPreserving()
public void endDocument() throws SAXException
SAXException
- An I/O exception occured during
serializingpublic void startEntity(String name)
public void endEntity(String name)
public void setDocumentLocator(Locator locator)
public void skippedEntity(String name) throws SAXException
SAXException
public void startPrefixMapping(String prefix, String uri) throws SAXException
SAXException
public void endPrefixMapping(String prefix) throws SAXException
SAXException
public final void startDTD(String name, String publicId, String systemId) throws SAXException
SAXException
public void endDTD()
public void elementDecl(String name, String model) throws SAXException
SAXException
public void attributeDecl(String eName, String aName, String type, String valueDefault, String value) throws SAXException
SAXException
public void internalEntityDecl(String name, String value) throws SAXException
SAXException
public void externalEntityDecl(String name, String publicId, String systemId) throws SAXException
SAXException
public void unparsedEntityDecl(String name, String publicId, String systemId, String notationName) throws SAXException
SAXException
public void notationDecl(String name, String publicId, String systemId) throws SAXException
SAXException
protected void serializeNode(Node node) throws IOException
serializeElement(org.w3c.dom.Element)
.
node
- The node to serialize
IOException
- An I/O exception occured while
serializingserializeElement(org.w3c.dom.Element)
protected ElementState content() throws IOException
IOException
- An I/O exception occured while
serializingprotected void characters(String text) throws IOException
text
- The text to printunescaped
- True is should print unescaped
IOException
- An I/O exception occured while
serializingprotected abstract String getEntityRef(int ch)
ch
- Character value
protected abstract void serializeElement(Element elem) throws IOException
elem
- The element to serialize
IOException
- An I/O exception occured while
serializingprotected void serializePreRoot() throws IOException
IOException
- An I/O exception occured while
serializingprotected final void printText(char[] chars, int start, int length, boolean preserveSpace, boolean unescaped) throws IOException
#printText(String)
with a call to #breakLine
for each new line. If spaces are not preserved, the text is
broken at space boundaries if longer than the line width;
Multiple spaces are printed as such, but spaces at beginning
of line are removed.
text
- The text to printpreserveSpace
- Space preserving flagunescaped
- Print unescaped
IOException
protected final void printText(String text, boolean preserveSpace, boolean unescaped) throws IOException
IOException
protected void printDoctypeURL(String url) throws IOException
printText(char[], int, int, boolean, boolean)
.
url
- The document type url to print
IOException
protected void printEscaped(int ch) throws IOException
IOException
protected void printEscaped(String source) throws IOException
source
- The string to escape
IOException
protected ElementState getElementState()
protected ElementState enterElementState(String namespaceURI, String localName, String rawName, boolean preserveSpace)
protected ElementState leaveElementState()
protected boolean isDocumentState()
protected String getPrefix(String namespaceURI)
namespaceURI
- The namespace URI
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |