blob: 915da7aaf11f063c358a9fa4bf485cf915c3a8bb [file] [log] [blame]
/*
* 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 Min aggregate function */
class MinAccumulator[T] extends JTuple2[T, Boolean]
/**
* Base class for built-in Min aggregate function
*
* @tparam T the type for the aggregation result
*/
abstract class MinAggFunction[T](implicit ord: Ordering[T])
extends AggregateFunction[T, MinAccumulator[T]] {
override def createAccumulator(): MinAccumulator[T] = {
val acc = new MinAccumulator[T]
acc.f0 = getInitValue
acc.f1 = false
acc
}
def accumulate(acc: MinAccumulator[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: MinAccumulator[T]): T = {
if (acc.f1) {
acc.f0
} else {
null.asInstanceOf[T]
}
}
def merge(acc: MinAccumulator[T], its: JIterable[MinAccumulator[T]]): Unit = {
val iter = its.iterator()
while (iter.hasNext) {
val a = iter.next()
if (a.f1) {
accumulate(acc, a.f0)
}
}
}
def resetAccumulator(acc: MinAccumulator[T]): Unit = {
acc.f0 = getInitValue
acc.f1 = false
}
override def getAccumulatorType: TypeInformation[MinAccumulator[T]] = {
new TupleTypeInfo(
classOf[MinAccumulator[T]],
getValueTypeInfo,
BasicTypeInfo.BOOLEAN_TYPE_INFO)
}
def getInitValue: T
def getValueTypeInfo: TypeInformation[_]
}
/**
* Built-in Byte Min aggregate function
*/
class ByteMinAggFunction extends MinAggFunction[Byte] {
override def getInitValue: Byte = 0.toByte
override def getValueTypeInfo = BasicTypeInfo.BYTE_TYPE_INFO
}
/**
* Built-in Short Min aggregate function
*/
class ShortMinAggFunction extends MinAggFunction[Short] {
override def getInitValue: Short = 0.toShort
override def getValueTypeInfo = BasicTypeInfo.SHORT_TYPE_INFO
}
/**
* Built-in Int Min aggregate function
*/
class IntMinAggFunction extends MinAggFunction[Int] {
override def getInitValue: Int = 0
override def getValueTypeInfo = BasicTypeInfo.INT_TYPE_INFO
}
/**
* Built-in Long Min aggregate function
*/
class LongMinAggFunction extends MinAggFunction[Long] {
override def getInitValue: Long = 0L
override def getValueTypeInfo = BasicTypeInfo.LONG_TYPE_INFO
}
/**
* Built-in Float Min aggregate function
*/
class FloatMinAggFunction extends MinAggFunction[Float] {
override def getInitValue: Float = 0.0f
override def getValueTypeInfo = BasicTypeInfo.FLOAT_TYPE_INFO
}
/**
* Built-in Double Min aggregate function
*/
class DoubleMinAggFunction extends MinAggFunction[Double] {
override def getInitValue: Double = 0.0d
override def getValueTypeInfo = BasicTypeInfo.DOUBLE_TYPE_INFO
}
/**
* Built-in Boolean Min aggregate function
*/
class BooleanMinAggFunction extends MinAggFunction[Boolean] {
override def getInitValue: Boolean = false
override def getValueTypeInfo = BasicTypeInfo.BOOLEAN_TYPE_INFO
}
/**
* Built-in Big Decimal Min aggregate function
*/
class DecimalMinAggFunction extends MinAggFunction[BigDecimal] {
override def getInitValue: BigDecimal = BigDecimal.ZERO
override def getValueTypeInfo = BasicTypeInfo.BIG_DEC_TYPE_INFO
}
/**
* Built-in String Min aggregate function
*/
class StringMinAggFunction extends MinAggFunction[String] {
override def getInitValue = ""
override def getValueTypeInfo = BasicTypeInfo.STRING_TYPE_INFO
}
/**
* Built-in Timestamp Min aggregate function
*/
class TimestampMinAggFunction extends MinAggFunction[Timestamp] {
override def getInitValue: Timestamp = new Timestamp(0)
override def getValueTypeInfo = Types.SQL_TIMESTAMP
}
/**
* Built-in Date Min aggregate function
*/
class DateMinAggFunction extends MinAggFunction[Date] {
override def getInitValue: Date = new Date(0)
override def getValueTypeInfo = Types.SQL_DATE
}
/**
* Built-in Time Min aggregate function
*/
class TimeMinAggFunction extends MinAggFunction[Time] {
override def getInitValue: Time = new Time(0)
override def getValueTypeInfo = Types.SQL_TIME
}