Package org.apache.cocoon.xml.sax
Class SAXBuffer
- java.lang.Object
-
- org.apache.cocoon.xml.sax.SAXBuffer
-
- All Implemented Interfaces:
java.io.Serializable
,org.xml.sax.ContentHandler
,org.xml.sax.ext.LexicalHandler
@Deprecated(since="2022-01-27") public class SAXBuffer extends java.lang.Object implements org.xml.sax.ContentHandler, org.xml.sax.ext.LexicalHandler, java.io.Serializable
Deprecated.This API is deprecated, migrate code to the XML APIs provided by the JDK.A class that can record SAX events and replay them later.Compared to the old Cocoon.XMLByteStreamCompiler, this class is many times faster at sending out the recorded SAX events since it doesn't need to convert between byte and char representations etc. On the other hand, its data structure is more complex then a simple byte array, making XMLByteStreamCompiler better in case the recorded SAX should be stored long-term.
Use this class if you need to frequently generate smaller amounts of SAX events, or replay a set of recorded start events immediately.
Both
ContentHandler
andLexicalHandler
are supported, the only exception is that the setDocumentLocator event is not recorded.- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
SAXBuffer.Characters
Deprecated.static class
SAXBuffer.Comment
Deprecated.static class
SAXBuffer.EndCDATA
Deprecated.static class
SAXBuffer.EndDocument
Deprecated.static class
SAXBuffer.EndDTD
Deprecated.static class
SAXBuffer.EndElement
Deprecated.static class
SAXBuffer.EndEntity
Deprecated.static class
SAXBuffer.EndPrefixMapping
Deprecated.static class
SAXBuffer.IgnorableWhitespace
Deprecated.static class
SAXBuffer.PI
Deprecated.static class
SAXBuffer.SkippedEntity
Deprecated.static class
SAXBuffer.StartCDATA
Deprecated.static class
SAXBuffer.StartDocument
Deprecated.static class
SAXBuffer.StartDTD
Deprecated.static class
SAXBuffer.StartElement
Deprecated.static class
SAXBuffer.StartEntity
Deprecated.static class
SAXBuffer.StartPrefixMapping
Deprecated.static class
SAXBuffer.XMLizableBit
Deprecated.
-
Constructor Summary
Constructors Constructor Description SAXBuffer()
Deprecated.Creates empty SaxBufferSAXBuffer(java.util.List<org.apache.cocoon.xml.sax.SAXBuffer.SaxBit> bits)
Deprecated.Creates SaxBuffer based on the provided bits list.SAXBuffer(SAXBuffer saxBuffer)
Deprecated.Creates copy of another SaxBuffer
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description void
characters(char[] ch, int start, int length)
Deprecated.void
comment(char[] ch, int start, int length)
Deprecated.void
dump(java.io.Writer writer)
Deprecated.Dump buffer contents into the provided writer.void
endCDATA()
Deprecated.void
endDocument()
Deprecated.void
endDTD()
Deprecated.void
endElement(java.lang.String namespaceURI, java.lang.String localName, java.lang.String qName)
Deprecated.void
endEntity(java.lang.String name)
Deprecated.void
endPrefixMapping(java.lang.String prefix)
Deprecated.java.util.List<org.apache.cocoon.xml.sax.SAXBuffer.SaxBit>
getBits()
Deprecated.void
ignorableWhitespace(char[] ch, int start, int length)
Deprecated.boolean
isEmpty()
Deprecated.void
processingInstruction(java.lang.String target, java.lang.String data)
Deprecated.void
recycle()
Deprecated.Clear this buffervoid
saxBuffer(SAXBuffer xml)
Deprecated.Add a another buffervoid
setDocumentLocator(org.xml.sax.Locator locator)
Deprecated.void
skippedEntity(java.lang.String name)
Deprecated.void
startCDATA()
Deprecated.void
startDocument()
Deprecated.void
startDTD(java.lang.String name, java.lang.String publicId, java.lang.String systemId)
Deprecated.void
startElement(java.lang.String namespaceURI, java.lang.String localName, java.lang.String qName, org.xml.sax.Attributes atts)
Deprecated.void
startEntity(java.lang.String name)
Deprecated.void
startPrefixMapping(java.lang.String prefix, java.lang.String uri)
Deprecated.void
toSAX(org.xml.sax.ContentHandler contentHandler)
Deprecated.Stream this buffer into the provided content handler.java.lang.String
toString()
Deprecated.
-
-
-
Constructor Detail
-
SAXBuffer
public SAXBuffer()
Deprecated.Creates empty SaxBuffer
-
SAXBuffer
public SAXBuffer(java.util.List<org.apache.cocoon.xml.sax.SAXBuffer.SaxBit> bits)
Deprecated.Creates SaxBuffer based on the provided bits list.
-
SAXBuffer
public SAXBuffer(SAXBuffer saxBuffer)
Deprecated.Creates copy of another SaxBuffer
-
-
Method Detail
-
skippedEntity
public void skippedEntity(java.lang.String name) throws org.xml.sax.SAXException
Deprecated.- Specified by:
skippedEntity
in interfaceorg.xml.sax.ContentHandler
- Throws:
org.xml.sax.SAXException
-
setDocumentLocator
public void setDocumentLocator(org.xml.sax.Locator locator)
Deprecated.- Specified by:
setDocumentLocator
in interfaceorg.xml.sax.ContentHandler
-
ignorableWhitespace
public void ignorableWhitespace(char[] ch, int start, int length) throws org.xml.sax.SAXException
Deprecated.- Specified by:
ignorableWhitespace
in interfaceorg.xml.sax.ContentHandler
- Throws:
org.xml.sax.SAXException
-
processingInstruction
public void processingInstruction(java.lang.String target, java.lang.String data) throws org.xml.sax.SAXException
Deprecated.- Specified by:
processingInstruction
in interfaceorg.xml.sax.ContentHandler
- Throws:
org.xml.sax.SAXException
-
startDocument
public void startDocument() throws org.xml.sax.SAXException
Deprecated.- Specified by:
startDocument
in interfaceorg.xml.sax.ContentHandler
- Throws:
org.xml.sax.SAXException
-
startElement
public void startElement(java.lang.String namespaceURI, java.lang.String localName, java.lang.String qName, org.xml.sax.Attributes atts) throws org.xml.sax.SAXException
Deprecated.- Specified by:
startElement
in interfaceorg.xml.sax.ContentHandler
- Throws:
org.xml.sax.SAXException
-
endPrefixMapping
public void endPrefixMapping(java.lang.String prefix) throws org.xml.sax.SAXException
Deprecated.- Specified by:
endPrefixMapping
in interfaceorg.xml.sax.ContentHandler
- Throws:
org.xml.sax.SAXException
-
characters
public void characters(char[] ch, int start, int length) throws org.xml.sax.SAXException
Deprecated.- Specified by:
characters
in interfaceorg.xml.sax.ContentHandler
- Throws:
org.xml.sax.SAXException
-
endElement
public void endElement(java.lang.String namespaceURI, java.lang.String localName, java.lang.String qName) throws org.xml.sax.SAXException
Deprecated.- Specified by:
endElement
in interfaceorg.xml.sax.ContentHandler
- Throws:
org.xml.sax.SAXException
-
endDocument
public void endDocument() throws org.xml.sax.SAXException
Deprecated.- Specified by:
endDocument
in interfaceorg.xml.sax.ContentHandler
- Throws:
org.xml.sax.SAXException
-
startPrefixMapping
public void startPrefixMapping(java.lang.String prefix, java.lang.String uri) throws org.xml.sax.SAXException
Deprecated.- Specified by:
startPrefixMapping
in interfaceorg.xml.sax.ContentHandler
- Throws:
org.xml.sax.SAXException
-
endCDATA
public void endCDATA() throws org.xml.sax.SAXException
Deprecated.- Specified by:
endCDATA
in interfaceorg.xml.sax.ext.LexicalHandler
- Throws:
org.xml.sax.SAXException
-
comment
public void comment(char[] ch, int start, int length) throws org.xml.sax.SAXException
Deprecated.- Specified by:
comment
in interfaceorg.xml.sax.ext.LexicalHandler
- Throws:
org.xml.sax.SAXException
-
startEntity
public void startEntity(java.lang.String name) throws org.xml.sax.SAXException
Deprecated.- Specified by:
startEntity
in interfaceorg.xml.sax.ext.LexicalHandler
- Throws:
org.xml.sax.SAXException
-
endDTD
public void endDTD() throws org.xml.sax.SAXException
Deprecated.- Specified by:
endDTD
in interfaceorg.xml.sax.ext.LexicalHandler
- Throws:
org.xml.sax.SAXException
-
startDTD
public void startDTD(java.lang.String name, java.lang.String publicId, java.lang.String systemId) throws org.xml.sax.SAXException
Deprecated.- Specified by:
startDTD
in interfaceorg.xml.sax.ext.LexicalHandler
- Throws:
org.xml.sax.SAXException
-
startCDATA
public void startCDATA() throws org.xml.sax.SAXException
Deprecated.- Specified by:
startCDATA
in interfaceorg.xml.sax.ext.LexicalHandler
- Throws:
org.xml.sax.SAXException
-
endEntity
public void endEntity(java.lang.String name) throws org.xml.sax.SAXException
Deprecated.- Specified by:
endEntity
in interfaceorg.xml.sax.ext.LexicalHandler
- Throws:
org.xml.sax.SAXException
-
saxBuffer
public void saxBuffer(SAXBuffer xml)
Deprecated.Add a another buffer
-
isEmpty
public boolean isEmpty()
Deprecated.- Returns:
- true if buffer is empty
-
getBits
public java.util.List<org.apache.cocoon.xml.sax.SAXBuffer.SaxBit> getBits()
Deprecated.- Returns:
- unmodifiable list of SAX bits
-
toSAX
public void toSAX(org.xml.sax.ContentHandler contentHandler) throws org.xml.sax.SAXException
Deprecated.Stream this buffer into the provided content handler. If contentHandler object implements LexicalHandler, it will get lexical events as well.- Throws:
org.xml.sax.SAXException
-
toString
public java.lang.String toString()
Deprecated.- Overrides:
toString
in classjava.lang.Object
- Returns:
- String value of the buffer
-
recycle
public void recycle()
Deprecated.Clear this buffer
-
dump
public void dump(java.io.Writer writer) throws java.io.IOException
Deprecated.Dump buffer contents into the provided writer.- Throws:
java.io.IOException
-
-