/* * Copyright (c) 2008-2017, Hazelcast, Inc. All Rights Reserved. * * 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.hazelcast.mapreduce.aggregation.impl; import com.hazelcast.mapreduce.Collator; import com.hazelcast.mapreduce.Combiner; import com.hazelcast.mapreduce.CombinerFactory; import com.hazelcast.mapreduce.Mapper; import com.hazelcast.mapreduce.Reducer; import com.hazelcast.mapreduce.ReducerFactory; import com.hazelcast.mapreduce.aggregation.Supplier; import com.hazelcast.nio.serialization.BinaryInterface; import java.math.BigInteger; import java.util.Map; /** * The predefined average aggregation for values of type {@link java.math.BigInteger}. * * @param <Key> the input key type * @param <Value> the input value type */ public class BigIntegerAvgAggregation<Key, Value> implements AggType<Key, Value, Key, BigInteger, AvgTuple<Long, BigInteger>, AvgTuple<Long, BigInteger>, BigInteger> { @Override public Collator<Map.Entry<Key, AvgTuple<Long, BigInteger>>, BigInteger> getCollator() { return new Collator<Map.Entry<Key, AvgTuple<Long, BigInteger>>, BigInteger>() { @Override public BigInteger collate(Iterable<Map.Entry<Key, AvgTuple<Long, BigInteger>>> values) { long count = 0; BigInteger amount = BigInteger.ZERO; for (Map.Entry<Key, AvgTuple<Long, BigInteger>> entry : values) { AvgTuple<Long, BigInteger> tuple = entry.getValue(); count += tuple.getFirst(); amount = amount.add(tuple.getSecond()); } return amount.divide(BigInteger.valueOf(count)); } }; } @Override public Mapper<Key, Value, Key, BigInteger> getMapper(Supplier<Key, Value, BigInteger> supplier) { return new SupplierConsumingMapper<Key, Value, BigInteger>(supplier); } @Override public CombinerFactory<Key, BigInteger, AvgTuple<Long, BigInteger>> getCombinerFactory() { return new BigIntegerAvgCombinerFactory<Key>(); } @Override public ReducerFactory<Key, AvgTuple<Long, BigInteger>, AvgTuple<Long, BigInteger>> getReducerFactory() { return new BigIntegerAvgReducerFactory<Key>(); } /** * Average CombinerFactory for type {@link java.math.BigInteger} * * @param <Key> the key type */ @BinaryInterface static final class BigIntegerAvgCombinerFactory<Key> extends AbstractAggregationCombinerFactory<Key, BigInteger, AvgTuple<Long, BigInteger>> { @Override public Combiner<BigInteger, AvgTuple<Long, BigInteger>> newCombiner(Key key) { return new BigIntegerAvgCombiner(); } @Override public int getId() { return AggregationsDataSerializerHook.BIG_INTEGER_AVG_COMBINER_FACTORY; } } /** * Average ReducerFactory for type {@link java.math.BigInteger} * * @param <Key> the key type */ @BinaryInterface static final class BigIntegerAvgReducerFactory<Key> extends AbstractAggregationReducerFactory<Key, AvgTuple<Long, BigInteger>, AvgTuple<Long, BigInteger>> { @Override public Reducer<AvgTuple<Long, BigInteger>, AvgTuple<Long, BigInteger>> newReducer(Key key) { return new BigIntegerAvgReducer(); } @Override public int getId() { return AggregationsDataSerializerHook.BIG_INTEGER_AVG_REDUCER_FACTORY; } } /** * Average Combiner for type {@link java.math.BigInteger} */ private static final class BigIntegerAvgCombiner extends Combiner<BigInteger, AvgTuple<Long, BigInteger>> { private long count; private BigInteger amount = BigInteger.ZERO; @Override public void combine(BigInteger value) { count++; amount = amount.add(value); } @Override public AvgTuple<Long, BigInteger> finalizeChunk() { return new AvgTuple<Long, BigInteger>(count, amount); } @Override public void reset() { count = 0; amount = BigInteger.ZERO; } } /** * Average Reducer for type {@link java.math.BigInteger} */ private static final class BigIntegerAvgReducer extends Reducer<AvgTuple<Long, BigInteger>, AvgTuple<Long, BigInteger>> { private long count; private BigInteger amount = BigInteger.ZERO; @Override public void reduce(AvgTuple<Long, BigInteger> value) { count += value.getFirst(); amount = amount.add(value.getSecond()); } @Override public AvgTuple<Long, BigInteger> finalizeReduce() { return new AvgTuple<Long, BigInteger>(count, amount); } } }