BuiltinFunctionBuilder.java
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you 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 org.apache.doris.nereids.trees.expressions.functions;
import org.apache.doris.common.Pair;
import org.apache.doris.common.util.ReflectionUtils;
import org.apache.doris.nereids.trees.expressions.Expression;
import com.google.common.base.Preconditions;
import com.google.common.collect.ImmutableList;
import java.lang.reflect.Array;
import java.lang.reflect.Constructor;
import java.lang.reflect.Modifier;
import java.util.Arrays;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import java.util.stream.Collectors;
/**
* This class used to resolve all builtin function
*/
public class BuiltinFunctionBuilder extends FunctionBuilder {
public final int arity;
public final boolean isVariableLength;
// Concrete BoundFunction's constructor
private final Constructor<BoundFunction> builderMethod;
private final Class<? extends BoundFunction> functionClass;
public BuiltinFunctionBuilder(
Class<? extends BoundFunction> functionClass, Constructor<BoundFunction> builderMethod) {
this.functionClass = Objects.requireNonNull(functionClass, "functionClass can not be null");
this.builderMethod = Objects.requireNonNull(builderMethod, "builderMethod can not be null");
this.arity = builderMethod.getParameterCount();
this.isVariableLength = arity > 0 && builderMethod.getParameterTypes()[arity - 1].isArray();
}
public Constructor<BoundFunction> getBuilderMethod() {
return builderMethod;
}
@Override
public Class<? extends BoundFunction> functionClass() {
return functionClass;
}
@Override
public boolean canApply(List<? extends Object> arguments) {
if (isVariableLength && arity > arguments.size() + 1) {
return false;
}
if (!isVariableLength && arguments.size() != arity) {
return false;
}
for (int i = 0; i < arguments.size(); i++) {
Class constructorArgumentType = getConstructorArgumentType(i);
Object argument = arguments.get(i);
if (!constructorArgumentType.isInstance(argument)) {
Optional<Class> primitiveType = ReflectionUtils.getPrimitiveType(argument.getClass());
if (!primitiveType.isPresent() || !constructorArgumentType.isAssignableFrom(primitiveType.get())) {
return false;
}
}
}
return true;
}
private Class getConstructorArgumentType(int index) {
if (isVariableLength && index + 1 >= arity) {
return builderMethod.getParameterTypes()[arity - 1].getComponentType();
}
return builderMethod.getParameterTypes()[index];
}
@Override
public Pair<BoundFunction, BoundFunction> build(String name, List<? extends Object> arguments) {
try {
if (isVariableLength) {
return Pair.ofSame(builderMethod.newInstance(toVariableLengthArguments(arguments)));
} else {
return Pair.ofSame(builderMethod.newInstance(arguments.toArray()));
}
} catch (Throwable t) {
String argString = arguments.stream()
.map(arg -> {
if (arg == null) {
return "null";
} else if (arg instanceof Expression) {
return ((Expression) arg).toSql();
} else {
return arg.toString();
}
})
.collect(Collectors.joining(", ", "(", ")"));
throw new IllegalStateException("Can not build function: '" + name
+ "', expression: " + name + argString + ", " + t.getCause().getMessage(), t);
}
}
private Object[] toVariableLengthArguments(List<? extends Object> arguments) {
Object[] constructorArguments = new Object[arity];
List<?> nonVarArgs = arguments.subList(0, arity - 1);
for (int i = 0; i < nonVarArgs.size(); i++) {
constructorArguments[i] = nonVarArgs.get(i);
}
List<?> varArgs = arguments.subList(arity - 1, arguments.size());
Class constructorArgumentType = getConstructorArgumentType(arity);
Object varArg = Array.newInstance(constructorArgumentType, varArgs.size());
for (int i = 0; i < varArgs.size(); i++) {
Array.set(varArg, i, varArgs.get(i));
}
constructorArguments[arity - 1] = varArg;
return constructorArguments;
}
/**
* resolve a Concrete boundFunction's class and convert the constructors to
* FunctionBuilder
* @param functionClass a class which is the child class of BoundFunction and can not be abstract class
* @return list of FunctionBuilder which contains the constructor
*/
public static List<FunctionBuilder> resolve(Class<? extends BoundFunction> functionClass) {
Preconditions.checkArgument(!Modifier.isAbstract(functionClass.getModifiers()),
"Can not resolve bind function which is abstract class: "
+ functionClass.getSimpleName());
return Arrays.stream(functionClass.getConstructors())
.filter(constructor -> Modifier.isPublic(constructor.getModifiers()))
.map(constructor -> new BuiltinFunctionBuilder(functionClass, (Constructor<BoundFunction>) constructor))
.collect(ImmutableList.toImmutableList());
}
@Override
public String parameterDisplayString() {
return Arrays.stream(builderMethod.getParameterTypes())
.map(p -> {
if (p.isArray()) {
return p.getComponentType().getSimpleName() + "...";
} else {
return p.getSimpleName();
}
})
.collect(Collectors.joining(", ", "(", ")"));
}
}