com.hazelcast.mapreduce.aggregation.impl.LongMaxAggregation Maven / Gradle / Ivy
/*
* Copyright (c) 2008-2016, 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 java.util.Map;
/**
* The predefined maximum aggregation for values of type long.
*
* @param the input key type
* @param the input value type
*/
public class LongMaxAggregation
implements AggType {
@Override
public Collator, Long> getCollator() {
return new Collator, Long>() {
@Override
public Long collate(Iterable> values) {
long max = Long.MIN_VALUE;
for (Map.Entry entry : values) {
long value = entry.getValue();
if (value > max) {
max = value;
}
}
return max;
}
};
}
@Override
public Mapper getMapper(Supplier supplier) {
return new SupplierConsumingMapper(supplier);
}
@Override
public CombinerFactory getCombinerFactory() {
return new LongMaxCombinerFactory();
}
@Override
public ReducerFactory getReducerFactory() {
return new LongMaxReducerFactory();
}
/**
* Maximum CombinerFactory for type long
*
* @param the key type
*/
static final class LongMaxCombinerFactory
extends AbstractAggregationCombinerFactory {
@Override
public Combiner newCombiner(Key key) {
return new LongMaxCombiner();
}
@Override
public int getId() {
return AggregationsDataSerializerHook.LONG_MAX_COMBINER_FACTORY;
}
}
/**
* Maximum ReducerFactory for type long
*
* @param the key type
*/
static final class LongMaxReducerFactory
extends AbstractAggregationReducerFactory {
@Override
public Reducer newReducer(Key key) {
return new LongMaxReducer();
}
@Override
public int getId() {
return AggregationsDataSerializerHook.LONG_MAX_REDUCER_FACTORY;
}
}
/**
* Maximum Combiner for type long
*/
private static final class LongMaxCombiner
extends Combiner {
private long chunkMax = Long.MIN_VALUE;
@Override
public void combine(Long value) {
if (value > chunkMax) {
chunkMax = value;
}
}
@Override
public Long finalizeChunk() {
long value = chunkMax;
chunkMax = Long.MIN_VALUE;
return value;
}
}
/**
* Maximum Reducer for type long
*/
private static final class LongMaxReducer
extends Reducer {
private long max = Long.MIN_VALUE;
@Override
public void reduce(Long value) {
if (value > max) {
max = value;
}
}
@Override
public Long finalizeReduce() {
return max;
}
}
}