com.xxdb.data.BasicFloatVector 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 float vector
*
*/
public class BasicFloatVector extends AbstractVector{
private float[] values;
private int size;
private int capaticy;
public BasicFloatVector(int size){
this(DATA_FORM.DF_VECTOR, size);
}
public BasicFloatVector(List list){
super(DATA_FORM.DF_VECTOR);
if (list != null) {
values = new float[list.size()];
for (int i=0; i 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(float[] 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().floatValue());
}
@Override
public void Append(Vector value) throws Exception{
addRange(((BasicFloatVector)value).getdataArray());
}
public float[] getdataArray(){
float[] data = new float[size];
System.arraycopy(values, 0, data, 0, size);
return data;
}
public Entity get(int index){
return new BasicFloat(values[index]);
}
public Vector getSubVector(int[] indices){
int length = indices.length;
float[] sub = new float[length];
for(int i=0; i getElementClass(){
return BasicFloat.class;
}
protected void writeVectorToOutputStream(ExtendedDataOutput out) throws IOException{
float[] data = new float[size];
System.arraycopy(values, 0, data, 0, size);
out.writeFloatArray(data);
}
@Override
public ByteBuffer writeVectorToBuffer(ByteBuffer buffer) throws IOException {
float[] data = new float[size];
System.arraycopy(values, 0, data, 0, size);
for (float val: data) {
buffer.putFloat(val);
}
return buffer;
}
@Override
public int asof(Scalar value) {
float target;
try{
target = value.getNumber().floatValue();
}
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.putFloat(values[indexStart + i]);
}
numElementAndPartial.numElement = targetNumElement;
numElementAndPartial.partial = 0;
return targetNumElement * 4;
}
public float[] getValues() {
return values;
}
}