BigintEnumType.java
/*
* 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.
*/
package com.facebook.presto.common.type;
import com.facebook.drift.annotations.ThriftConstructor;
import com.facebook.drift.annotations.ThriftField;
import com.facebook.drift.annotations.ThriftStruct;
import com.facebook.presto.common.block.Block;
import com.facebook.presto.common.function.SqlFunctionProperties;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Comparator;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import java.util.stream.Collectors;
import static com.facebook.presto.common.type.BigintType.BIGINT;
import static com.facebook.presto.common.type.TypeUtils.normalizeEnumMap;
import static com.facebook.presto.common.type.TypeUtils.validateEnumMap;
import static java.lang.String.format;
import static java.util.Locale.ENGLISH;
import static java.util.Objects.requireNonNull;
import static java.util.stream.Collectors.toMap;
public class BigintEnumType
extends AbstractLongType
implements EnumType<Long>
{
private final LongEnumMap enumMap;
public BigintEnumType(LongEnumMap enumMap)
{
super(new TypeSignature(StandardTypes.BIGINT_ENUM, TypeSignatureParameter.of(enumMap)));
this.enumMap = enumMap;
}
@Override
public Map<String, Long> getEnumMap()
{
return enumMap.getEnumMap();
}
@Override
public Optional<String> getEnumKeyForValue(Long value)
{
return enumMap.getKeyForValue(value);
}
@Override
public Object getObjectValue(SqlFunctionProperties properties, Block block, int position)
{
if (block.isNull(position)) {
return null;
}
return block.getLong(position);
}
@Override
public Type getValueType()
{
return BIGINT;
}
@Override
public String getDisplayName()
{
return enumMap.getTypeName();
}
@ThriftStruct
public static class LongEnumMap
{
private final String typeName;
private final Map<String, Long> enumMap;
private final Map<Long, String> flippedEnumMap;
@ThriftConstructor
@JsonCreator
public LongEnumMap(@JsonProperty("typeName") String typeName, @JsonProperty("enumMap") Map<String, Long> enumMap)
{
validateEnumMap(requireNonNull(enumMap, "enumMap is null"));
this.typeName = requireNonNull(typeName.toLowerCase(ENGLISH), "typeName is null");
this.enumMap = normalizeEnumMap(enumMap);
this.flippedEnumMap = this.enumMap.entrySet().stream()
.collect(toMap(Map.Entry::getValue, Map.Entry::getKey));
}
@ThriftField(1)
@JsonProperty
public String getTypeName()
{
return typeName;
}
@ThriftField(2)
@JsonProperty
public Map<String, Long> getEnumMap()
{
return enumMap;
}
public Optional<String> getKeyForValue(Long value)
{
return Optional.ofNullable(flippedEnumMap.get(value));
}
@Override
public boolean equals(Object o)
{
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
LongEnumMap other = (LongEnumMap) o;
return Objects.equals(typeName, other.typeName) && Objects.equals(enumMap, other.enumMap);
}
@Override
public String toString()
{
return format("%s{%s}", typeName, enumMap.entrySet().stream()
.sorted(Comparator.comparing(Map.Entry::getKey))
.map(e -> format("\"%s\": %d", e.getKey().replaceAll("\"", "\"\""), e.getValue()))
.collect(Collectors.joining(", ")));
}
@Override
public int hashCode()
{
return Objects.hash(typeName, enumMap);
}
}
@Override
public int hashCode()
{
return Objects.hash(getTypeSignature().getBase(), enumMap);
}
@Override
public boolean equals(Object o)
{
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
BigintEnumType other = (BigintEnumType) o;
return Objects.equals(getTypeSignature().getBase(), other.getTypeSignature().getBase())
&& Objects.equals(getEnumMap(), other.getEnumMap());
}
}