com.amazonaws.athena.connector.lambda.serde.v2.AllOrNoneValueSetSerDe Maven / Gradle / Ivy
/*-
* #%L
* Amazon Athena Query Federation SDK
* %%
* Copyright (C) 2019 - 2020 Amazon Web Services
* %%
* Licensed 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.
* #L%
*/
package com.amazonaws.athena.connector.lambda.serde.v2;
import com.amazonaws.athena.connector.lambda.domain.predicate.AllOrNoneValueSet;
import com.amazonaws.athena.connector.lambda.domain.predicate.ValueSet;
import com.amazonaws.athena.connector.lambda.serde.TypedDeserializer;
import com.amazonaws.athena.connector.lambda.serde.TypedSerializer;
import com.fasterxml.jackson.core.JsonGenerator;
import com.fasterxml.jackson.core.JsonParser;
import com.fasterxml.jackson.databind.DeserializationContext;
import com.fasterxml.jackson.databind.SerializerProvider;
import org.apache.arrow.vector.types.pojo.ArrowType;
import java.io.IOException;
import static java.util.Objects.requireNonNull;
public final class AllOrNoneValueSetSerDe
{
private static final String TYPE_FIELD = "type";
private static final String ALL_FIELD = "all";
private static final String NULL_ALLOWED_FIELD = "nullAllowed";
private AllOrNoneValueSetSerDe() {}
public static final class Serializer extends TypedSerializer
{
private final ArrowTypeSerDe.Serializer arrowTypeSerializer;
public Serializer(ArrowTypeSerDe.Serializer arrowTypeSerialzer)
{
super(ValueSet.class, AllOrNoneValueSet.class);
this.arrowTypeSerializer = requireNonNull(arrowTypeSerialzer, "arrowTypeSerialzer is null");
}
@Override
protected void doTypedSerialize(ValueSet valueSet, JsonGenerator jgen, SerializerProvider provider)
throws IOException
{
AllOrNoneValueSet allOrNoneValueSet = (AllOrNoneValueSet) valueSet;
jgen.writeFieldName(TYPE_FIELD);
arrowTypeSerializer.serialize(allOrNoneValueSet.getType(), jgen, provider);
jgen.writeBooleanField(ALL_FIELD, allOrNoneValueSet.isAll());
jgen.writeBooleanField(NULL_ALLOWED_FIELD, allOrNoneValueSet.isNullAllowed());
}
}
public static final class Deserializer extends TypedDeserializer
{
private final ArrowTypeSerDe.Deserializer arrowTypeDeserializer;
public Deserializer(ArrowTypeSerDe.Deserializer arrowTypeDeserializer)
{
super(ValueSet.class, AllOrNoneValueSet.class);
this.arrowTypeDeserializer = requireNonNull(arrowTypeDeserializer, "arrowTypeSerDe is null");
}
@Override
protected AllOrNoneValueSet doTypedDeserialize(JsonParser jparser, DeserializationContext ctxt)
throws IOException
{
assertFieldName(jparser, TYPE_FIELD);
ArrowType type = arrowTypeDeserializer.deserialize(jparser, ctxt);
boolean all = getNextBoolField(jparser, ALL_FIELD);
boolean nullAllowed = getNextBoolField(jparser, NULL_ALLOWED_FIELD);
return new AllOrNoneValueSet(type, all, nullAllowed);
}
}
}