Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* 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.linq4j.tree;
import org.apache.calcite.linq4j.function.Function;
import org.apache.calcite.linq4j.function.Functions;
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Method;
import java.lang.reflect.Proxy;
import java.lang.reflect.Type;
import java.lang.reflect.TypeVariable;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Objects;
/**
* Represents a strongly typed lambda expression as a data structure in the form
* of an expression tree. This class cannot be inherited.
*
* @param Function type
*/
public final class FunctionExpression>
extends LambdaExpression {
public final F function;
public final BlockStatement body;
public final List parameterList;
private F dynamicFunction;
/**
* Cache the hash code for the expression
*/
private int hash;
private FunctionExpression(Class type, F function, BlockStatement body,
List parameterList) {
super(ExpressionType.Lambda, type);
assert type != null : "type should not be null";
assert function != null || body != null
: "both function and body should not be null";
assert parameterList != null : "parameterList should not be null";
this.function = function;
this.body = body;
this.parameterList = parameterList;
}
public FunctionExpression(F function) {
this((Class) function.getClass(), function, null,
Collections.emptyList());
}
public FunctionExpression(Class type, BlockStatement body,
List parameters) {
this(type, null, body, parameters);
}
@Override public Expression accept(Shuttle shuttle) {
shuttle = shuttle.preVisit(this);
BlockStatement body = this.body.accept(shuttle);
return shuttle.visit(this, body);
}
public R accept(Visitor visitor) {
return visitor.visit(this);
}
public Invokable compile() {
return new Invokable() {
public Object dynamicInvoke(Object... args) {
final Evaluator evaluator = new Evaluator();
for (int i = 0; i < args.length; i++) {
evaluator.push(parameterList.get(i), args[i]);
}
return evaluator.evaluate(body);
}
};
}
public F getFunction() {
if (function != null) {
return function;
}
if (dynamicFunction == null) {
final Invokable x = compile();
//noinspection unchecked
dynamicFunction = (F) Proxy.newProxyInstance(getClass().getClassLoader(),
new Class[]{Types.toClass(type)},
new InvocationHandler() {
public Object invoke(Object proxy, Method method, Object[] args)
throws Throwable {
return x.dynamicInvoke(args);
}
});
}
return dynamicFunction;
}
@Override void accept(ExpressionWriter writer, int lprec, int rprec) {
// "new Function1() {
// public Result apply(T1 p1, ...) {
//
// }
// // bridge method
// public Object apply(Object p1, ...) {
// return apply((T1) p1, ...);
// }
// }
//
// if any arguments are primitive there is an extra bridge method:
//
// new Function1() {
// public double apply(double p1, int p2) {
//
// }
// // box bridge method
// public Double apply(Double p1, Integer p2) {
// return apply(p1.doubleValue(), p2.intValue());
// }
// // bridge method
// public Object apply(Object p1, Object p2) {
// return apply((Double) p1, (Integer) p2);
// }
List params = new ArrayList();
List bridgeParams = new ArrayList();
List bridgeArgs = new ArrayList();
List boxBridgeParams = new ArrayList();
List boxBridgeArgs = new ArrayList();
for (ParameterExpression parameterExpression : parameterList) {
final Type parameterType = parameterExpression.getType();
final Type parameterBoxType = Types.box(parameterType);
final String parameterBoxTypeName = Types.className(parameterBoxType);
params.add(parameterExpression.declString());
bridgeParams.add(parameterExpression.declString(Object.class));
bridgeArgs.add("(" + parameterBoxTypeName + ") "
+ parameterExpression.name);
boxBridgeParams.add(parameterExpression.declString(parameterBoxType));
boxBridgeArgs.add(parameterExpression.name
+ (Primitive.is(parameterType)
? "." + Primitive.of(parameterType).primitiveName + "Value()"
: ""));
}
Type bridgeResultType = Functions.FUNCTION_RESULT_TYPES.get(this.type);
if (bridgeResultType == null) {
bridgeResultType = body.getType();
}
Type resultType2 = bridgeResultType;
if (bridgeResultType == Object.class
&& !params.equals(bridgeParams)
&& !(body.getType() instanceof TypeVariable)) {
resultType2 = body.getType();
}
String methodName = getAbstractMethodName();
writer.append("new ")
.append(type)
.append("()")
.begin(" {\n")
.append("public ")
.append(Types.className(resultType2))
.list(" " + methodName + "(",
", ", ") ", params)
.append(Blocks.toFunctionBlock(body));
// Generate an intermediate bridge method if at least one parameter is
// primitive.
final String bridgeResultTypeName =
isAbstractMethodPrimitive()
? Types.className(bridgeResultType)
: Types.boxClassName(bridgeResultType);
if (!boxBridgeParams.equals(params)) {
writer
.append("public ")
.append(bridgeResultTypeName)
.list(" " + methodName + "(", ", ", ") ", boxBridgeParams)
.begin("{\n")
.list("return " + methodName + "(\n", ",\n", ");\n", boxBridgeArgs)
.end("}\n");
}
// Generate a bridge method. Argument types are looser (as if every
// type parameter is set to 'Object').
//
// Skip the bridge method if there are no arguments. It would have the
// same overload as the regular method.
if (!bridgeParams.equals(params)) {
writer
.append("public ")
.append(bridgeResultTypeName)
.list(" " + methodName + "(", ", ", ") ", bridgeParams)
.begin("{\n")
.list("return " + methodName + "(\n", ",\n", ");\n", bridgeArgs)
.end("}\n");
}
writer.end("}\n");
}
private boolean isAbstractMethodPrimitive() {
Method method = getAbstractMethod();
return method != null && Primitive.is(method.getReturnType());
}
private String getAbstractMethodName() {
final Method abstractMethod = getAbstractMethod();
assert abstractMethod != null;
return abstractMethod.getName();
}
private Method getAbstractMethod() {
if (type instanceof Class
&& ((Class) type).isInterface()
&& ((Class) type).getDeclaredMethods().length == 1) {
return ((Class) type).getDeclaredMethods()[0];
}
return null;
}
@Override public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
if (!super.equals(o)) {
return false;
}
FunctionExpression that = (FunctionExpression) o;
if (body != null ? !body.equals(that.body) : that.body != null) {
return false;
}
if (function != null ? !function.equals(that.function) : that.function
!= null) {
return false;
}
if (!parameterList.equals(that.parameterList)) {
return false;
}
return true;
}
@Override public int hashCode() {
int result = hash;
if (result == 0) {
result = Objects.hash(nodeType, type, function, body, parameterList);
if (result == 0) {
result = 1;
}
hash = result;
}
return result;
}
/** Function that can be invoked with a variable number of arguments. */
public interface Invokable {
Object dynamicInvoke(Object... args);
}
}
// End FunctionExpression.java