blob: 6c4c31eb3a537f31329d9bb7c597de546c9966db [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 com.datatorrent.common.util;
/**
* Utility class that gives aggregate information (i.e. min, max, avg, sum) with a set of numbers.
*
* @since 1.0.2
*/
public interface NumberAggregate
{
/**
* Gets the minimum of the given numbers.
*
* @return The min
*/
Number getMin();
/**
* Gets the maximum of the given numbers
*
* @return The max
*/
Number getMax();
/**
* Gets the sum of the given numbers
*
* @return The sum
*/
Number getSum();
/**
* Gets the average of the given numbers
*
* @return The avg
*/
Number getAvg();
/**
* Add a long to the number set
*
* @param num the number
*/
void addNumber(Number num);
/**
* This is the aggregate class for Long.
*/
class LongAggregate implements NumberAggregate
{
private int count = 0;
private long min = Long.MAX_VALUE;
private long max = Long.MIN_VALUE;
private long sum = 0;
private boolean ignoreSum = false;
private boolean ignoreAvg = false;
/**
* Creates a LongAggregate, with sum and average both valid.
*/
public LongAggregate()
{
}
/**
* Creates a LongAggregate
*
* @param ignoreSum whether or not sum is valid for the numbers.
* @param ignoreAvg whether or not average is valid for the numbers.
*/
public LongAggregate(boolean ignoreSum, boolean ignoreAvg)
{
this.ignoreSum = ignoreSum;
this.ignoreAvg = ignoreAvg;
}
@Override
public void addNumber(Number num)
{
long longVal = num.longValue();
if (min > longVal) {
min = longVal;
}
if (max < longVal) {
max = longVal;
}
sum += longVal;
count++;
}
@Override
public Number getMin()
{
return (count == 0) ? null : min;
}
@Override
public Number getMax()
{
return (count == 0) ? null : max;
}
@Override
public Number getAvg()
{
return (count == 0 || ignoreAvg) ? null : (sum / count);
}
@Override
public Number getSum()
{
return ignoreSum ? null : sum;
}
}
/**
* This is the aggregate class for Double.
*/
class DoubleAggregate implements NumberAggregate
{
private int count = 0;
private double min = Double.MAX_VALUE;
private double max = Double.MIN_VALUE;
private double sum = 0;
private boolean ignoreSum = false;
private boolean ignoreAvg = false;
/**
* Creates a DoubleAggregate, with sum and average both valid.
*/
public DoubleAggregate()
{
}
/**
* Creates a DoubleAggregate
*
* @param ignoreSum whether or not sum is valid for the numbers.
* @param ignoreAvg whether or not average is valid for the numbers.
*/
public DoubleAggregate(boolean ignoreSum, boolean ignoreAvg)
{
this.ignoreSum = ignoreSum;
this.ignoreAvg = ignoreAvg;
}
@Override
public void addNumber(Number num)
{
double doubleVal = num.doubleValue();
if (min > doubleVal) {
min = doubleVal;
}
if (max < doubleVal) {
max = doubleVal;
}
sum += doubleVal;
count++;
}
@Override
public Number getMin()
{
return (count == 0) ? null : min;
}
@Override
public Number getMax()
{
return (count == 0) ? null : max;
}
@Override
public Number getAvg()
{
return (count == 0 || ignoreAvg) ? null : (sum / count);
}
@Override
public Number getSum()
{
return ignoreSum ? null : sum;
}
}
}