public class InputBuffer extends Reader implements ByteChunk.ByteInputChannel, CharChunk.CharInputChannel, CharChunk.CharOutputChannel
Modifier and Type | Field and Description |
---|---|
int |
BYTE_STATE |
int |
CHAR_STATE |
protected B2CConverter |
conv
Current byte to char converter.
|
static int |
DEFAULT_BUFFER_SIZE |
static String |
DEFAULT_ENCODING |
int |
INITIAL_STATE |
protected static StringManager |
sm
The string manager for this package.
|
Constructor and Description |
---|
InputBuffer()
Default constructor.
|
InputBuffer(int size)
Alternate constructor which allows specifying the initial buffer size.
|
Modifier and Type | Method and Description |
---|---|
int |
available() |
void |
checkConverter() |
void |
clearEncoders()
Clear cached encoders (to save memory for Comet requests).
|
void |
close()
Close the input buffer.
|
Request |
getRequest()
Deprecated.
|
void |
mark(int readAheadLimit) |
boolean |
markSupported() |
int |
read() |
int |
read(byte[] b,
int off,
int len) |
int |
read(char[] cbuf) |
int |
read(char[] cbuf,
int off,
int len) |
int |
readByte() |
boolean |
ready() |
int |
realReadBytes(byte[] cbuf,
int off,
int len)
Reads new bytes in the byte chunk.
|
int |
realReadChars(char[] cbuf,
int off,
int len)
Read new characters.
|
void |
realWriteChars(char[] c,
int off,
int len)
Since the converter will use append, it is possible to get chars to
be removed from the buffer for "writing".
|
void |
recycle()
Recycle the output buffer.
|
void |
reset() |
protected void |
setConverter() |
void |
setEncoding(String s) |
void |
setRequest(Request coyoteRequest)
Associated Coyote request.
|
long |
skip(long n) |
protected static final StringManager sm
public static final String DEFAULT_ENCODING
public static final int DEFAULT_BUFFER_SIZE
public final int INITIAL_STATE
public final int CHAR_STATE
public final int BYTE_STATE
protected B2CConverter conv
public InputBuffer()
public InputBuffer(int size)
size
- Buffer size to usepublic void setRequest(Request coyoteRequest)
coyoteRequest
- Associated Coyote request@Deprecated public Request getRequest()
public void recycle()
public void clearEncoders()
public void close() throws IOException
close
in interface Closeable
close
in interface AutoCloseable
close
in class Reader
IOException
- An underlying IOException occurredpublic int available()
public int realReadBytes(byte[] cbuf, int off, int len) throws IOException
realReadBytes
in interface ByteChunk.ByteInputChannel
cbuf
- Byte buffer to be written to the responseoff
- Offsetlen
- LengthIOException
- An underlying IOException occurredpublic int readByte() throws IOException
IOException
public int read(byte[] b, int off, int len) throws IOException
IOException
public void realWriteChars(char[] c, int off, int len) throws IOException
realWriteChars
in interface CharChunk.CharOutputChannel
c
- characters that will be writtenoff
- offset in the characters arraylen
- length that will be writtenIOException
- If an I/O occurs while writing the characterspublic void setEncoding(String s)
public int realReadChars(char[] cbuf, int off, int len) throws IOException
CharChunk.CharInputChannel
realReadChars
in interface CharChunk.CharInputChannel
cbuf
- Buffer to read the characters intooff
- Offset for target bufferlen
- length of data to readIOException
- If an I/O error occurs during readingpublic int read() throws IOException
read
in class Reader
IOException
public int read(char[] cbuf) throws IOException
read
in class Reader
IOException
public int read(char[] cbuf, int off, int len) throws IOException
read
in class Reader
IOException
public long skip(long n) throws IOException
skip
in class Reader
IOException
public boolean ready() throws IOException
ready
in class Reader
IOException
public boolean markSupported()
markSupported
in class Reader
public void mark(int readAheadLimit) throws IOException
mark
in class Reader
IOException
public void reset() throws IOException
reset
in class Reader
IOException
public void checkConverter() throws IOException
IOException
protected void setConverter() throws IOException
IOException
Copyright © 2000-2021 Apache Software Foundation. All Rights Reserved.