|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.apache.http.nio.util.ExpandableBuffer
org.apache.http.impl.nio.reactor.SessionInputBufferImpl
public class SessionInputBufferImpl
Default implementation of SessionInputBuffer based on
the ExpandableBuffer class.
| Field Summary |
|---|
| Fields inherited from class org.apache.http.nio.util.ExpandableBuffer |
|---|
buffer, INPUT_MODE, OUTPUT_MODE |
| Constructor Summary | |
|---|---|
SessionInputBufferImpl(int buffersize)
|
|
SessionInputBufferImpl(int buffersize,
int lineBuffersize)
|
|
SessionInputBufferImpl(int buffersize,
int lineBuffersize,
ByteBufferAllocator allocator,
HttpParams params)
Deprecated. (4.3) use SessionInputBufferImpl(int, int, CharsetDecoder,
ByteBufferAllocator) |
|
SessionInputBufferImpl(int buffersize,
int lineBuffersize,
Charset charset)
|
|
SessionInputBufferImpl(int buffersize,
int lineBuffersize,
CharsetDecoder chardecoder,
ByteBufferAllocator allocator)
Creates SessionInputBufferImpl instance. |
|
SessionInputBufferImpl(int buffersize,
int linebuffersize,
HttpParams params)
Deprecated. (4.3) use SessionInputBufferImpl(int, int, Charset) |
|
SessionInputBufferImpl(int buffersize,
int lineBuffersize,
MessageConstraints constraints,
Charset charset)
|
|
SessionInputBufferImpl(int buffersize,
int lineBuffersize,
MessageConstraints constraints,
CharsetDecoder chardecoder,
ByteBufferAllocator allocator)
Creates SessionInputBufferImpl instance. |
|
| Method Summary | |
|---|---|
int |
fill(ReadableByteChannel channel)
Makes an attempt to fill the buffer with data from the given ReadableByteChannel. |
int |
read()
Reads one byte from the buffer. |
int |
read(ByteBuffer dst)
Reads a sequence of bytes from this buffer into the destination buffer. |
int |
read(ByteBuffer dst,
int maxLen)
Reads a sequence of bytes from this buffer into the destination buffer, up to the given maximum limit. |
int |
read(WritableByteChannel dst)
Reads a sequence of bytes from this buffer into the destination channel. |
int |
read(WritableByteChannel dst,
int maxLen)
Reads a sequence of bytes from this buffer into the destination channel, up to the given maximum limit. |
String |
readLine(boolean endOfStream)
Attempts to transfer a complete line of characters up to a line delimiter from this buffer to a newly created string. |
boolean |
readLine(CharArrayBuffer linebuffer,
boolean endOfStream)
Attempts to transfer a complete line of characters up to a line delimiter from this buffer to the destination buffer. |
| Methods inherited from class org.apache.http.nio.util.ExpandableBuffer |
|---|
available, capacity, clear, ensureCapacity, expand, getMode, hasData, length, setInputMode, setOutputMode, toString |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Methods inherited from interface org.apache.http.nio.reactor.SessionInputBuffer |
|---|
hasData, length |
| Constructor Detail |
|---|
public SessionInputBufferImpl(int buffersize,
int lineBuffersize,
MessageConstraints constraints,
CharsetDecoder chardecoder,
ByteBufferAllocator allocator)
buffersize - input buffer sizelineBuffersize - buffer size for line operations. Has effect only if
chardecoder is not null.chardecoder - chardecoder to be used for decoding HTTP protocol elements.
If null simple type cast will be used for byte to char conversion.constraints - Message constraints. If null
MessageConstraints.DEFAULT will be used.allocator - memory allocator.
If null HeapByteBufferAllocator.INSTANCE will be used.
public SessionInputBufferImpl(int buffersize,
int lineBuffersize,
CharsetDecoder chardecoder,
ByteBufferAllocator allocator)
buffersize - input buffer sizelineBuffersize - buffer size for line operations. Has effect only if
chardecoder is not null.chardecoder - chardecoder to be used for decoding HTTP protocol elements.
If null simple type cast will be used for byte to char conversion.allocator - memory allocator.
If null HeapByteBufferAllocator.INSTANCE will be used.
@Deprecated
public SessionInputBufferImpl(int buffersize,
int lineBuffersize,
ByteBufferAllocator allocator,
HttpParams params)
SessionInputBufferImpl(int, int, CharsetDecoder,
ByteBufferAllocator)
@Deprecated
public SessionInputBufferImpl(int buffersize,
int linebuffersize,
HttpParams params)
SessionInputBufferImpl(int, int, Charset)
public SessionInputBufferImpl(int buffersize,
int lineBuffersize,
Charset charset)
public SessionInputBufferImpl(int buffersize,
int lineBuffersize,
MessageConstraints constraints,
Charset charset)
public SessionInputBufferImpl(int buffersize,
int lineBuffersize)
public SessionInputBufferImpl(int buffersize)
| Method Detail |
|---|
public int fill(ReadableByteChannel channel)
throws IOException
SessionInputBufferReadableByteChannel.
fill in interface SessionInputBufferchannel - the source channel
-1 if the
channel has reached end-of-stream.
IOException - in case of an I/O error.public int read()
SessionInputBuffer
read in interface SessionInputBuffer
public int read(ByteBuffer dst,
int maxLen)
SessionInputBuffermaxLen value.
read in interface SessionInputBufferdst - the destination buffer.maxLen - the maximum number of bytes to be read.
public int read(ByteBuffer dst)
SessionInputBuffer
read in interface SessionInputBufferdst - the destination buffer.
public int read(WritableByteChannel dst,
int maxLen)
throws IOException
SessionInputBuffermaxLen value.
read in interface SessionInputBufferdst - the destination channel.maxLen - the maximum number of bytes to be read.
IOException - in case of an I/O error.
public int read(WritableByteChannel dst)
throws IOException
SessionInputBuffer
read in interface SessionInputBufferdst - the destination channel.
IOException - in case of an I/O error.
public boolean readLine(CharArrayBuffer linebuffer,
boolean endOfStream)
throws CharacterCodingException
SessionInputBuffertrue. The line
delimiter itself is discarded. If a complete line is not available in
the buffer, this method returns false without transferring
anything to the destination buffer. If endOfStream parameter
is set to true this method assumes the end of stream has
been reached and the content currently stored in the buffer should be
treated as a complete line.
The choice of a char encoding and line delimiter sequence is up to the specific implementations of this interface.
readLine in interface SessionInputBufferlinebuffer - the destination buffer.endOfStream - end of stream flag
true if a sequence of chars representing a complete
line has been transferred to the destination buffer, false
otherwise.
CharacterCodingException - in case a character encoding or decoding
error occurs.
public String readLine(boolean endOfStream)
throws CharacterCodingException
SessionInputBuffernull. If endOfStream parameter
is set to true this method assumes the end of stream has
been reached and the content currently stored in the buffer should be
treated as a complete line.
The choice of a char encoding and line delimiter sequence is up to the specific implementations of this interface.
readLine in interface SessionInputBufferendOfStream - end of stream flag
null otherwise.
CharacterCodingException - in case a character encoding or decoding
error occurs.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||