io.trino.spi.predicate.Utils Maven / Gradle / Ivy
/*
* 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 io.trino.spi.block.Block;
import io.trino.spi.type.Type;
import io.trino.spi.type.TypeOperators;
import jakarta.annotation.Nullable;
import static io.trino.spi.type.TypeUtils.readNativeValue;
import static io.trino.spi.type.TypeUtils.writeNativeValue;
import static java.lang.String.format;
public final class Utils
{
private Utils() {}
// Tuple domain accesses equal and hash code operators from static contexts which
// are too numerous to inject a type operator cache. Instead, we use a static cache
// just for this use case.
static final TypeOperators TUPLE_DOMAIN_TYPE_OPERATORS = new TypeOperators();
public static Block nativeValueToBlock(Type type, @Nullable Object object)
{
if (object != null) {
Class> expectedClass = Primitives.wrap(type.getJavaType());
if (!expectedClass.isInstance(object)) {
throw new IllegalArgumentException(format("Object '%s' (%s) is not instance of %s", object, object.getClass().getName(), expectedClass.getName()));
}
}
return writeNativeValue(type, object);
}
public static Object blockToNativeValue(Type type, Block block)
{
if (block.getPositionCount() != 1) {
throw new IllegalArgumentException("Block should have exactly one position, but has: " + block.getPositionCount());
}
return readNativeValue(type, block, 0);
}
static RuntimeException handleThrowable(Throwable throwable)
{
if (throwable instanceof Error) {
throw (Error) throwable;
}
if (throwable instanceof RuntimeException) {
throw (RuntimeException) throwable;
}
return new RuntimeException(throwable);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy