public class CompactObjectInput extends java.lang.Object implements java.io.Closeable, java.io.ObjectInput, ObjectDataInputI, DigestingBLOBInputI, SecureObjectInputI, SidebandHandlerI
Constructor and Description |
---|
CompactObjectInput(java.io.InputStream _in)
Creates a CompactObjectInput that reads from the specified DataInput.
|
CompactObjectInput(java.io.InputStream _in,
SchemaI schema) |
CompactObjectInput(java.io.InputStream _in,
SchemaI schema,
java.util.function.Function replaceBoAfterRead) |
CompactObjectInput(java.io.InputStream _in,
SchemaI schema,
java.util.function.Function replaceBoAfterRead,
SidebandHandlerI _sidebandHandler) |
Modifier and Type | Method and Description |
---|---|
byte[] |
_readBLOB(byte[] buffer,
int off,
int len) |
int |
available()
Returns the number of bytes that can be read without blocking.
|
void |
close()
Closes this CompactObjectInput and releases any system resources associated with it.
|
void |
handleSideband() |
int |
read()
Reads a byte of data.
|
int |
read(byte[] b)
Reads into an array of bytes.
|
int |
read(byte[] b,
int off,
int len)
Reads into an array of bytes.
|
java.math.BigDecimal |
readBigDecimal()
Reads a BigDecimal object from our DataInput.
|
byte[] |
readBLOB()
Reads a byte-array from our DataInput and returns it.
|
int |
readBLOB(byte[] buffer,
int off,
int len)
Reads a chunk of $size bytes into the given byte array $buffer, starting at offset $off.
|
int |
readBLOB(java.io.DataOutput out)
Reads bytes from our DataInput and writes them to the passed DataOutput os.
|
int |
readBLOB(java.io.DataOutput out,
java.security.MessageDigest digester) |
int |
readBLOB(java.io.OutputStream out)
Reads bytes from our DataInput and writes them to the passed OutputStream os.
|
int |
readBLOB(java.io.OutputStream out,
java.security.MessageDigest digester) |
boolean |
readBoolean()
Reads one input byte and returns true if that byte is nonzero, false if that byte is zero.
|
java.lang.Boolean |
readBooleanObject()
Reads a Boolean object from our DataInput.
|
byte |
readByte()
Reads and returns one input byte.
|
java.lang.Byte |
readByteObject()
Reads a Byte object from our DataInput.
|
char |
readChar()
Reads two input bytes and returns a char value.
|
java.util.Date |
readDate()
Reads a Date from our DataInput.
|
double |
readDouble()
Reads eight input bytes and returns a double value.
|
java.lang.Double |
readDoubleObject()
Reads a Double object from our DataInput.
|
float |
readFloat()
Reads four input bytes and returns a float value.
|
java.lang.Float |
readFloatObject()
Reads a Float object from our DataInput.
|
void |
readFully(byte[] b)
Reads some bytes from our DataInput and stores them into the buffer array b.
|
void |
readFully(byte[] b,
int off,
int len)
Reads len bytes our DataInput.
|
int |
readInt()
Reads four input bytes and returns an int value.
|
int[] |
readIntegerArray()
Reads an int array from our DataInput.
|
java.lang.Integer |
readIntegerObject()
Reads a Integer object from our DataInput.
|
java.lang.String |
readLine()
Reads the next line of text from our DataInput.
|
long |
readLong()
Reads eight input bytes and returns a long value.
|
long[] |
readLongArray()
Reads a long array from our DataInput.
|
java.lang.Long |
readLongObject()
Reads a Long object from our DataInput.
|
java.lang.Object |
readObject()
Read and return an object.
|
java.lang.Object |
readObject(java.lang.Class[] expectedClasses)
Reads an Object from our DataInput, expecting an object of one of the given classes.
|
java.lang.Object[] |
readObjectArray()
Reads an Object array from our DataInput.
|
short |
readShort()
Reads two input bytes and returns a short value.
|
java.lang.Short |
readShortObject()
Reads a Short object from our DataInput.
|
java.lang.String |
readString()
Reads a UTF-8 string from our DataInput.
|
java.lang.String[] |
readStringArray()
Reads a String array from our DataInput.
|
int |
readUnsignedByte()
Reads one input byte, zero-extends it to type int, and returns the result, which is therefore in the range 0 through 255.
|
int |
readUnsignedShort()
Reads two input bytes and returns an int value in the range 0 through 65535.
|
java.lang.String |
readUTF()
Reads in a string that has been encoded using a modified UTF-8 format.
|
CompactObjectInput |
setBlocksize(int b)
Sets the blocksize for data-transfer to the passed value in bytes.
|
void |
setObjectTransferHandler(ObjectTransferHandlerI _objectTransferHandler)
Sets the ObjectTransferHandlerI for this class.
|
void |
setSidebandHandler(SidebandHandlerI sbh)
Sets the SidebandHandlerI for this class.
|
long |
skip(long n)
Skips n bytes of input.
|
int |
skipBytes(int n)
Makes an attempt to skip over n bytes of data from our DataInput, discarding the skipped bytes.
|
public CompactObjectInput(java.io.InputStream _in)
public CompactObjectInput(java.io.InputStream _in, SchemaI schema)
public CompactObjectInput(java.io.InputStream _in, SchemaI schema, java.util.function.Function replaceBoAfterRead)
public CompactObjectInput(java.io.InputStream _in, SchemaI schema, java.util.function.Function replaceBoAfterRead, SidebandHandlerI _sidebandHandler)
public CompactObjectInput setBlocksize(int b)
public void setSidebandHandler(SidebandHandlerI sbh)
public void setObjectTransferHandler(ObjectTransferHandlerI _objectTransferHandler)
public void handleSideband() throws java.io.IOException
handleSideband
in interface SidebandHandlerI
java.io.IOException
public void close() throws java.io.IOException
close
in interface java.io.Closeable
close
in interface java.io.ObjectInput
close
in interface java.lang.AutoCloseable
java.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 char readChar() throws java.io.IOException
readChar
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 float readFloat() throws java.io.IOException
readFloat
in interface java.io.DataInput
java.io.IOException
public void readFully(byte[] b)
readFully
in interface java.io.DataInput
public void readFully(byte[] b, int off, int len)
readFully
in interface java.io.DataInput
public java.lang.String readLine() throws java.io.IOException
readLine
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 int readInt() throws java.io.IOException
readInt
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 readUnsignedByte() throws java.io.IOException
readUnsignedByte
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 java.lang.String readUTF() throws java.io.IOException
readUTF
in interface java.io.DataInput
java.io.IOException
public int skipBytes(int n)
skipBytes
in interface java.io.DataInput
public java.lang.Boolean readBooleanObject() throws java.io.IOException
ObjectDataInputI
readBooleanObject
in interface ObjectDataInputI
java.io.IOException
public java.lang.Byte readByteObject() throws java.io.IOException
ObjectDataInputI
readByteObject
in interface ObjectDataInputI
java.io.IOException
public java.lang.Double readDoubleObject() throws java.io.IOException
ObjectDataInputI
readDoubleObject
in interface ObjectDataInputI
java.io.IOException
public java.lang.Float readFloatObject() throws java.io.IOException
ObjectDataInputI
readFloatObject
in interface ObjectDataInputI
java.io.IOException
public java.lang.Integer readIntegerObject() throws java.io.IOException
ObjectDataInputI
readIntegerObject
in interface ObjectDataInputI
java.io.IOException
public java.lang.Long readLongObject() throws java.io.IOException
ObjectDataInputI
readLongObject
in interface ObjectDataInputI
java.io.IOException
public java.lang.Short readShortObject() throws java.io.IOException
ObjectDataInputI
readShortObject
in interface ObjectDataInputI
java.io.IOException
public java.math.BigDecimal readBigDecimal() throws java.io.IOException
ObjectDataInputI
readBigDecimal
in interface ObjectDataInputI
java.io.IOException
public java.lang.String readString() throws java.io.IOException
ObjectDataInputI
readString
in interface ObjectDataInputI
java.io.IOException
public java.util.Date readDate() throws java.io.IOException
ObjectDataInputI
readDate
in interface ObjectDataInputI
java.io.IOException
public java.lang.String[] readStringArray() throws java.io.IOException
ObjectDataInputI
readStringArray
in interface ObjectDataInputI
java.io.IOException
public int[] readIntegerArray() throws java.io.IOException
ObjectDataInputI
readIntegerArray
in interface ObjectDataInputI
java.io.IOException
public long[] readLongArray() throws java.io.IOException
ObjectDataInputI
readLongArray
in interface ObjectDataInputI
java.io.IOException
public java.lang.Object[] readObjectArray() throws java.io.IOException
ObjectDataInputI
readObjectArray
in interface ObjectDataInputI
java.io.IOException
public byte[] readBLOB() throws java.io.IOException
BLOBInputI
readBLOB
in interface BLOBInputI
java.io.IOException
public int readBLOB(byte[] buffer, int off, int len) throws java.io.IOException
IOException
- if the number of bytes written into correponding CompactObjectOutput != lenpublic byte[] _readBLOB(byte[] buffer, int off, int len) throws java.io.IOException
java.io.IOException
public int readBLOB(java.io.DataOutput out) throws java.io.IOException
BLOBInputI
readBLOB
in interface BLOBInputI
java.io.IOException
public int readBLOB(java.io.DataOutput out, java.security.MessageDigest digester) throws java.io.IOException
readBLOB
in interface DigestingBLOBInputI
java.io.IOException
public int readBLOB(java.io.OutputStream out) throws java.io.IOException
BLOBInputI
readBLOB
in interface BLOBInputI
java.io.IOException
public int readBLOB(java.io.OutputStream out, java.security.MessageDigest digester) throws java.io.IOException
readBLOB
in interface DigestingBLOBInputI
java.io.IOException
public int available() throws java.io.IOException
available
in interface java.io.ObjectInput
java.io.IOException
public int read() throws java.io.IOException
read
in interface java.io.ObjectInput
java.io.IOException
public int read(byte[] b) throws java.io.IOException
read
in interface java.io.ObjectInput
java.io.IOException
public int read(byte[] b, int off, int len) throws java.io.IOException
read
in interface java.io.ObjectInput
java.io.IOException
public java.lang.Object readObject() throws java.io.IOException
readObject
in interface ObjectDataInputI
readObject
in interface java.io.ObjectInput
java.io.IOException
public java.lang.Object readObject(java.lang.Class[] expectedClasses) throws java.io.IOException
ObjectDataInputI
readObject
in interface ObjectDataInputI
java.io.IOException
public long skip(long n)
skip
in interface java.io.ObjectInput
Copyright © 2000-2025 OAshi S.à r.l. All Rights Reserved.