RealAverageAggregation.java
/*
* Licensed 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 com.facebook.presto.operator.aggregation;
import com.facebook.presto.bytecode.DynamicClassLoader;
import com.facebook.presto.common.block.BlockBuilder;
import com.facebook.presto.common.type.StandardTypes;
import com.facebook.presto.common.type.Type;
import com.facebook.presto.metadata.BoundVariables;
import com.facebook.presto.metadata.FunctionAndTypeManager;
import com.facebook.presto.metadata.SqlAggregationFunction;
import com.facebook.presto.operator.aggregation.state.DoubleState;
import com.facebook.presto.operator.aggregation.state.LongState;
import com.facebook.presto.operator.aggregation.state.StateCompiler;
import com.facebook.presto.spi.function.AccumulatorState;
import com.facebook.presto.spi.function.AccumulatorStateSerializer;
import com.facebook.presto.spi.function.aggregation.Accumulator;
import com.facebook.presto.spi.function.aggregation.AggregationMetadata;
import com.facebook.presto.spi.function.aggregation.AggregationMetadata.AccumulatorStateDescriptor;
import com.facebook.presto.spi.function.aggregation.GroupedAccumulator;
import com.google.common.collect.ImmutableList;
import java.lang.invoke.MethodHandle;
import java.util.List;
import static com.facebook.presto.common.type.RealType.REAL;
import static com.facebook.presto.common.type.TypeSignature.parseTypeSignature;
import static com.facebook.presto.operator.aggregation.AggregationUtils.generateAggregationName;
import static com.facebook.presto.spi.function.aggregation.AggregationMetadata.ParameterMetadata;
import static com.facebook.presto.spi.function.aggregation.AggregationMetadata.ParameterMetadata.ParameterType.BLOCK_INDEX;
import static com.facebook.presto.spi.function.aggregation.AggregationMetadata.ParameterMetadata.ParameterType.BLOCK_INPUT_CHANNEL;
import static com.facebook.presto.spi.function.aggregation.AggregationMetadata.ParameterMetadata.ParameterType.INPUT_CHANNEL;
import static com.facebook.presto.spi.function.aggregation.AggregationMetadata.ParameterMetadata.ParameterType.STATE;
import static com.facebook.presto.util.Reflection.methodHandle;
import static java.lang.Float.floatToIntBits;
import static java.lang.Float.intBitsToFloat;
public class RealAverageAggregation
extends SqlAggregationFunction
{
public static final RealAverageAggregation REAL_AVERAGE_AGGREGATION = new RealAverageAggregation();
private static final String NAME = "avg";
private static final MethodHandle INPUT_FUNCTION = methodHandle(RealAverageAggregation.class, "input", DoubleState.class, LongState.class, long.class);
private static final MethodHandle COMBINE_FUNCTION = methodHandle(RealAverageAggregation.class, "combine", DoubleState.class, LongState.class, DoubleState.class, LongState.class);
private static final MethodHandle OUTPUT_FUNCTION = methodHandle(RealAverageAggregation.class, "output", DoubleState.class, LongState.class, BlockBuilder.class);
protected RealAverageAggregation()
{
super(NAME,
ImmutableList.of(),
ImmutableList.of(),
parseTypeSignature(StandardTypes.REAL),
ImmutableList.of(parseTypeSignature(StandardTypes.REAL)));
}
@Override
public String getDescription()
{
return "Returns the average value of the argument";
}
@Override
public BuiltInAggregationFunctionImplementation specialize(BoundVariables boundVariables, int arity, FunctionAndTypeManager functionAndTypeManager)
{
DynamicClassLoader classLoader = new DynamicClassLoader(AverageAggregations.class.getClassLoader());
Class<? extends AccumulatorState> longStateInterface = LongState.class;
Class<? extends AccumulatorState> doubleStateInterface = DoubleState.class;
AccumulatorStateSerializer<?> longStateSerializer = StateCompiler.generateStateSerializer(longStateInterface, classLoader);
AccumulatorStateSerializer<?> doubleStateSerializer = StateCompiler.generateStateSerializer(doubleStateInterface, classLoader);
AggregationMetadata metadata = new AggregationMetadata(
generateAggregationName(NAME, parseTypeSignature(StandardTypes.REAL), ImmutableList.of(parseTypeSignature(StandardTypes.REAL))),
ImmutableList.of(new ParameterMetadata(STATE), new ParameterMetadata(STATE), new ParameterMetadata(INPUT_CHANNEL, REAL)),
INPUT_FUNCTION,
COMBINE_FUNCTION,
OUTPUT_FUNCTION,
ImmutableList.of(
new AccumulatorStateDescriptor(
doubleStateInterface,
doubleStateSerializer,
StateCompiler.generateStateFactory(doubleStateInterface, classLoader)),
new AccumulatorStateDescriptor(
longStateInterface,
longStateSerializer,
StateCompiler.generateStateFactory(longStateInterface, classLoader))),
REAL);
Class<? extends Accumulator> accumulatorClass = AccumulatorCompiler.generateAccumulatorClass(
Accumulator.class,
metadata,
classLoader);
Class<? extends GroupedAccumulator> groupedAccumulatorClass = AccumulatorCompiler.generateAccumulatorClass(
GroupedAccumulator.class,
metadata,
classLoader);
return new BuiltInAggregationFunctionImplementation(
NAME,
ImmutableList.of(REAL),
ImmutableList.of(
doubleStateSerializer.getSerializedType(),
longStateSerializer.getSerializedType()),
REAL,
true,
false,
metadata,
accumulatorClass,
groupedAccumulatorClass);
}
private static List<ParameterMetadata> createInputParameterMetadata(Type value)
{
return ImmutableList.of(new ParameterMetadata(STATE), new ParameterMetadata(BLOCK_INPUT_CHANNEL, value), new ParameterMetadata(BLOCK_INDEX));
}
public static void input(DoubleState sum, LongState count, long value)
{
count.setLong(count.getLong() + 1);
sum.setDouble(sum.getDouble() + intBitsToFloat((int) value));
}
public static void combine(DoubleState sum, LongState count, DoubleState otherSum, LongState otherCount)
{
count.setLong(count.getLong() + otherCount.getLong());
sum.setDouble(sum.getDouble() + otherSum.getDouble());
}
public static void output(DoubleState sum, LongState count, BlockBuilder out)
{
if (count.getLong() == 0) {
out.appendNull();
}
else {
REAL.writeLong(out, floatToIntBits((float) (sum.getDouble() / count.getLong())));
}
}
}