public abstract class RebufferingInputStream extends java.io.InputStream implements DataInputPlus, java.io.Closeable
DataInputPlus.DataInputStreamPlus
Modifier and Type | Field and Description |
---|---|
protected java.nio.ByteBuffer |
buffer |
Modifier | Constructor and Description |
---|---|
protected |
RebufferingInputStream(java.nio.ByteBuffer buffer) |
Modifier and Type | Method and Description |
---|---|
boolean |
markSupported() |
int |
read() |
int |
read(byte[] b,
int off,
int len) |
boolean |
readBoolean() |
byte |
readByte() |
char |
readChar() |
double |
readDouble() |
float |
readFloat() |
void |
readFully(byte[] b) |
void |
readFully(byte[] b,
int off,
int len) |
int |
readInt() |
java.lang.String |
readLine() |
long |
readLong() |
protected long |
readPrimitiveSlowly(int bytes) |
short |
readShort() |
int |
readUnsignedByte() |
int |
readUnsignedShort() |
long |
readUnsignedVInt()
Think hard before opting for an unsigned encoding.
|
java.lang.String |
readUTF() |
long |
readVInt() |
protected abstract void |
reBuffer()
Implementations must implement this method to refill the buffer.
|
void |
reset() |
int |
skipBytes(int n)
Always skips the requested number of bytes, unless EOF is reached
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
skipBytesFully
protected RebufferingInputStream(java.nio.ByteBuffer buffer)
protected abstract void reBuffer() throws java.io.IOException
java.io.IOException
public void readFully(byte[] b) throws java.io.IOException
readFully
in interface java.io.DataInput
java.io.IOException
public void readFully(byte[] b, int off, int len) throws java.io.IOException
readFully
in interface java.io.DataInput
java.io.IOException
public int read(byte[] b, int off, int len) throws java.io.IOException
read
in class java.io.InputStream
java.io.IOException
@DontInline protected long readPrimitiveSlowly(int bytes) throws java.io.IOException
java.io.IOException
public int skipBytes(int n) throws java.io.IOException
DataInputPlus
skipBytes
in interface java.io.DataInput
skipBytes
in interface DataInputPlus
n
- number of bytes to skipjava.io.IOException
public boolean readBoolean() throws java.io.IOException
readBoolean
in interface java.io.DataInput
java.io.IOException
public byte readByte() throws java.io.IOException
readByte
in interface java.io.DataInput
java.io.IOException
public int readUnsignedByte() throws java.io.IOException
readUnsignedByte
in interface java.io.DataInput
java.io.IOException
public short readShort() throws java.io.IOException
readShort
in interface java.io.DataInput
java.io.IOException
public int readUnsignedShort() throws java.io.IOException
readUnsignedShort
in interface java.io.DataInput
java.io.IOException
public char readChar() throws java.io.IOException
readChar
in interface java.io.DataInput
java.io.IOException
public int readInt() throws java.io.IOException
readInt
in interface java.io.DataInput
java.io.IOException
public long readLong() throws java.io.IOException
readLong
in interface java.io.DataInput
java.io.IOException
public long readVInt() throws java.io.IOException
readVInt
in interface DataInputPlus
java.io.IOException
public long readUnsignedVInt() throws java.io.IOException
DataInputPlus
readUnsignedVInt
in interface DataInputPlus
java.io.IOException
public float readFloat() throws java.io.IOException
readFloat
in interface java.io.DataInput
java.io.IOException
public double readDouble() throws java.io.IOException
readDouble
in interface java.io.DataInput
java.io.IOException
public java.lang.String readLine() throws java.io.IOException
readLine
in interface java.io.DataInput
java.io.IOException
public java.lang.String readUTF() throws java.io.IOException
readUTF
in interface java.io.DataInput
java.io.IOException
public int read() throws java.io.IOException
read
in class java.io.InputStream
java.io.IOException
public void reset() throws java.io.IOException
reset
in class java.io.InputStream
java.io.IOException
public boolean markSupported()
markSupported
in class java.io.InputStream
Copyright © 2017 The Apache Software Foundation