com.hazelcast.aggregation.impl.BigDecimalAverageAggregator Maven / Gradle / Ivy
/*
* Copyright (c) 2008-2023, 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.aggregation.impl;
import com.hazelcast.aggregation.Aggregator;
import com.hazelcast.nio.ObjectDataInput;
import com.hazelcast.nio.ObjectDataOutput;
import com.hazelcast.nio.serialization.IdentifiedDataSerializable;
import java.io.IOException;
import java.math.BigDecimal;
import java.util.Objects;
public final class BigDecimalAverageAggregator extends AbstractAggregator
implements IdentifiedDataSerializable {
private BigDecimal sum = BigDecimal.ZERO;
private long count;
public BigDecimalAverageAggregator() {
super();
}
public BigDecimalAverageAggregator(String attributePath) {
super(attributePath);
}
@Override
protected void accumulateExtracted(I entry, BigDecimal value) {
count++;
sum = sum.add(value);
}
@Override
public void combine(Aggregator aggregator) {
BigDecimalAverageAggregator doubleAverageAggregator = (BigDecimalAverageAggregator) aggregator;
this.sum = this.sum.add(doubleAverageAggregator.sum);
this.count += doubleAverageAggregator.count;
}
@Override
public BigDecimal aggregate() {
if (count == 0) {
return null;
}
return sum.divide(
BigDecimal.valueOf(count));
}
@Override
public int getFactoryId() {
return AggregatorDataSerializerHook.F_ID;
}
@Override
public int getClassId() {
return AggregatorDataSerializerHook.BIG_DECIMAL_AVG;
}
@Override
public void writeData(ObjectDataOutput out) throws IOException {
out.writeString(attributePath);
out.writeObject(sum);
out.writeLong(count);
}
@Override
public void readData(ObjectDataInput in) throws IOException {
this.attributePath = in.readString();
this.sum = in.readObject();
this.count = in.readLong();
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
if (!super.equals(o)) {
return false;
}
BigDecimalAverageAggregator> that = (BigDecimalAverageAggregator>) o;
return count == that.count && Objects.equals(sum, that.sum);
}
@Override
public int hashCode() {
return Objects.hash(super.hashCode(), sum, count);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy