EnumerableInterpretable.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.calcite.adapter.enumerable;
import org.apache.calcite.DataContext;
import org.apache.calcite.avatica.Helper;
import org.apache.calcite.config.CalciteSystemProperty;
import org.apache.calcite.interpreter.Compiler;
import org.apache.calcite.interpreter.InterpretableConvention;
import org.apache.calcite.interpreter.InterpretableRel;
import org.apache.calcite.interpreter.Node;
import org.apache.calcite.interpreter.Row;
import org.apache.calcite.interpreter.Sink;
import org.apache.calcite.jdbc.CalcitePrepare;
import org.apache.calcite.linq4j.AbstractEnumerable;
import org.apache.calcite.linq4j.Enumerable;
import org.apache.calcite.linq4j.Enumerator;
import org.apache.calcite.linq4j.tree.ClassDeclaration;
import org.apache.calcite.linq4j.tree.Expressions;
import org.apache.calcite.linq4j.tree.FieldDeclaration;
import org.apache.calcite.linq4j.tree.VisitorImpl;
import org.apache.calcite.plan.ConventionTraitDef;
import org.apache.calcite.plan.RelOptCluster;
import org.apache.calcite.plan.RelTraitSet;
import org.apache.calcite.rel.RelNode;
import org.apache.calcite.rel.convert.ConverterImpl;
import org.apache.calcite.runtime.ArrayBindable;
import org.apache.calcite.runtime.Bindable;
import org.apache.calcite.runtime.Hook;
import org.apache.calcite.runtime.Typed;
import org.apache.calcite.util.Util;
import com.google.common.cache.Cache;
import com.google.common.cache.CacheBuilder;
import org.checkerframework.checker.nullness.qual.Nullable;
import org.codehaus.commons.compiler.CompileException;
import org.codehaus.commons.compiler.CompilerFactoryFactory;
import org.codehaus.commons.compiler.ICompilerFactory;
import org.codehaus.commons.compiler.ISimpleCompiler;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Modifier;
import java.util.List;
import java.util.Map;
import java.util.concurrent.ExecutionException;
import static java.util.Objects.requireNonNull;
/**
* Relational expression that converts an enumerable input to interpretable
* calling convention.
*
* @see EnumerableConvention
* @see org.apache.calcite.interpreter.BindableConvention
*/
public class EnumerableInterpretable extends ConverterImpl
implements InterpretableRel {
protected EnumerableInterpretable(RelOptCluster cluster, RelNode input) {
super(cluster, ConventionTraitDef.INSTANCE,
cluster.traitSetOf(InterpretableConvention.INSTANCE), input);
}
@Override public EnumerableInterpretable copy(RelTraitSet traitSet,
List<RelNode> inputs) {
return new EnumerableInterpretable(getCluster(), sole(inputs));
}
@Override public Node implement(final InterpreterImplementor implementor) {
final Bindable bindable =
toBindable(implementor.internalParameters, implementor.spark,
(EnumerableRel) getInput(), EnumerableRel.Prefer.ARRAY);
final ArrayBindable arrayBindable = box(bindable);
final Enumerable<@Nullable Object[]> enumerable =
arrayBindable.bind(implementor.dataContext);
return new EnumerableNode(enumerable, implementor.compiler, this);
}
/**
* The cache storing Bindable objects, instantiated via dynamically generated Java classes.
*
* <p>It allows to re-use Bindable objects for queries appearing relatively
* often. It is used to avoid the cost of compiling and generating a new class
* and also instantiating the object.
*/
private static final Cache<String, Bindable> BINDABLE_CACHE =
CacheBuilder.newBuilder()
.concurrencyLevel(CalciteSystemProperty.BINDABLE_CACHE_CONCURRENCY_LEVEL.value())
.maximumSize(CalciteSystemProperty.BINDABLE_CACHE_MAX_SIZE.value())
.build();
public static Bindable toBindable(Map<String, Object> parameters,
CalcitePrepare.@Nullable SparkHandler spark, EnumerableRel rel,
EnumerableRel.Prefer prefer) {
EnumerableRelImplementor relImplementor =
new EnumerableRelImplementor(rel.getCluster().getRexBuilder(),
parameters);
final ClassDeclaration expr = relImplementor.implementRoot(rel, prefer);
String s = Expressions.toString(expr.memberDeclarations, "\n", false);
if (CalciteSystemProperty.DEBUG.value()) {
Util.debugCode(System.out, s);
}
Hook.JAVA_PLAN.run(s);
try {
if (spark != null && spark.enabled()) {
return spark.compile(expr, s);
} else {
return getBindable(expr, s, rel.getRowType().getFieldCount());
}
} catch (Exception e) {
throw Helper.INSTANCE.wrap("Error while compiling generated Java code:\n"
+ s, e);
}
}
static Bindable getBindable(ClassDeclaration expr, String classBody, int fieldCount)
throws CompileException, ExecutionException, ClassNotFoundException,
InvocationTargetException, InstantiationException, IllegalAccessException {
ICompilerFactory compilerFactory;
ClassLoader classLoader =
requireNonNull(EnumerableInterpretable.class.getClassLoader(),
"classLoader");
try {
compilerFactory = CompilerFactoryFactory.getDefaultCompilerFactory(classLoader);
} catch (Exception e) {
throw new IllegalStateException(
"Unable to instantiate java compiler", e);
}
final ISimpleCompiler compiler = compilerFactory.newSimpleCompiler();
compiler.setParentClassLoader(classLoader);
final String s = "public final class " + expr.name + " implements "
+ (fieldCount == 1
? Bindable.class.getCanonicalName() + ", " + Typed.class.getCanonicalName()
: ArrayBindable.class.getCanonicalName())
+ " {\n"
+ classBody
+ "\n"
+ "}";
if (CalciteSystemProperty.DEBUG.value()) {
// Add line numbers to the generated janino class
compiler.setDebuggingInformation(true, true, true);
}
if (CalciteSystemProperty.BINDABLE_CACHE_MAX_SIZE.value() != 0) {
StaticFieldDetector detector = new StaticFieldDetector();
expr.accept(detector);
if (!detector.containsStaticField) {
return BINDABLE_CACHE.get(classBody, () -> compileToBindable(expr.name, s, compiler));
}
}
return compileToBindable(expr.name, s, compiler);
}
private static Bindable<?> compileToBindable(String className, String s, ISimpleCompiler compiler)
throws CompileException, ClassNotFoundException, InvocationTargetException,
InstantiationException, IllegalAccessException {
compiler.cook(s);
return (Bindable<?>) compiler.getClassLoader()
.loadClass(className)
.getDeclaredConstructors()[0]
.newInstance();
}
/**
* A visitor detecting if the Java AST contains static fields.
*/
static class StaticFieldDetector extends VisitorImpl<Void> {
boolean containsStaticField = false;
@Override public Void visit(final FieldDeclaration fieldDeclaration) {
containsStaticField |= (fieldDeclaration.modifier & Modifier.STATIC) != 0;
return containsStaticField ? null : super.visit(fieldDeclaration);
}
}
/** Converts a bindable over scalar values into an array bindable, with each
* row as an array of 1 element. */
static ArrayBindable box(final Bindable bindable) {
if (bindable instanceof ArrayBindable) {
return (ArrayBindable) bindable;
}
return new ArrayBindable() {
@Override public Class<Object[]> getElementType() {
return Object[].class;
}
@Override public Enumerable<@Nullable Object[]> bind(DataContext dataContext) {
final Enumerable<?> enumerable = bindable.bind(dataContext);
return new AbstractEnumerable<@Nullable Object[]>() {
@Override public Enumerator<@Nullable Object[]> enumerator() {
final Enumerator<?> enumerator = enumerable.enumerator();
return new Enumerator<@Nullable Object[]>() {
@Override public @Nullable Object[] current() {
return new Object[] {enumerator.current()};
}
@Override public boolean moveNext() {
return enumerator.moveNext();
}
@Override public void reset() {
enumerator.reset();
}
@Override public void close() {
enumerator.close();
}
};
}
};
}
};
}
/** Interpreter node that reads from an {@link Enumerable}.
*
* <p>From the interpreter's perspective, it is a leaf node. */
private static class EnumerableNode implements Node {
private final Enumerable<@Nullable Object[]> enumerable;
private final Sink sink;
EnumerableNode(Enumerable<@Nullable Object[]> enumerable, Compiler compiler,
EnumerableInterpretable rel) {
this.enumerable = enumerable;
this.sink = compiler.sink(rel);
}
@Override public void run() throws InterruptedException {
final Enumerator<@Nullable Object[]> enumerator = enumerable.enumerator();
while (enumerator.moveNext()) {
@Nullable Object[] values = enumerator.current();
sink.send(Row.of(values));
}
}
}
}