com.hazelcast.shaded.org.apache.calcite.rex.RexExecutable Maven / Gradle / Ivy
/*
* 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 com.hazelcast.shaded.org.apache.calcite.rex;
import com.hazelcast.shaded.org.apache.calcite.DataContext;
import com.hazelcast.shaded.org.apache.calcite.linq4j.function.Function1;
import com.hazelcast.shaded.org.apache.calcite.runtime.Hook;
import com.hazelcast.shaded.org.apache.calcite.runtime.Utilities;
import com.hazelcast.shaded.org.apache.calcite.util.Pair;
import com.hazelcast.shaded.org.checkerframework.checker.nullness.qual.Nullable;
import com.hazelcast.shaded.org.codehaus.commons.compiler.CompileException;
import com.hazelcast.shaded.org.codehaus.janino.ClassBodyEvaluator;
import com.hazelcast.shaded.org.codehaus.janino.Scanner;
import java.io.IOException;
import java.io.Serializable;
import java.io.StringReader;
import java.lang.reflect.Constructor;
import java.lang.reflect.InvocationTargetException;
import java.util.Arrays;
import java.util.List;
import static java.util.Objects.requireNonNull;
/**
* Result of compiling code generated from a {@link RexNode} expression.
*/
public class RexExecutable {
private static final String GENERATED_CLASS_NAME = "Reducer";
private final Function1 compiledFunction;
private final String code;
private @Nullable DataContext dataContext;
public RexExecutable(String code, Object reason) {
this.code = code;
this.compiledFunction = compile(code, reason);
}
private static Function1 compile(String code,
Object reason) {
try {
final ClassBodyEvaluator cbe = new ClassBodyEvaluator();
cbe.setClassName(GENERATED_CLASS_NAME);
cbe.setExtendedClass(Utilities.class);
cbe.setImplementedInterfaces(new Class[] {Function1.class, Serializable.class});
cbe.setParentClassLoader(RexExecutable.class.getClassLoader());
cbe.cook(new Scanner(null, new StringReader(code)));
Class c = cbe.getClazz();
//noinspection unchecked
final Constructor> constructor =
c.getConstructor();
return constructor.newInstance();
} catch (CompileException | IOException | InstantiationException
| IllegalAccessException | InvocationTargetException
| NoSuchMethodException e) {
throw new RuntimeException("While compiling " + reason, e);
}
}
public void setDataContext(DataContext dataContext) {
this.dataContext = dataContext;
}
public void reduce(RexBuilder rexBuilder, List constExps,
List reducedValues) {
@Nullable Object[] values;
try {
values = execute();
if (values == null) {
reducedValues.addAll(constExps);
values = new Object[constExps.size()];
} else {
assert values.length == constExps.size();
final List<@Nullable Object> valueList = Arrays.asList(values);
for (Pair value : Pair.zip(constExps, valueList)) {
reducedValues.add(
rexBuilder.makeLiteral(value.right, value.left.getType(), true));
}
}
} catch (RuntimeException e) {
// One or more of the expressions failed.
// Don't reduce any of the expressions.
reducedValues.addAll(constExps);
values = new Object[constExps.size()];
}
Hook.EXPRESSION_REDUCER.run(Pair.of(code, values));
}
public Function1 getFunction() {
return compiledFunction;
}
public @Nullable Object @Nullable [] execute() {
return compiledFunction.apply(requireNonNull(dataContext, "dataContext"));
}
public String getSource() {
return code;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy