com.amazonaws.athena.connector.lambda.serde.v2.GetTableLayoutResponseSerDe Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws-athena-federation-sdk Show documentation
Show all versions of aws-athena-federation-sdk Show documentation
The Athena Query Federation SDK defines a set of interfaces and wire protocols that you can implement to enable Athena to delegate portions of it's query execution plan to code that you deploy/write.
/*-
* #%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.data.Block;
import com.amazonaws.athena.connector.lambda.domain.TableName;
import com.amazonaws.athena.connector.lambda.metadata.GetTableLayoutResponse;
import com.amazonaws.athena.connector.lambda.request.FederationResponse;
import com.amazonaws.athena.connector.lambda.serde.TypedDeserializer;
import com.amazonaws.athena.connector.lambda.serde.TypedSerializer;
import com.amazonaws.athena.connector.lambda.serde.VersionedSerDe;
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 java.io.IOException;
import static java.util.Objects.requireNonNull;
public final class GetTableLayoutResponseSerDe
{
private static final String CATALOG_NAME_FIELD = "catalogName";
private static final String TABLE_NAME_FIELD = "tableName";
private static final String PARTITIONS_FIELD = "partitions";
private GetTableLayoutResponseSerDe() {}
public static final class Serializer extends TypedSerializer
{
private final TableNameSerDe.Serializer tableNameSerializer;
private final VersionedSerDe.Serializer blockSerializer;
public Serializer(TableNameSerDe.Serializer tableNameSerializer, VersionedSerDe.Serializer blockSerializer)
{
super(FederationResponse.class, GetTableLayoutResponse.class);
this.tableNameSerializer = requireNonNull(tableNameSerializer, "tableNameSerializer is null");
this.blockSerializer = requireNonNull(blockSerializer, "blockSerDe is null");
}
@Override
protected void doTypedSerialize(FederationResponse federationResponse, JsonGenerator jgen, SerializerProvider provider)
throws IOException
{
GetTableLayoutResponse getTableLayoutResponse = (GetTableLayoutResponse) federationResponse;
jgen.writeStringField(CATALOG_NAME_FIELD, getTableLayoutResponse.getCatalogName());
jgen.writeFieldName(TABLE_NAME_FIELD);
tableNameSerializer.serialize(getTableLayoutResponse.getTableName(), jgen, provider);
jgen.writeFieldName(PARTITIONS_FIELD);
blockSerializer.serialize(getTableLayoutResponse.getPartitions(), jgen, provider);
}
}
public static final class Deserializer extends TypedDeserializer
{
private final TableNameSerDe.Deserializer tableNameDeserializer;
private final VersionedSerDe.Deserializer blockDeserializer;
public Deserializer(TableNameSerDe.Deserializer tableNameDeserializer, VersionedSerDe.Deserializer blockDeserializer)
{
super(FederationResponse.class, GetTableLayoutResponse.class);
this.tableNameDeserializer = requireNonNull(tableNameDeserializer, "tableNameDeserializer is null");
this.blockDeserializer = requireNonNull(blockDeserializer, "blockDeserializer is null");
}
@Override
protected FederationResponse doTypedDeserialize(JsonParser jparser, DeserializationContext ctxt)
throws IOException
{
String catalogName = getNextStringField(jparser, CATALOG_NAME_FIELD);
assertFieldName(jparser, TABLE_NAME_FIELD);
TableName tableName = tableNameDeserializer.deserialize(jparser, ctxt);
assertFieldName(jparser, PARTITIONS_FIELD);
Block partitions = blockDeserializer.deserialize(jparser, ctxt);
return new GetTableLayoutResponse(catalogName, tableName, partitions);
}
}
}