org.apache.flink.table.codegen.calls.TableFunctionCallGen.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flink-table-planner_2.11 Show documentation
Show all versions of flink-table-planner_2.11 Show documentation
This module bridges Table/SQL API and runtime. It contains
all resources that are required during pre-flight and runtime
phase.
The newest version!
/*
* 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.flink.table.codegen.calls
import org.apache.flink.api.common.typeinfo.TypeInformation
import org.apache.flink.table.codegen.CodeGenUtils._
import org.apache.flink.table.codegen.GeneratedExpression.NEVER_NULL
import org.apache.flink.table.codegen.{CodeGenException, CodeGenerator, GeneratedExpression}
import org.apache.flink.table.functions.TableFunction
import org.apache.flink.table.functions.utils.UserDefinedFunctionUtils._
import org.apache.flink.table.typeutils.TypeCheckUtils
import scala.collection.mutable
/**
* Generates a call to user-defined [[TableFunction]].
*
* @param tableFunction user-defined [[TableFunction]] that might be overloaded
* @param signature actual signature with which the function is called
* @param returnType actual return type required by the surrounding
*/
class TableFunctionCallGen(
tableFunction: TableFunction[_],
signature: Seq[TypeInformation[_]],
returnType: TypeInformation[_])
extends CallGenerator {
override def generate(
codeGenerator: CodeGenerator,
operands: Seq[GeneratedExpression])
: GeneratedExpression = {
// determine function method
val matchingSignature = getEvalMethodSignature(tableFunction, signature)
.getOrElse(throw new CodeGenException("No matching signature found."))
// get the expanded parameter types
var paramClasses = new mutable.ArrayBuffer[Class[_]]
for (i <- operands.indices) {
if (i < matchingSignature.length - 1) {
paramClasses += matchingSignature(i)
} else if (matchingSignature.last.isArray) {
// last argument is an array type
paramClasses += matchingSignature.last.getComponentType
} else {
// last argument is not an array type
paramClasses += matchingSignature.last
}
}
// convert parameters for function (output boxing)
val parameters = paramClasses.zip(operands).map { case (paramClass, operandExpr) =>
if (paramClass.isPrimitive) {
operandExpr
} else if (TypeCheckUtils.isPrimitiveWrapper(paramClass)
&& TypeCheckUtils.isTemporal(operandExpr.resultType)) {
// we use primitives to represent temporal types internally, so no casting needed here
val exprOrNull: String = if (codeGenerator.nullCheck) {
s"${operandExpr.nullTerm} ? null : " +
s"(${paramClass.getCanonicalName}) ${operandExpr.resultTerm}"
} else {
operandExpr.resultTerm
}
operandExpr.copy(resultTerm = exprOrNull)
} else {
val boxedTypeTerm = boxedTypeTermForTypeInfo(operandExpr.resultType)
val boxedExpr = codeGenerator.generateOutputFieldBoxing(operandExpr)
val exprOrNull: String = if (codeGenerator.nullCheck) {
s"${boxedExpr.nullTerm} ? null : ($boxedTypeTerm) ${boxedExpr.resultTerm}"
} else {
boxedExpr.resultTerm
}
boxedExpr.copy(resultTerm = exprOrNull)
}
}
// generate function call
val functionReference = codeGenerator.addReusableFunction(tableFunction)
val functionCallCode =
s"""
|${parameters.map(_.code).mkString("\n")}
|$functionReference.eval(${parameters.map(_.resultTerm).mkString(", ")});
|""".stripMargin
// has no result
GeneratedExpression(
functionReference,
NEVER_NULL,
functionCallCode,
returnType)
}
}