Class PartialResponseWriterImpl
- All Implemented Interfaces:
- FacesWrapper<ResponseWriter>,- Closeable,- Flushable,- Appendable,- AutoCloseable
Double buffering partial response writer to take care if embedded CDATA blocks in update delete etc...
According to the spec 13.4.4.1 Writing The Partial Response implementations have to take care to handle nested cdata blocks properly
This means we cannot allow nested CDATA according to the xml spec http://www.w3.org/TR/REC-xml/#sec-cdata-sect everything within a CDATA block is unparsed except for ]]>
Now we have following problem, that CDATA inserts can happen everywhere not only within the CDATA instructions.
What we have to do now is to double buffer CDATA blocks until their end and also!!! parse their content for CDATA embedding and replace it with an escaped end sequence.
Now parsing CDATA embedding is a little bit problematic in case of PPR because it can happen that someone simply adds a CDATA in a javascript string or somewhere else. Because he/she is not aware that we wrap the entire content into CDATA. Simply encoding and decoding of the CDATA is similarly problematic because the browser then chokes on embedded //<![CDATA[ //]]> sections
What we do for now is to simply remove //<![CDATA[ and //]]> and replace all other pending cdatas with their cdata escapes ]]> becomes <![CDATA[]]]]><![CDATA[>
If this causes problems in corner cases we also can add a second encoding step in case of the cdata Javascript comment removal is not enough to cover all corner cases.
For now I will only implement this in the impl, due to the spec stating that implementations are responsible of the correct CDATA handling!
- Version:
- $Revision$ $Date$
- Author:
- Werner Punz (latest modification by $Author$)
- 
Field SummaryFields inherited from class jakarta.faces.context.PartialResponseWriterRENDER_ALL_MARKER, VIEW_STATE_MARKER
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionappend(char c) append(CharSequence csq) append(CharSequence csq, int start, int end) cloneWithWriter(Writer writer) voidclose()voidendCDATA()voidendElement(String name) voidendError()voidendEval()voidvoidvoidvoidflush()voidvoidstartElement(String name, UIComponent component) voidwrite(char[] cbuf) voidwrite(char[] cbuf, int off, int len) voidwrite(int c) voidvoidvoidwriteAttribute(String name, Object value, String property) voidwriteComment(Object comment) voidwriteText(char[] text, int off, int len) voidwriteText(Object object, UIComponent component, String string) voidvoidwriteURIAttribute(String name, Object value, String property) Methods inherited from class jakarta.faces.context.PartialResponseWriterdelete, endDocument, redirect, startDocument, startError, startEval, startExtension, startInsertAfter, startInsertBefore, startUpdate, updateAttributesMethods inherited from class jakarta.faces.context.ResponseWriterWrappergetCharacterEncoding, getContentType, getWrapped, writeDoctype, writePreambleMethods inherited from class java.io.WriternullWriter
- 
Constructor Details- 
PartialResponseWriterImpl
 
- 
- 
Method Details- 
startCDATA- Overrides:
- startCDATAin class- ResponseWriterWrapper
- Throws:
- IOException
 
- 
endCDATA- Overrides:
- endCDATAin class- ResponseWriterWrapper
- Throws:
- IOException
 
- 
endInsert- Overrides:
- endInsertin class- PartialResponseWriter
- Throws:
- IOException
 
- 
endUpdate- Overrides:
- endUpdatein class- PartialResponseWriter
- Throws:
- IOException
 
- 
endExtension- Overrides:
- endExtensionin class- PartialResponseWriter
- Throws:
- IOException
 
- 
endEval- Overrides:
- endEvalin class- PartialResponseWriter
- Throws:
- IOException
 
- 
endError- Overrides:
- endErrorin class- PartialResponseWriter
- Throws:
- IOException
 
- 
endElement- Overrides:
- endElementin class- ResponseWriterWrapper
- Throws:
- IOException
 
- 
writeComment- Overrides:
- writeCommentin class- ResponseWriterWrapper
- Throws:
- IOException
 
- 
startElement- Overrides:
- startElementin class- ResponseWriterWrapper
- Throws:
- IOException
 
- 
writeText- Overrides:
- writeTextin class- ResponseWriterWrapper
- Throws:
- IOException
 
- 
writeText- Overrides:
- writeTextin class- ResponseWriterWrapper
- Throws:
- IOException
 
- 
write- Overrides:
- writein class- ResponseWriterWrapper
- Throws:
- IOException
 
- 
cloneWithWriter- Overrides:
- cloneWithWriterin class- ResponseWriterWrapper
 
- 
writeURIAttribute- Overrides:
- writeURIAttributein class- ResponseWriterWrapper
- Throws:
- IOException
 
- 
close- Specified by:
- closein interface- AutoCloseable
- Specified by:
- closein interface- Closeable
- Overrides:
- closein class- ResponseWriterWrapper
- Throws:
- IOException
 
- 
flush- Specified by:
- flushin interface- Flushable
- Overrides:
- flushin class- ResponseWriterWrapper
- Throws:
- IOException
 
- 
writeAttribute- Overrides:
- writeAttributein class- ResponseWriterWrapper
- Throws:
- IOException
 
- 
writeText- Overrides:
- writeTextin class- ResponseWriterWrapper
- Throws:
- IOException
 
- 
append- Specified by:
- appendin interface- Appendable
- Overrides:
- appendin class- Writer
- Throws:
- IOException
 
- 
append- Specified by:
- appendin interface- Appendable
- Overrides:
- appendin class- Writer
- Throws:
- IOException
 
- 
append- Specified by:
- appendin interface- Appendable
- Overrides:
- appendin class- Writer
- Throws:
- IOException
 
- 
write- Overrides:
- writein class- Writer
- Throws:
- IOException
 
- 
write- Overrides:
- writein class- Writer
- Throws:
- IOException
 
- 
write- Overrides:
- writein class- Writer
- Throws:
- IOException
 
- 
write- Overrides:
- writein class- Writer
- Throws:
- IOException
 
 
-