org.apache.skywalking.banyandb.v1.client.DataPoint Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
package org.apache.skywalking.banyandb.v1.client;
import lombok.Getter;
import org.apache.skywalking.banyandb.measure.v1.BanyandbMeasure;
import org.apache.skywalking.banyandb.model.v1.BanyandbModel;
import java.util.HashMap;
import java.util.Map;
/**
* RowEntity represents an entity of BanyanDB entity.
*/
@Getter
public class DataPoint extends RowEntity {
private final Map fields;
public static DataPoint create(BanyandbMeasure.DataPoint dataPoint) {
return new DataPoint(dataPoint);
}
private DataPoint(BanyandbMeasure.DataPoint dataPoint) {
super(dataPoint.getTimestamp(), dataPoint.getTagFamiliesList());
this.fields = new HashMap<>(dataPoint.getFieldsCount());
for (BanyandbMeasure.DataPoint.Field f : dataPoint.getFieldsList()) {
this.fields.put(f.getName(), convertFileValueToJavaType(f.getValue()));
}
}
public T getFieldValue(String fieldName) {
return (T) this.fields.get(fieldName);
}
static Object convertFileValueToJavaType(BanyandbModel.FieldValue fieldValue) {
switch (fieldValue.getValueCase()) {
case INT:
return fieldValue.getInt().getValue();
case STR:
return fieldValue.getStr().getValue();
case NULL:
return null;
case BINARY_DATA:
return fieldValue.getBinaryData().toByteArray();
case FLOAT:
return fieldValue.getFloat().getValue();
default:
throw new IllegalStateException("illegal type of FieldValue");
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy