com.xxdb.data.BasicDoubleVector Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dolphindb-javaapi Show documentation
Show all versions of dolphindb-javaapi Show documentation
The messaging and data conversion protocol between Java and DolphinDB server
package com.xxdb.data;
import java.io.IOException;
import java.nio.ByteBuffer;
import java.nio.ByteOrder;
import java.util.Arrays;
import java.util.List;
import com.xxdb.io.ExtendedDataInput;
import com.xxdb.io.ExtendedDataOutput;
/**
*
* Corresponds to DolphinDB double vector
*
*/
public class BasicDoubleVector extends AbstractVector{
private double[] values;
private int size;
private int capaticy;
public BasicDoubleVector(int size){
this(DATA_FORM.DF_VECTOR, size);
}
public BasicDoubleVector(List list){
super(DATA_FORM.DF_VECTOR);
if (list != null) {
values = new double[list.size()];
for (int i=0; i getElementClass(){
return BasicDouble.class;
}
@Override
public int rows() {
return size;
}
protected void writeVectorToOutputStream(ExtendedDataOutput out) throws IOException{
double[] data = new double[size];
System.arraycopy(values, 0, data, 0, size);
out.writeDoubleArray(data);
}
@Override
public int getUnitLength(){
return 8;
}
public void add(double value) {
if (size + 1 > capaticy && values.length > 0){
values = Arrays.copyOf(values, values.length * 2);
}else if (values.length <= 0){
values = Arrays.copyOf(values, values.length + 1);
}
capaticy = values.length;
values[size] = value;
size++;
}
public void addRange(double[] valueList) {
values = Arrays.copyOf(values, valueList.length + values.length);
System.arraycopy(valueList, 0, values, size, valueList.length);
size += valueList.length;
capaticy = values.length;
}
@Override
public void Append(Scalar value) throws Exception{
add(value.getNumber().doubleValue());
}
@Override
public void Append(Vector value) {
addRange(((BasicDoubleVector)value).getdataArray());
}
public double[] getdataArray(){
double[] data = new double[size];
System.arraycopy(values, 0, data, 0, size);
return data;
}
@Override
public ByteBuffer writeVectorToBuffer(ByteBuffer buffer) throws IOException {
double[] data = new double[size];
System.arraycopy(values, 0, data, 0, size);
for (double val: data) {
buffer.putDouble(val);
}
return buffer;
}
@Override
public int asof(Scalar value) {
double target;
try{
target = value.getNumber().doubleValue();
}
catch(Exception ex){
throw new RuntimeException(ex);
}
int start = 0;
int end = size - 1;
int mid;
while(start <= end){
mid = (start + end)/2;
if(values[mid] <= target)
start = mid + 1;
else
end = mid - 1;
}
return end;
}
@Override
public int serialize(int indexStart, int offect, int targetNumElement, NumElementAndPartial numElementAndPartial, ByteBuffer out) throws IOException{
targetNumElement = Math.min((out.remaining() / getUnitLength()), targetNumElement);
for (int i = 0; i < targetNumElement; ++i)
{
out.putDouble(values[indexStart + i]);
}
numElementAndPartial.numElement = targetNumElement;
numElementAndPartial.partial = 0;
return targetNumElement * 8;
}
public double[] getValues() {
return values;
}
}