io.trino.spi.predicate.NullableValue Maven / Gradle / Ivy
The newest version!
/*
* 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 io.trino.spi.predicate;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.google.errorprone.annotations.DoNotCall;
import io.trino.spi.block.Block;
import io.trino.spi.type.Type;
import java.lang.invoke.MethodHandle;
import java.lang.invoke.MethodType;
import java.util.Objects;
import static io.trino.spi.function.InvocationConvention.InvocationArgumentConvention.NEVER_NULL;
import static io.trino.spi.function.InvocationConvention.InvocationReturnConvention.DEFAULT_ON_NULL;
import static io.trino.spi.function.InvocationConvention.InvocationReturnConvention.FAIL_ON_NULL;
import static io.trino.spi.function.InvocationConvention.simpleConvention;
import static io.trino.spi.predicate.Utils.TUPLE_DOMAIN_TYPE_OPERATORS;
import static io.trino.spi.predicate.Utils.handleThrowable;
import static io.trino.spi.predicate.Utils.nativeValueToBlock;
import static java.lang.String.format;
import static java.util.Objects.requireNonNull;
// TODO: When we move RowExpressions to the SPI, we should get rid of this. This is effectively a ConstantExpression.
public final class NullableValue
{
private final Type type;
private final Object value;
private final MethodHandle equalOperator;
private final MethodHandle hashCodeOperator;
public NullableValue(Type type, Object value)
{
requireNonNull(type, "type is null");
if (value != null && !Primitives.wrap(type.getJavaType()).isInstance(value)) {
throw new IllegalArgumentException(format("Object '%s' does not match type %s", value, type.getJavaType()));
}
this.type = type;
this.value = value;
if (type.isComparable()) {
this.equalOperator = TUPLE_DOMAIN_TYPE_OPERATORS.getEqualOperator(type, simpleConvention(DEFAULT_ON_NULL, NEVER_NULL, NEVER_NULL))
.asType(MethodType.methodType(boolean.class, Object.class, Object.class));
this.hashCodeOperator = TUPLE_DOMAIN_TYPE_OPERATORS.getHashCodeOperator(type, simpleConvention(FAIL_ON_NULL, NEVER_NULL))
.asType(MethodType.methodType(long.class, Object.class));
}
else {
this.equalOperator = null;
this.hashCodeOperator = null;
}
}
public static NullableValue of(Type type, Object value)
{
requireNonNull(value, "value is null");
return new NullableValue(type, value);
}
public static NullableValue asNull(Type type)
{
return new NullableValue(type, null);
}
@JsonCreator
@DoNotCall // For JSON deserialization only
public static NullableValue fromSerializable(@JsonProperty("serializable") Serializable serializable)
{
Type type = serializable.getType();
Block block = serializable.getBlock();
return new NullableValue(type, block == null ? null : Utils.blockToNativeValue(type, block));
}
// Jackson serialization only
@JsonProperty
public Serializable getSerializable()
{
return new Serializable(type, value == null ? null : Utils.nativeValueToBlock(type, value));
}
public Block asBlock()
{
return Utils.nativeValueToBlock(type, value);
}
public Type getType()
{
return type;
}
public boolean isNull()
{
return value == null;
}
public Object getValue()
{
return value;
}
@Override
public int hashCode()
{
long hash = Objects.hash(type);
if (value != null) {
hash = hash * 31 + valueHash();
}
return (int) hash;
}
private long valueHash()
{
try {
return (long) hashCodeOperator.invokeExact(value);
}
catch (Throwable throwable) {
throw handleThrowable(throwable);
}
}
@Override
public boolean equals(Object obj)
{
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
NullableValue other = (NullableValue) obj;
return Objects.equals(this.type, other.type)
&& (this.value == null) == (other.value == null)
&& (this.value == null || valueEquals(other.value));
}
private boolean valueEquals(Object otherValue)
{
try {
return (boolean) equalOperator.invokeExact(value, otherValue);
}
catch (Throwable throwable) {
throw handleThrowable(throwable);
}
}
@Override
public String toString()
{
StringBuilder sb = new StringBuilder("NullableValue{");
sb.append("type=").append(type);
sb.append(", value=").append(type.getObjectValue(ToStringSession.INSTANCE, nativeValueToBlock(type, value), 0));
sb.append('}');
return sb.toString();
}
public static class Serializable
{
private final Type type;
private final Block block;
@JsonCreator
public Serializable(
@JsonProperty("type") Type type,
@JsonProperty("block") Block block)
{
this.type = requireNonNull(type, "type is null");
this.block = block;
}
@JsonProperty
public Type getType()
{
return type;
}
@JsonProperty
public Block getBlock()
{
return block;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy