Package org.apache.sysds.runtime.util
Class ByteBufferDataInput
- java.lang.Object
-
- org.apache.sysds.runtime.util.ByteBufferDataInput
-
- All Implemented Interfaces:
DataInput
,MatrixBlockDataInput
public class ByteBufferDataInput extends Object implements DataInput, MatrixBlockDataInput
-
-
Constructor Summary
Constructors Constructor Description ByteBufferDataInput(ByteBuffer buff)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
available()
boolean
readBoolean()
byte
readByte()
char
readChar()
double
readDouble()
long
readDoubleArray(int len, double[] varr)
Reads the double array from the data input into the given dense block and returns the number of non-zeros.float
readFloat()
void
readFully(byte[] b)
void
readFully(byte[] b, int off, int len)
int
readInt()
String
readLine()
long
readLong()
short
readShort()
long
readSparseRows(int rlen, long nnz, SparseBlock rows)
Reads the sparse rows array from the data input into a sparse block and returns the number of non-zeros.int
readUnsignedByte()
int
readUnsignedShort()
String
readUTF()
int
skipBytes(int n)
-
-
-
Constructor Detail
-
ByteBufferDataInput
public ByteBufferDataInput(ByteBuffer buff)
-
-
Method Detail
-
available
public int available()
-
readFully
public void readFully(byte[] b) throws IOException
- Specified by:
readFully
in interfaceDataInput
- Throws:
IOException
-
readFully
public void readFully(byte[] b, int off, int len) throws IOException
- Specified by:
readFully
in interfaceDataInput
- Throws:
IOException
-
skipBytes
public int skipBytes(int n) throws IOException
- Specified by:
skipBytes
in interfaceDataInput
- Throws:
IOException
-
readBoolean
public boolean readBoolean() throws IOException
- Specified by:
readBoolean
in interfaceDataInput
- Throws:
IOException
-
readByte
public byte readByte() throws IOException
- Specified by:
readByte
in interfaceDataInput
- Throws:
IOException
-
readUnsignedByte
public int readUnsignedByte() throws IOException
- Specified by:
readUnsignedByte
in interfaceDataInput
- Throws:
IOException
-
readShort
public short readShort() throws IOException
- Specified by:
readShort
in interfaceDataInput
- Throws:
IOException
-
readUnsignedShort
public int readUnsignedShort() throws IOException
- Specified by:
readUnsignedShort
in interfaceDataInput
- Throws:
IOException
-
readChar
public char readChar() throws IOException
- Specified by:
readChar
in interfaceDataInput
- Throws:
IOException
-
readInt
public int readInt() throws IOException
- Specified by:
readInt
in interfaceDataInput
- Throws:
IOException
-
readLong
public long readLong() throws IOException
- Specified by:
readLong
in interfaceDataInput
- Throws:
IOException
-
readFloat
public float readFloat() throws IOException
- Specified by:
readFloat
in interfaceDataInput
- Throws:
IOException
-
readDouble
public double readDouble() throws IOException
- Specified by:
readDouble
in interfaceDataInput
- Throws:
IOException
-
readLine
public String readLine() throws IOException
- Specified by:
readLine
in interfaceDataInput
- Throws:
IOException
-
readUTF
public String readUTF() throws IOException
- Specified by:
readUTF
in interfaceDataInput
- Throws:
IOException
-
readDoubleArray
public long readDoubleArray(int len, double[] varr) throws IOException
Description copied from interface:MatrixBlockDataInput
Reads the double array from the data input into the given dense block and returns the number of non-zeros.- Specified by:
readDoubleArray
in interfaceMatrixBlockDataInput
- Parameters:
len
- ?varr
- ?- Returns:
- number of non-zeros
- Throws:
IOException
- if IOException occurs
-
readSparseRows
public long readSparseRows(int rlen, long nnz, SparseBlock rows) throws IOException
Description copied from interface:MatrixBlockDataInput
Reads the sparse rows array from the data input into a sparse block and returns the number of non-zeros.- Specified by:
readSparseRows
in interfaceMatrixBlockDataInput
- Parameters:
rlen
- number of rowsnnz
- number of non-zerosrows
- sparse block- Returns:
- number of non-zeros
- Throws:
IOException
- if IOExcepton occurs
-
-