org.apache.druid.segment.serde.LongNumericColumnPartSerde Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of druid-processing Show documentation
Show all versions of druid-processing Show documentation
A module that is everything required to understands Druid Segments
/*
* 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.druid.segment.serde;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import org.apache.druid.segment.IndexIO;
import org.apache.druid.segment.column.ValueType;
import org.apache.druid.segment.data.CompressedColumnarLongsSupplier;
import javax.annotation.Nullable;
import java.nio.ByteOrder;
/**
*/
public class LongNumericColumnPartSerde implements ColumnPartSerde
{
@JsonCreator
public static LongNumericColumnPartSerde createDeserializer(
@JsonProperty("byteOrder") ByteOrder byteOrder
)
{
return new LongNumericColumnPartSerde(byteOrder, null);
}
private final ByteOrder byteOrder;
@Nullable
private final Serializer serializer;
private LongNumericColumnPartSerde(ByteOrder byteOrder, @Nullable Serializer serializer)
{
this.byteOrder = byteOrder;
this.serializer = serializer;
}
@JsonProperty
public ByteOrder getByteOrder()
{
return byteOrder;
}
public static SerializerBuilder serializerBuilder()
{
return new SerializerBuilder();
}
public static class SerializerBuilder
{
@Nullable
private ByteOrder byteOrder = null;
@Nullable
private Serializer delegate = null;
public SerializerBuilder withByteOrder(final ByteOrder byteOrder)
{
this.byteOrder = byteOrder;
return this;
}
public SerializerBuilder withDelegate(final Serializer delegate)
{
this.delegate = delegate;
return this;
}
public LongNumericColumnPartSerde build()
{
return new LongNumericColumnPartSerde(byteOrder, delegate);
}
}
@Nullable
@Override
public Serializer getSerializer()
{
return serializer;
}
@Override
public Deserializer getDeserializer()
{
return (buffer, builder, columnConfig) -> {
final CompressedColumnarLongsSupplier column = CompressedColumnarLongsSupplier.fromByteBuffer(
buffer,
byteOrder
);
LongNumericColumnSupplier columnSupplier = new LongNumericColumnSupplier(
column,
IndexIO.LEGACY_FACTORY.getBitmapFactory().makeEmptyImmutableBitmap()
);
builder.setType(ValueType.LONG)
.setHasMultipleValues(false)
.setNumericColumnSupplier(columnSupplier);
};
}
}