io.opentelemetry.exporter.internal.otlp.ArrayAnyValueMarshaler Maven / Gradle / Ivy
/*
* Copyright The OpenTelemetry Authors
* SPDX-License-Identifier: Apache-2.0
*/
package io.opentelemetry.exporter.internal.otlp;
import io.opentelemetry.exporter.internal.marshal.Marshaler;
import io.opentelemetry.exporter.internal.marshal.MarshalerUtil;
import io.opentelemetry.exporter.internal.marshal.MarshalerWithSize;
import io.opentelemetry.exporter.internal.marshal.Serializer;
import io.opentelemetry.proto.common.v1.internal.AnyValue;
import io.opentelemetry.proto.common.v1.internal.ArrayValue;
import java.io.IOException;
import java.util.List;
import java.util.function.Function;
final class ArrayAnyValueMarshaler extends MarshalerWithSize {
private final Marshaler value;
private ArrayAnyValueMarshaler(ArrayValueMarshaler value) {
super(calculateSize(value));
this.value = value;
}
static MarshalerWithSize createAnyValue(
List> values) {
return createInternal(values, AnyValueMarshaler::create);
}
static MarshalerWithSize createString(List values) {
return createInternal(values, StringAnyValueMarshaler::create);
}
static MarshalerWithSize createBool(List values) {
return createInternal(values, BoolAnyValueMarshaler::create);
}
static MarshalerWithSize createInt(List values) {
return createInternal(values, IntAnyValueMarshaler::create);
}
static MarshalerWithSize createDouble(List values) {
return createInternal(values, DoubleAnyValueMarshaler::create);
}
private static MarshalerWithSize createInternal(
List values, Function initializer) {
int len = values.size();
Marshaler[] marshalers = new Marshaler[len];
for (int i = 0; i < len; i++) {
marshalers[i] = initializer.apply(values.get(i));
}
return new ArrayAnyValueMarshaler(new ArrayValueMarshaler(marshalers));
}
@Override
public void writeTo(Serializer output) throws IOException {
output.serializeMessage(AnyValue.ARRAY_VALUE, value);
}
private static int calculateSize(Marshaler value) {
return MarshalerUtil.sizeMessage(AnyValue.ARRAY_VALUE, value);
}
private static class ArrayValueMarshaler extends MarshalerWithSize {
private final Marshaler[] values;
private ArrayValueMarshaler(Marshaler[] values) {
super(calculateSize(values));
this.values = values;
}
@Override
public void writeTo(Serializer output) throws IOException {
output.serializeRepeatedMessage(ArrayValue.VALUES, values);
}
private static int calculateSize(Marshaler[] values) {
return MarshalerUtil.sizeRepeatedMessage(ArrayValue.VALUES, values);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy