Package org.apache.coyote.http11.filters
Class ChunkedInputFilter
- java.lang.Object
-
- org.apache.coyote.http11.filters.ChunkedInputFilter
-
- All Implemented Interfaces:
InputFilter,InputBuffer,HttpHeaderParser.HeaderDataSource,ApplicationBufferHandler
public class ChunkedInputFilter extends java.lang.Object implements InputFilter, ApplicationBufferHandler, HttpHeaderParser.HeaderDataSource
Chunked input filter. Parses chunked data according to http://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html#sec3.6.1
-
-
Field Summary
Fields Modifier and Type Field Description protected InputBufferbufferNext buffer in the pipeline.protected static ByteChunkENCODINGprotected static java.lang.StringENCODING_NAMEprotected java.nio.ByteBufferreadChunkByte chunk used to read bytes.protected intremainingNumber of bytes remaining in the current chunk.protected java.nio.ByteBuffertrailingHeadersBuffer used to store trailing headers.-
Fields inherited from interface org.apache.tomcat.util.net.ApplicationBufferHandler
EMPTY, EMPTY_BUFFER
-
-
Constructor Summary
Constructors Constructor Description ChunkedInputFilter(Request request, int maxTrailerSize, java.util.Set<java.lang.String> allowedTrailerHeaders, int maxExtensionSize, int maxSwallowSize)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intavailable()Obtain an estimate of the number of bytes that can be read without blocking.intdoRead(ApplicationBufferHandler handler)Read from the input stream into the ByteBuffer provided by the ApplicationBufferHandler.longend()End the current request.voidexpand(int size)Expand the byte buffer to at least the given size.booleanfillHeaderBuffer()Read more data into the header buffer.java.nio.ByteBuffergetByteBuffer()ByteChunkgetEncodingName()Get the name of the encoding handled by this filter.java.nio.ByteBuffergetHeaderByteBuffer()Obtain a reference to the buffer containing the header data.booleanisFinished()Has the request body been read fully?protected intreadBytes()Read bytes from the previous buffer.voidrecycle()Make the filter ready to process the next request.voidsetBuffer(InputBuffer buffer)Set the next buffer in the filter pipeline.voidsetByteBuffer(java.nio.ByteBuffer buffer)Set the byte buffer.voidsetRequest(Request request)Some filters need additional parameters from the request.
-
-
-
Field Detail
-
ENCODING_NAME
protected static final java.lang.String ENCODING_NAME
- See Also:
- Constant Field Values
-
ENCODING
protected static final ByteChunk ENCODING
-
buffer
protected InputBuffer buffer
Next buffer in the pipeline.
-
remaining
protected int remaining
Number of bytes remaining in the current chunk.
-
readChunk
protected java.nio.ByteBuffer readChunk
Byte chunk used to read bytes.
-
trailingHeaders
protected final java.nio.ByteBuffer trailingHeaders
Buffer used to store trailing headers. Is normally in read mode.
-
-
Constructor Detail
-
ChunkedInputFilter
public ChunkedInputFilter(Request request, int maxTrailerSize, java.util.Set<java.lang.String> allowedTrailerHeaders, int maxExtensionSize, int maxSwallowSize)
-
-
Method Detail
-
doRead
public int doRead(ApplicationBufferHandler handler) throws java.io.IOException
Description copied from interface:InputBufferRead from the input stream into the ByteBuffer provided by the ApplicationBufferHandler. IMPORTANT: the current model assumes that the protocol will 'own' the ByteBuffer and return a pointer to it.- Specified by:
doReadin interfaceInputBuffer- Parameters:
handler- ApplicationBufferHandler that provides the buffer to read data into.- Returns:
- The number of bytes that have been added to the buffer or -1 for end of stream
- Throws:
java.io.IOException- If an I/O error occurs reading from the input stream
-
setRequest
public void setRequest(Request request)
Description copied from interface:InputFilterSome filters need additional parameters from the request.- Specified by:
setRequestin interfaceInputFilter- Parameters:
request- The request to be associated with this filter
-
end
public long end() throws java.io.IOExceptionDescription copied from interface:InputFilterEnd the current request.- Specified by:
endin interfaceInputFilter- Returns:
- 0 is the expected return value. A positive value indicates that too many bytes were read. This method is allowed to use buffer.doRead to consume extra bytes. The result of this method can't be negative (if an error happens, an IOException should be thrown instead).
- Throws:
java.io.IOException- If an error happens
-
available
public int available()
Description copied from interface:InputBufferObtain an estimate of the number of bytes that can be read without blocking. Typically, this will be the number of available bytes known to be buffered.- Specified by:
availablein interfaceInputBuffer- Returns:
- The number of bytes that can be read without blocking
-
setBuffer
public void setBuffer(InputBuffer buffer)
Description copied from interface:InputFilterSet the next buffer in the filter pipeline.- Specified by:
setBufferin interfaceInputFilter- Parameters:
buffer- The next buffer
-
recycle
public void recycle()
Description copied from interface:InputFilterMake the filter ready to process the next request.- Specified by:
recyclein interfaceInputFilter
-
getEncodingName
public ByteChunk getEncodingName()
Description copied from interface:InputFilterGet the name of the encoding handled by this filter.- Specified by:
getEncodingNamein interfaceInputFilter- Returns:
- The encoding name as a byte chunk to facilitate comparison with the value read from the HTTP headers which will also be a ByteChunk
-
isFinished
public boolean isFinished()
Description copied from interface:InputFilterHas the request body been read fully?- Specified by:
isFinishedin interfaceInputFilter- Returns:
trueif the request body has been fully read, otherwisefalse
-
readBytes
protected int readBytes() throws java.io.IOExceptionRead bytes from the previous buffer.- Returns:
- The byte count which has been read
- Throws:
java.io.IOException- Read error
-
fillHeaderBuffer
public boolean fillHeaderBuffer() throws java.io.IOExceptionDescription copied from interface:HttpHeaderParser.HeaderDataSourceRead more data into the header buffer. The implementation is expected to determine if blocking or not blocking IO should be used.- Specified by:
fillHeaderBufferin interfaceHttpHeaderParser.HeaderDataSource- Returns:
trueif more data was added to the buffer, otherwisefalse- Throws:
java.io.IOException- If an I/O error occurred while obtaining more header data
-
setByteBuffer
public void setByteBuffer(java.nio.ByteBuffer buffer)
Description copied from interface:ApplicationBufferHandlerSet the byte buffer.- Specified by:
setByteBufferin interfaceApplicationBufferHandler- Parameters:
buffer- the byte buffer
-
getByteBuffer
public java.nio.ByteBuffer getByteBuffer()
- Specified by:
getByteBufferin interfaceApplicationBufferHandler- Returns:
- the byte buffer
-
getHeaderByteBuffer
public java.nio.ByteBuffer getHeaderByteBuffer()
Description copied from interface:HttpHeaderParser.HeaderDataSourceObtain a reference to the buffer containing the header data.- Specified by:
getHeaderByteBufferin interfaceHttpHeaderParser.HeaderDataSource- Returns:
- The buffer containing the header data
-
expand
public void expand(int size)
Description copied from interface:ApplicationBufferHandlerExpand the byte buffer to at least the given size. Some implementations may not implement this.- Specified by:
expandin interfaceApplicationBufferHandler- Parameters:
size- the desired size
-
-