com.hazelcast.sql.impl.expression.math.AbsFunction Maven / Gradle / Ivy
/*
* Copyright 2024 Hazelcast Inc.
*
* Licensed under the Hazelcast Community License (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://hazelcast.com/hazelcast-community-license
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.hazelcast.sql.impl.expression.math;
import com.hazelcast.jet.sql.impl.JetSqlSerializerHook;
import com.hazelcast.sql.impl.QueryException;
import com.hazelcast.sql.impl.SqlErrorCode;
import com.hazelcast.sql.impl.expression.Expression;
import com.hazelcast.sql.impl.expression.ExpressionEvalContext;
import com.hazelcast.sql.impl.expression.UniExpressionWithType;
import com.hazelcast.sql.impl.row.Row;
import com.hazelcast.sql.impl.type.QueryDataType;
import com.hazelcast.sql.impl.type.converter.Converter;
import static com.hazelcast.sql.impl.type.QueryDataTypeUtils.DECIMAL_MATH_CONTEXT;
public class AbsFunction extends UniExpressionWithType {
@SuppressWarnings("unused")
public AbsFunction() {
// No-op.
}
private AbsFunction(Expression> operand, QueryDataType resultType) {
super(operand, resultType);
}
public static AbsFunction> create(Expression> operand, QueryDataType resultType) {
return new AbsFunction<>(operand, resultType);
}
@SuppressWarnings("unchecked")
@Override
public T eval(Row row, ExpressionEvalContext context) {
Object operandValue = operand.eval(row, context);
if (operandValue == null) {
return null;
}
return (T) abs(operandValue, operand.getType(), resultType);
}
private static Object abs(Object operand, QueryDataType operandType, QueryDataType resultType) {
Converter operandConverter = operandType.getConverter();
switch (resultType.getTypeFamily()) {
case TINYINT:
return (byte) Math.abs(operandConverter.asTinyint(operand));
case SMALLINT:
return (short) Math.abs(operandConverter.asSmallint(operand));
case INTEGER:
return Math.abs(operandConverter.asInt(operand));
case BIGINT:
long res = Math.abs(operandConverter.asBigint(operand));
if (res < 0) {
throw QueryException.error(SqlErrorCode.DATA_EXCEPTION,
"BIGINT overflow in ABS function (consider adding an explicit CAST to DECIMAL)");
}
return res;
case DECIMAL:
return operandConverter.asDecimal(operand).abs(DECIMAL_MATH_CONTEXT);
case REAL:
return Math.abs(operandConverter.asReal(operand));
case DOUBLE:
return Math.abs(operandConverter.asDouble(operand));
default:
throw QueryException.error("Unexpected result type: " + resultType);
}
}
@Override
public int getClassId() {
return JetSqlSerializerHook.EXPRESSION_ABS;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy