All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.flink.table.plan.rules.physical.batch.BatchExecLogicalWindowAggregateRule.scala Maven / Gradle / Ivy

There is a newer version: 1.5.1
Show 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.plan.rules.physical.batch

import org.apache.flink.table.api.scala.{Session, Slide, Tumble}
import org.apache.flink.table.api.{TableException, WindowExpression}
import org.apache.flink.table.calcite.FlinkTypeFactory
import org.apache.flink.table.expressions.{Expression, Literal, ResolvedFieldReference, WindowReference}
import org.apache.flink.table.plan.rules.physical.LogicalWindowAggregateRule
import org.apache.flink.table.types.DataTypes
import org.apache.flink.table.validate.BasicOperatorTable

import org.apache.calcite.rel.`type`.RelDataType
import org.apache.calcite.rex._

import java.math.BigDecimal

class BatchExecLogicalWindowAggregateRule
  extends LogicalWindowAggregateRule("BatchExecLogicalWindowAggregateRule") {

  /** Returns the operand of the group window function. */
  override private[table] def getInAggregateGroupExpression(
    rexBuilder: RexBuilder,
    windowExpression: RexCall): RexNode = windowExpression.getOperands.get(0)

  /** Returns a zero literal of the correct type. */
  override private[table] def getOutAggregateGroupExpression(
    rexBuilder: RexBuilder,
    windowExpression: RexCall): RexNode = {

    val literalType = windowExpression.getOperands.get(0).getType
    rexBuilder.makeZeroLiteral(literalType)
  }

  override private[table] def translateWindowExpression(
    windowExpr: RexCall,
    rowType: RelDataType): WindowExpression = {

    def getOperandAsLong(call: RexCall, idx: Int): Long =
      call.getOperands.get(idx) match {
        case v: RexLiteral => v.getValue.asInstanceOf[BigDecimal].longValue()
        case _ => throw new TableException("Only constant window descriptors are supported")
      }

    def getFieldReference(operand: RexNode): Expression = {
      operand match {
        case ref: RexInputRef =>
          // resolve field name of window attribute
          val fieldName = rowType.getFieldList.get(ref.getIndex).getName
          val fieldType = rowType.getFieldList.get(ref.getIndex).getType
          ResolvedFieldReference(fieldName, FlinkTypeFactory.toInternalType(fieldType))
      }
    }

    val timeField = getFieldReference(windowExpr.getOperands.get(0))
    windowExpr.getOperator match {
      case BasicOperatorTable.TUMBLE =>
        val interval = getOperandAsLong(windowExpr, 1)
        val w = Tumble.over(Literal(interval, DataTypes.INTERVAL_MILLIS))
        w.on(timeField).as(WindowReference("w$", Some(timeField.resultType)))

      case BasicOperatorTable.HOP =>
        val (slide, size) = (getOperandAsLong(windowExpr, 1), getOperandAsLong(windowExpr, 2))
        val w = Slide
          .over(Literal(size, DataTypes.INTERVAL_MILLIS))
          .every(Literal(slide, DataTypes.INTERVAL_MILLIS))
        w.on(timeField).as(WindowReference("w$", Some(timeField.resultType)))

      case BasicOperatorTable.SESSION =>
        val gap = getOperandAsLong(windowExpr, 1)
        val w = Session.withGap(Literal(gap, DataTypes.INTERVAL_MILLIS))
        w.on(timeField).as(WindowReference("w$", Some(timeField.resultType)))
    }
  }
}

object BatchExecLogicalWindowAggregateRule {
  val INSTANCE = new BatchExecLogicalWindowAggregateRule
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy