com.xxdb.data.BasicBooleanMatrix Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-java Show documentation
Show all versions of api-java Show documentation
The messaging and data conversion protocol between Java and DolphinDB server
package com.xxdb.data;
import java.io.IOException;
import java.util.List;
import com.xxdb.io.ExtendedDataInput;
import com.xxdb.io.ExtendedDataOutput;
/**
*
* Corresponds to DolphinDB bool matrix
*
*/
public class BasicBooleanMatrix extends AbstractMatrix{
private byte[] values;
public BasicBooleanMatrix(int rows, int columns){
super(rows, columns);
values = new byte[rows * columns];
}
public BasicBooleanMatrix(int rows, int columns, List listOfArrays) throws Exception {
super(rows,columns);
values = new byte[rows*columns];
if (listOfArrays == null || listOfArrays.size() != columns)
throw new Exception("input list of arrays does not have " + columns + " columns");
for (int i=0; i getElementClass(){
return BasicBoolean.class;
}
@Override
protected void readMatrixFromInputStream(int rows, int columns, ExtendedDataInput in) throws IOException{
int size = rows * columns;
values =new byte[size];
int off = 0;
while (off < size) {
int len = Math.min(BUF_SIZE, size - off);
in.readFully(values, off, len);
off += len;
}
}
protected void writeVectorToOutputStream(ExtendedDataOutput out) throws IOException{
for(byte value : values)
out.writeByte(value);
}
}