org.apache.flink.table.functions.aggfunctions.MaxAggFunction.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.functions.aggfunctions
import java.math.BigDecimal
import java.lang.{Iterable => JIterable}
import java.sql.{Date, Time, Timestamp}
import org.apache.flink.api.common.typeinfo.{BasicTypeInfo, TypeInformation}
import org.apache.flink.api.java.tuple.{Tuple2 => JTuple2}
import org.apache.flink.api.java.typeutils.TupleTypeInfo
import org.apache.flink.table.api.Types
import org.apache.flink.table.functions.aggfunctions.Ordering._
import org.apache.flink.table.functions.AggregateFunction
/** The initial accumulator for Max aggregate function */
class MaxAccumulator[T] extends JTuple2[T, Boolean]
/**
* Base class for built-in Max aggregate function
*
* @tparam T the type for the aggregation result
*/
abstract class MaxAggFunction[T](implicit ord: Ordering[T])
extends AggregateFunction[T, MaxAccumulator[T]] {
override def createAccumulator(): MaxAccumulator[T] = {
val acc = new MaxAccumulator[T]
acc.f0 = getInitValue
acc.f1 = false
acc
}
def accumulate(acc: MaxAccumulator[T], value: Any): Unit = {
if (value != null) {
val v = value.asInstanceOf[T]
if (!acc.f1 || ord.compare(acc.f0, v) < 0) {
acc.f0 = v
acc.f1 = true
}
}
}
override def getValue(acc: MaxAccumulator[T]): T = {
if (acc.f1) {
acc.f0
} else {
null.asInstanceOf[T]
}
}
def merge(acc: MaxAccumulator[T], its: JIterable[MaxAccumulator[T]]): Unit = {
val iter = its.iterator()
while (iter.hasNext) {
val a = iter.next()
if (a.f1) {
accumulate(acc, a.f0)
}
}
}
def resetAccumulator(acc: MaxAccumulator[T]): Unit = {
acc.f0 = getInitValue
acc.f1 = false
}
override def getAccumulatorType: TypeInformation[MaxAccumulator[T]] = {
new TupleTypeInfo(
classOf[MaxAccumulator[T]],
getValueTypeInfo,
BasicTypeInfo.BOOLEAN_TYPE_INFO)
}
def getInitValue: T
def getValueTypeInfo: TypeInformation[_]
}
/**
* Built-in Byte Max aggregate function
*/
class ByteMaxAggFunction extends MaxAggFunction[Byte] {
override def getInitValue: Byte = 0.toByte
override def getValueTypeInfo = BasicTypeInfo.BYTE_TYPE_INFO
}
/**
* Built-in Short Max aggregate function
*/
class ShortMaxAggFunction extends MaxAggFunction[Short] {
override def getInitValue: Short = 0.toShort
override def getValueTypeInfo = BasicTypeInfo.SHORT_TYPE_INFO
}
/**
* Built-in Int Max aggregate function
*/
class IntMaxAggFunction extends MaxAggFunction[Int] {
override def getInitValue: Int = 0
override def getValueTypeInfo = BasicTypeInfo.INT_TYPE_INFO
}
/**
* Built-in Long Max aggregate function
*/
class LongMaxAggFunction extends MaxAggFunction[Long] {
override def getInitValue: Long = 0L
override def getValueTypeInfo = BasicTypeInfo.LONG_TYPE_INFO
}
/**
* Built-in Float Max aggregate function
*/
class FloatMaxAggFunction extends MaxAggFunction[Float] {
override def getInitValue: Float = 0.0f
override def getValueTypeInfo = BasicTypeInfo.FLOAT_TYPE_INFO
}
/**
* Built-in Double Max aggregate function
*/
class DoubleMaxAggFunction extends MaxAggFunction[Double] {
override def getInitValue: Double = 0.0d
override def getValueTypeInfo = BasicTypeInfo.DOUBLE_TYPE_INFO
}
/**
* Built-in Boolean Max aggregate function
*/
class BooleanMaxAggFunction extends MaxAggFunction[Boolean] {
override def getInitValue = false
override def getValueTypeInfo = BasicTypeInfo.BOOLEAN_TYPE_INFO
}
/**
* Built-in Big Decimal Max aggregate function
*/
class DecimalMaxAggFunction extends MaxAggFunction[BigDecimal] {
override def getInitValue = BigDecimal.ZERO
override def getValueTypeInfo = BasicTypeInfo.BIG_DEC_TYPE_INFO
}
/**
* Built-in String Max aggregate function
*/
class StringMaxAggFunction extends MaxAggFunction[String] {
override def getInitValue = ""
override def getValueTypeInfo = BasicTypeInfo.STRING_TYPE_INFO
}
/**
* Built-in Timestamp Max aggregate function
*/
class TimestampMaxAggFunction extends MaxAggFunction[Timestamp] {
override def getInitValue: Timestamp = new Timestamp(0)
override def getValueTypeInfo = Types.SQL_TIMESTAMP
}
/**
* Built-in Date Max aggregate function
*/
class DateMaxAggFunction extends MaxAggFunction[Date] {
override def getInitValue: Date = new Date(0)
override def getValueTypeInfo = Types.SQL_DATE
}
/**
* Built-in Time Max aggregate function
*/
class TimeMaxAggFunction extends MaxAggFunction[Time] {
override def getInitValue: Time = new Time(0)
override def getValueTypeInfo = Types.SQL_TIME
}