Search in sources :

Example 1 with AnalogStatistics

use of com.serotonin.m2m2.view.stats.AnalogStatistics in project ma-modules-public by infiniteautomation.

the class IdPointValueStatisticsQuantizerJsonCallback method closePeriod.

/*
     * (non-Javadoc)
     * 
     * @see
     * com.serotonin.m2m2.web.mvc.rest.v1.statistics.ParentStatisticsQuantizerCallback#closePeriod(
     * java.util.Map, long)
     */
@Override
public void closePeriod(Map<Integer, StatisticsGenerator> periodStatsMap, long periodStartTime) {
    if (limiter.limited())
        return;
    try {
        // Write out the period start time
        this.jgen.writeStartObject();
        writeTimestamp(periodStartTime);
        this.jgen.writeStringField(ROLLUP, this.rollup.name());
        Iterator<Integer> it = periodStatsMap.keySet().iterator();
        while (it.hasNext()) {
            Integer id = it.next();
            StatisticsGenerator stats = periodStatsMap.get(id);
            DataPointVO vo = this.voMap.get(id);
            if (stats instanceof ValueChangeCounter) {
                ValueChangeCounter statisticsGenerator = (ValueChangeCounter) stats;
                switch(rollup) {
                    case ALL:
                        this.jgen.writeObjectFieldStart(vo.getXid());
                        if (vo.getPointLocator().getDataTypeId() == DataTypes.IMAGE)
                            this.writeImageValue(statisticsGenerator.getFirstValue(), statisticsGenerator.getFirstTime(), periodStartTime, vo, RollupEnum.FIRST.name());
                        else
                            this.writeDataValue(periodStartTime, statisticsGenerator.getFirstValue(), vo, RollupEnum.FIRST.name());
                        if (vo.getPointLocator().getDataTypeId() == DataTypes.IMAGE)
                            this.writeImageValue(statisticsGenerator.getLastValue(), statisticsGenerator.getLastTime(), periodStartTime, vo, RollupEnum.LAST.name());
                        else
                            this.writeDataValue(periodStartTime, statisticsGenerator.getLastValue(), vo, RollupEnum.LAST.name());
                        this.jgen.writeNumberField(RollupEnum.COUNT.name(), statisticsGenerator.getCount());
                        this.jgen.writeEndObject();
                        break;
                    case START:
                        if (vo.getPointLocator().getDataTypeId() == DataTypes.IMAGE)
                            this.writeImageValue(statisticsGenerator.getStartValue(), periodStartTime, periodStartTime, vo, vo.getXid());
                        else
                            this.writeDataValue(periodStartTime, statisticsGenerator.getStartValue(), vo, vo.getXid());
                        break;
                    case FIRST:
                        if (vo.getPointLocator().getDataTypeId() == DataTypes.IMAGE)
                            this.writeImageValue(statisticsGenerator.getFirstValue(), statisticsGenerator.getFirstTime(), periodStartTime, vo, vo.getXid());
                        else
                            this.writeDataValue(periodStartTime, statisticsGenerator.getFirstValue(), vo, vo.getXid());
                        break;
                    case LAST:
                        if (vo.getPointLocator().getDataTypeId() == DataTypes.IMAGE)
                            this.writeImageValue(statisticsGenerator.getLastValue(), statisticsGenerator.getLastTime(), periodStartTime, vo, vo.getXid());
                        else
                            this.writeDataValue(periodStartTime, statisticsGenerator.getLastValue(), vo, vo.getXid());
                        break;
                    case COUNT:
                        this.jgen.writeNumberField(vo.getXid(), statisticsGenerator.getCount());
                        break;
                    default:
                        // Default to first
                        this.writeDataValue(periodStartTime, statisticsGenerator.getFirstValue(), vo, vo.getXid());
                }
            } else if (stats instanceof AnalogStatistics) {
                AnalogStatistics statisticsGenerator = (AnalogStatistics) stats;
                switch(rollup) {
                    case ALL:
                        this.jgen.writeObjectFieldStart(vo.getXid());
                        this.writeDouble(statisticsGenerator.getAverage(), vo, RollupEnum.AVERAGE.name());
                        this.writeDouble(statisticsGenerator.getDelta(), vo, RollupEnum.DELTA.name());
                        this.writeDouble(statisticsGenerator.getMinimumValue(), vo, RollupEnum.MINIMUM.name());
                        this.writeDouble(statisticsGenerator.getMaximumValue(), vo, RollupEnum.MAXIMUM.name());
                        Double acc = statisticsGenerator.getLastValue();
                        if (acc == null) {
                            acc = statisticsGenerator.getMaximumValue();
                        }
                        this.writeDouble(acc, vo, RollupEnum.ACCUMULATOR.name());
                        this.writeDouble(statisticsGenerator.getSum(), vo, RollupEnum.SUM.name());
                        this.writeDouble(statisticsGenerator.getFirstValue(), vo, RollupEnum.FIRST.name());
                        this.writeDouble(statisticsGenerator.getLastValue(), vo, RollupEnum.LAST.name());
                        this.writeIntegral(statisticsGenerator.getIntegral(), vo, RollupEnum.INTEGRAL.name());
                        this.jgen.writeNumberField(RollupEnum.COUNT.name(), statisticsGenerator.getCount());
                        this.jgen.writeEndObject();
                        break;
                    case AVERAGE:
                        this.writeDouble(statisticsGenerator.getAverage(), vo, vo.getXid());
                        break;
                    case DELTA:
                        this.writeDouble(statisticsGenerator.getDelta(), vo, vo.getXid());
                        break;
                    case MINIMUM:
                        this.writeDouble(statisticsGenerator.getMinimumValue(), vo, vo.getXid());
                        break;
                    case MAXIMUM:
                        this.writeDouble(statisticsGenerator.getMaximumValue(), vo, vo.getXid());
                        break;
                    // TODO This should be removed after discussion with Jared
                    case ACCUMULATOR:
                        Double accumulatorValue = statisticsGenerator.getLastValue();
                        if (accumulatorValue == null) {
                            accumulatorValue = statisticsGenerator.getMaximumValue();
                        }
                        this.writeDouble(accumulatorValue, vo, vo.getXid());
                        break;
                    case SUM:
                        this.writeDouble(statisticsGenerator.getSum(), vo, vo.getXid());
                        break;
                    case START:
                        this.writeDouble(statisticsGenerator.getStartValue(), vo, vo.getXid());
                        break;
                    case FIRST:
                        this.writeDouble(statisticsGenerator.getFirstValue(), vo, vo.getXid());
                        break;
                    case LAST:
                        this.writeDouble(statisticsGenerator.getLastValue(), vo, vo.getXid());
                        break;
                    case COUNT:
                        this.jgen.writeNumberField(vo.getXid(), statisticsGenerator.getCount());
                        break;
                    case INTEGRAL:
                        this.writeIntegral(statisticsGenerator.getIntegral(), vo, vo.getXid());
                        break;
                    default:
                        // Default to first
                        this.writeDouble(statisticsGenerator.getFirstValue(), vo, vo.getXid());
                }
            } else {
                throw new ShouldNeverHappenException("Unsuported statistics type: " + stats.getClass().getName());
            }
        }
        this.jgen.writeEndObject();
    } catch (IOException e) {
        LOG.error(e.getMessage(), e);
    }
}
Also used : DataPointVO(com.serotonin.m2m2.vo.DataPointVO) StatisticsGenerator(com.serotonin.m2m2.view.stats.StatisticsGenerator) ValueChangeCounter(com.serotonin.m2m2.view.stats.ValueChangeCounter) ShouldNeverHappenException(com.serotonin.ShouldNeverHappenException) AnalogStatistics(com.serotonin.m2m2.view.stats.AnalogStatistics) IOException(java.io.IOException)

Example 2 with AnalogStatistics

use of com.serotonin.m2m2.view.stats.AnalogStatistics in project ma-modules-public by infiniteautomation.

the class IdPointValueStatisticsQuantizerCsvCallback method closePeriod.

/* (non-Javadoc)
	 * @see com.serotonin.m2m2.web.mvc.rest.v1.statistics.ParentStatisticsQuantizerCallback#closePeriod(java.util.Map, long)
	 */
@Override
public void closePeriod(Map<Integer, StatisticsGenerator> periodStatsMap, long periodStartTime) {
    try {
        if (!wroteHeaders) {
            this.writer.writeNext(headers);
            this.wroteHeaders = true;
        }
        // Write out the period start time
        if (dateFormatter == null)
            this.rowData[1] = Long.toString(periodStartTime);
        else
            this.rowData[1] = dateFormatter.format(ZonedDateTime.ofInstant(Instant.ofEpochMilli(periodStartTime), TimeZone.getDefault().toZoneId()));
        Iterator<Integer> it = periodStatsMap.keySet().iterator();
        while (it.hasNext()) {
            Integer id = it.next();
            StatisticsGenerator stats = periodStatsMap.get(id);
            DataPointVO vo = this.voMap.get(id);
            if (stats instanceof ValueChangeCounter) {
                ValueChangeCounter statisticsGenerator = (ValueChangeCounter) stats;
                switch(rollup) {
                    case FIRST:
                        if (vo.getPointLocator().getDataTypeId() == DataTypes.IMAGE)
                            this.writeImageValue(statisticsGenerator.getFirstValue(), statisticsGenerator.getFirstTime(), periodStartTime, vo);
                        else
                            this.writeDataValue(periodStartTime, statisticsGenerator.getFirstValue(), vo);
                        break;
                    case LAST:
                        if (vo.getPointLocator().getDataTypeId() == DataTypes.IMAGE)
                            this.writeImageValue(statisticsGenerator.getLastValue(), statisticsGenerator.getLastTime(), periodStartTime, vo);
                        else
                            this.writeDataValue(periodStartTime, statisticsGenerator.getLastValue(), vo);
                        break;
                    case COUNT:
                        this.rowData[this.columnMap.get(vo.getId())] = Integer.toString(statisticsGenerator.getCount());
                        break;
                    default:
                        // Default to first
                        this.writeDataValue(periodStartTime, statisticsGenerator.getFirstValue(), vo);
                }
            } else if (stats instanceof AnalogStatistics) {
                AnalogStatistics statisticsGenerator = (AnalogStatistics) stats;
                switch(rollup) {
                    case AVERAGE:
                        this.writeDouble(statisticsGenerator.getAverage(), vo);
                        break;
                    case DELTA:
                        this.writeDouble(statisticsGenerator.getDelta(), vo);
                        break;
                    case MINIMUM:
                        this.writeDouble(statisticsGenerator.getMinimumValue(), vo);
                        break;
                    case MAXIMUM:
                        this.writeDouble(statisticsGenerator.getMaximumValue(), vo);
                        break;
                    // TODO This should be removed after discussion with Jared
                    case ACCUMULATOR:
                        Double accumulatorValue = statisticsGenerator.getLastValue();
                        if (accumulatorValue == null) {
                            accumulatorValue = statisticsGenerator.getMaximumValue();
                        }
                        this.writeDouble(accumulatorValue, vo);
                        break;
                    case SUM:
                        this.writeDouble(statisticsGenerator.getSum(), vo);
                        break;
                    case START:
                        this.writeDouble(statisticsGenerator.getStartValue(), vo);
                        break;
                    case FIRST:
                        this.writeDouble(statisticsGenerator.getFirstValue(), vo);
                        break;
                    case LAST:
                        this.writeDouble(statisticsGenerator.getLastValue(), vo);
                        break;
                    case COUNT:
                        this.rowData[this.columnMap.get(vo.getId())] = Integer.toString(statisticsGenerator.getCount());
                        break;
                    case INTEGRAL:
                        this.writeIntegral(statisticsGenerator.getIntegral(), vo);
                        break;
                    default:
                        // Default to first
                        this.writeDouble(statisticsGenerator.getFirstValue(), vo);
                }
            } else {
                throw new ShouldNeverHappenException("Unsuported statistics type: " + stats.getClass().getName());
            }
        }
        this.writer.writeNext(this.rowData);
        // Clear out the row data
        for (int i = 1; i < this.rowData.length; i++) this.rowData[i] = null;
    } catch (IOException e) {
        LOG.error(e.getMessage(), e);
    }
}
Also used : DataPointVO(com.serotonin.m2m2.vo.DataPointVO) StatisticsGenerator(com.serotonin.m2m2.view.stats.StatisticsGenerator) ValueChangeCounter(com.serotonin.m2m2.view.stats.ValueChangeCounter) ShouldNeverHappenException(com.serotonin.ShouldNeverHappenException) AnalogStatistics(com.serotonin.m2m2.view.stats.AnalogStatistics) IOException(java.io.IOException)

Example 3 with AnalogStatistics

use of com.serotonin.m2m2.view.stats.AnalogStatistics in project ma-core-public by infiniteautomation.

the class AnalogStatisticsQuantizerTest method testNoStartValueOneValuePerPeriod.

@Test
public void testNoStartValueOneValuePerPeriod() throws IOException {
    // Generate data at 12 noon for every day in the period
    NextTimePeriodAdjuster adjuster = new NextTimePeriodAdjuster(TimePeriods.DAYS, 1);
    time = ZonedDateTime.of(2017, 01, 01, 12, 00, 00, 0, zoneId);
    List<IdPointValueTime> data = new ArrayList<>();
    double value = 1.0;
    while (time.toInstant().isBefore(to.toInstant())) {
        data.add(new IdPointValueTime(1, new NumericValue(value), time.toInstant().toEpochMilli()));
        time = (ZonedDateTime) adjuster.adjustInto(time);
    }
    // Reset time to track periods
    time = ZonedDateTime.of(2017, 01, 01, 00, 00, 00, 0, zoneId);
    MutableInt counter = new MutableInt(0);
    BucketCalculator bc = new TimePeriodBucketCalculator(from, to, TimePeriods.DAYS, 1);
    AnalogStatisticsQuantizer quantizer = new AnalogStatisticsQuantizer(bc, new StatisticsGeneratorQuantizerCallback<AnalogStatistics>() {

        @Override
        public void quantizedStatistics(AnalogStatistics statisticsGenerator) throws IOException {
            counter.increment();
            AnalogStatistics stats = (AnalogStatistics) statisticsGenerator;
            // Test periodStart
            Assert.assertEquals(time.toInstant().toEpochMilli(), stats.getPeriodStartTime());
            // Test periiodEnd
            Assert.assertEquals(time.plusDays(1).toInstant().toEpochMilli(), stats.getPeriodEndTime());
            ZonedDateTime sampleTime = time.plusHours(12);
            // Test Minimum
            Assert.assertEquals(1.0, stats.getMinimumValue(), 0.0001);
            // Test Maximum
            Assert.assertEquals(1.0, stats.getMaximumValue(), 0.0001);
            if (counter.getValue() == 1) {
                Assert.assertEquals((long) sampleTime.toInstant().toEpochMilli(), (long) stats.getMinimumTime());
                Assert.assertEquals((long) sampleTime.toInstant().toEpochMilli(), (long) stats.getMaximumTime());
            } else {
                // Period start if there was a start value
                Assert.assertEquals(time.toInstant().toEpochMilli(), (long) stats.getMinimumTime());
                Assert.assertEquals(time.toInstant().toEpochMilli(), (long) stats.getMaximumTime());
            }
            // Test Average
            Assert.assertEquals(1.0d, stats.getAverage(), 0.0001);
            // Test Integral
            if (counter.getValue() == 1) {
                double integral = 1.0d * 12 * 60 * 60;
                Assert.assertEquals(integral, stats.getIntegral(), 0.0001);
            } else {
                // 24Hrs
                double integral = 1.0d * 24 * 60 * 60;
                Assert.assertEquals(integral, stats.getIntegral(), 0.0001);
            }
            // Test sum
            Assert.assertEquals(1.0d, stats.getSum(), 0.0001);
            // Test first
            Assert.assertEquals(1.0d, stats.getFirstValue(), 0.0001);
            Assert.assertEquals((long) sampleTime.toInstant().toEpochMilli(), (long) stats.getFirstTime());
            // Test last
            Assert.assertEquals(1.0d, stats.getLastValue(), 0.0001);
            Assert.assertEquals((long) sampleTime.toInstant().toEpochMilli(), (long) stats.getLastTime());
            // Test start (the first start value will be null
            if (counter.getValue() == 1)
                Assert.assertEquals(null, stats.getStartValue());
            else
                Assert.assertEquals(1.0, stats.getStartValue(), 0.0001);
            // Test count
            Assert.assertEquals(1, stats.getCount());
            // Test delta
            Assert.assertEquals(0.0, stats.getDelta(), 0.0001);
            // Move to next period time
            time = (ZonedDateTime) adjuster.adjustInto(time);
        }
    });
    quantizer.firstValue(null, 0, true);
    for (int count = 0; count < data.size(); count++) quantizer.row(data.get(count), count + 1);
    quantizer.lastValue(data.get(data.size() - 1), data.size() + 1, true);
    quantizer.done();
    Assert.assertEquals(new Integer(31), counter.getValue());
}
Also used : ArrayList(java.util.ArrayList) AnalogStatistics(com.infiniteautomation.mango.statistics.AnalogStatistics) IdPointValueTime(com.serotonin.m2m2.rt.dataImage.IdPointValueTime) IOException(java.io.IOException) ZonedDateTime(java.time.ZonedDateTime) MutableInt(org.apache.commons.lang3.mutable.MutableInt) NumericValue(com.serotonin.m2m2.rt.dataImage.types.NumericValue) NextTimePeriodAdjuster(com.infiniteautomation.mango.util.datetime.NextTimePeriodAdjuster) Test(org.junit.Test)

Example 4 with AnalogStatistics

use of com.serotonin.m2m2.view.stats.AnalogStatistics in project ma-core-public by infiniteautomation.

the class AnalogStatisticsQuantizerTest method testStartValueAtPeriodStartNoPeriodValues.

@Test
public void testStartValueAtPeriodStartNoPeriodValues() throws IOException {
    // Generate data at 12 noon for every day in the period
    NextTimePeriodAdjuster adjuster = new NextTimePeriodAdjuster(TimePeriods.DAYS, 1);
    // Reset time to track periods
    time = ZonedDateTime.of(2017, 01, 01, 00, 00, 00, 0, zoneId);
    MutableInt counter = new MutableInt(0);
    BucketCalculator bc = new TimePeriodBucketCalculator(from, to, TimePeriods.DAYS, 1);
    AnalogStatisticsQuantizer quantizer = new AnalogStatisticsQuantizer(bc, new StatisticsGeneratorQuantizerCallback<AnalogStatistics>() {

        @Override
        public void quantizedStatistics(AnalogStatistics statisticsGenerator) throws IOException {
            counter.increment();
            AnalogStatistics stats = (AnalogStatistics) statisticsGenerator;
            // Test periodStart
            Assert.assertEquals(time.toInstant().toEpochMilli(), stats.getPeriodStartTime());
            // Test periodEnd
            Assert.assertEquals(time.plusDays(1).toInstant().toEpochMilli(), stats.getPeriodEndTime());
            ZonedDateTime sampleTime = time;
            if (counter.getValue() == 1) {
                // Test Minimum
                Assert.assertEquals(1.0, stats.getMinimumValue(), 0.0001);
                Assert.assertEquals((long) sampleTime.toInstant().toEpochMilli(), (long) stats.getMinimumTime());
                // Test Maximum
                Assert.assertEquals(1.0, stats.getMaximumValue(), 0.0001);
                Assert.assertEquals((long) sampleTime.toInstant().toEpochMilli(), (long) stats.getMaximumTime());
                // Test Average
                Assert.assertEquals(1.0d, stats.getAverage(), 0.0001);
                // Test Integral
                // 24Hrs
                double integral = 1.0d * 24 * 60 * 60;
                Assert.assertEquals(integral, stats.getIntegral(), 0.0001);
                // Test sum
                Assert.assertEquals(1.0d, stats.getSum(), 0.0001);
                // Test first
                Assert.assertEquals(1.0d, stats.getFirstValue(), 0.0001);
                Assert.assertEquals((long) sampleTime.toInstant().toEpochMilli(), (long) stats.getFirstTime());
                // Test last
                Assert.assertEquals(1.0d, stats.getLastValue(), 0.0001);
                Assert.assertEquals((long) sampleTime.toInstant().toEpochMilli(), (long) stats.getLastTime());
                // Test start
                Assert.assertEquals(1.0, stats.getStartValue(), 0.0001);
                // Test count
                Assert.assertEquals(1, stats.getCount());
                // Test delta
                Assert.assertEquals(0.0, stats.getDelta(), 0.0001);
            } else {
                // No data in other periods
                // Test Minimum
                Assert.assertEquals(1.0, stats.getMinimumValue(), 0.0001);
                Assert.assertEquals(time.toInstant().toEpochMilli(), (long) stats.getMinimumTime());
                // Test Maximum
                Assert.assertEquals(1.0, stats.getMaximumValue(), 0.0001);
                Assert.assertEquals(time.toInstant().toEpochMilli(), (long) stats.getMaximumTime());
                // Test Average
                Assert.assertEquals(1.0, stats.getAverage(), 0.0001);
                // Test Integral
                double integral = 1.0 * 24 * 60 * 60;
                Assert.assertEquals(integral, stats.getIntegral(), 0.0001);
                // Test sum
                Assert.assertEquals(0.0d, stats.getSum(), 0.0001);
                // Test first
                Assert.assertEquals(null, stats.getFirstValue());
                Assert.assertEquals(null, stats.getFirstTime());
                // Test last
                Assert.assertEquals(null, stats.getLastValue());
                Assert.assertEquals(null, stats.getLastTime());
                // Test start
                Assert.assertEquals(1.0, stats.getStartValue(), 0.0001);
                // Test count
                Assert.assertEquals(0, stats.getCount());
                // Test delta
                Assert.assertEquals(0.0d, stats.getDelta(), 0.0001);
            }
            // Move to next period time
            time = (ZonedDateTime) adjuster.adjustInto(time);
        }
    });
    quantizer.firstValue(new IdPointValueTime(1, new NumericValue(1.0), time.toInstant().toEpochMilli()), 0, false);
    quantizer.done();
    Assert.assertEquals(new Integer(31), counter.getValue());
}
Also used : AnalogStatistics(com.infiniteautomation.mango.statistics.AnalogStatistics) IdPointValueTime(com.serotonin.m2m2.rt.dataImage.IdPointValueTime) IOException(java.io.IOException) ZonedDateTime(java.time.ZonedDateTime) MutableInt(org.apache.commons.lang3.mutable.MutableInt) NumericValue(com.serotonin.m2m2.rt.dataImage.types.NumericValue) NextTimePeriodAdjuster(com.infiniteautomation.mango.util.datetime.NextTimePeriodAdjuster) Test(org.junit.Test)

Example 5 with AnalogStatistics

use of com.serotonin.m2m2.view.stats.AnalogStatistics in project ma-core-public by infiniteautomation.

the class AnalogStatisticsQuantizerTest method testStartValueAtStartManyValuesPerPeriod.

@Test
public void testStartValueAtStartManyValuesPerPeriod() throws IOException {
    // Generate data at 12 noon for every day in the period
    NextTimePeriodAdjuster adjuster = new NextTimePeriodAdjuster(TimePeriods.DAYS, 1);
    NextTimePeriodAdjuster hourlyAdjuster = new NextTimePeriodAdjuster(TimePeriods.HOURS, 1);
    time = ZonedDateTime.of(2017, 01, 01, 12, 00, 00, 0, zoneId);
    List<IdPointValueTime> data = new ArrayList<>();
    while (time.toInstant().isBefore(to.toInstant())) {
        // Insert 10 values per day
        double value = 1.0;
        ZonedDateTime daily = ZonedDateTime.ofInstant(time.toInstant(), zoneId);
        for (int i = 0; i < 10; i++) {
            data.add(new IdPointValueTime(1, new NumericValue(value), daily.toInstant().toEpochMilli()));
            daily = (ZonedDateTime) hourlyAdjuster.adjustInto(daily);
            value = value + 1.0d;
        }
        time = (ZonedDateTime) adjuster.adjustInto(time);
    }
    // Reset time to track periods
    time = ZonedDateTime.of(2017, 01, 01, 00, 00, 00, 0, zoneId);
    MutableInt counter = new MutableInt(0);
    BucketCalculator bc = new TimePeriodBucketCalculator(from, to, TimePeriods.DAYS, 1);
    AnalogStatisticsQuantizer quantizer = new AnalogStatisticsQuantizer(bc, new StatisticsGeneratorQuantizerCallback<AnalogStatistics>() {

        @Override
        public void quantizedStatistics(AnalogStatistics statisticsGenerator) throws IOException {
            counter.increment();
            AnalogStatistics stats = (AnalogStatistics) statisticsGenerator;
            // Test periodStart
            Assert.assertEquals(time.toInstant().toEpochMilli(), stats.getPeriodStartTime());
            // Test periiodEnd
            Assert.assertEquals(time.plusDays(1).toInstant().toEpochMilli(), stats.getPeriodEndTime());
            // Test Minimum
            if (counter.getValue() == 1) {
                Assert.assertEquals(1.0, stats.getMinimumValue(), 0.0001);
                Assert.assertEquals(time.toInstant().toEpochMilli(), (long) stats.getMinimumTime());
                // Test Maximum
                Assert.assertEquals(10.0, stats.getMaximumValue(), 0.0001);
                Assert.assertEquals(time.plusHours(12).plusHours(9).toInstant().toEpochMilli(), (long) stats.getMaximumTime());
            } else {
                Assert.assertEquals(1.0, stats.getMinimumValue(), 0.0001);
                Assert.assertEquals(time.plusHours(12).toInstant().toEpochMilli(), (long) stats.getMinimumTime());
                // Test Maximum
                Assert.assertEquals(10.0, stats.getMaximumValue(), 0.0001);
                Assert.assertEquals(time.toInstant().toEpochMilli(), (long) stats.getMaximumTime());
            }
            // 1-9 for 1hr each, 10 for 12hrs at the start and 2hrs at the end
            if (counter.getValue() == 1) {
                double integral = 1d * 13 * 60d * 60d + 2d * 60 * 60 + 3d * 60 * 60 + 4d * 60 * 60 + 5d * 60 * 60 + 6d * 60 * 60 + 7d * 60 * 60 + 8d * 60 * 60 + 9d * 60 * 60;
                integral = integral + 10d * 3d * 60 * 60;
                double average = integral / (24d * 60d * 60d);
                Assert.assertEquals(average, stats.getAverage(), 0.0001);
                // Test Integral
                Assert.assertEquals(integral, stats.getIntegral(), 0.0001);
            } else {
                double integral = 1d * 60d * 60d + 2d * 60 * 60 + 3d * 60 * 60 + 4d * 60 * 60 + 5d * 60 * 60 + 6d * 60 * 60 + 7d * 60 * 60 + 8d * 60 * 60 + 9d * 60 * 60;
                integral = integral + 10d * 15d * 60 * 60;
                double average = integral / (24d * 60d * 60d);
                Assert.assertEquals(average, stats.getAverage(), 0.0001);
                // Test Integral
                Assert.assertEquals(integral, stats.getIntegral(), 0.0001);
            }
            // Test sum
            if (counter.getValue() == 1) {
                Assert.assertEquals(56d, stats.getSum(), 0.0001);
                // Test first
                Assert.assertEquals(1.0d, stats.getFirstValue(), 0.0001);
                Assert.assertEquals((long) time.toInstant().toEpochMilli(), (long) stats.getFirstTime());
            } else {
                Assert.assertEquals(55d, stats.getSum(), 0.0001);
                // Test first
                Assert.assertEquals(1.0d, stats.getFirstValue(), 0.0001);
                Assert.assertEquals((long) time.plusHours(12).toInstant().toEpochMilli(), (long) stats.getFirstTime());
            }
            // Test last
            Assert.assertEquals(10.0d, stats.getLastValue(), 0.0001);
            Assert.assertEquals((long) time.plusHours(12).plusHours(9).toInstant().toEpochMilli(), (long) stats.getLastTime());
            if (counter.getValue() == 1) {
                // Test start (the first start value will be null
                Assert.assertEquals(1.0, stats.getStartValue(), 0.0001);
                // Test count
                Assert.assertEquals(11, stats.getCount());
            } else {
                // Test start (the first start value will be null
                Assert.assertEquals(10.0, stats.getStartValue(), 0.0001);
                // Test count
                Assert.assertEquals(10, stats.getCount());
            }
            // Test delta
            if (counter.getValue() == 1) {
                // 1 to 10
                Assert.assertEquals(9.0, stats.getDelta(), 0.0001);
            } else {
                Assert.assertEquals(0.0, stats.getDelta(), 0.0001);
            }
            // Move to next period time
            time = (ZonedDateTime) adjuster.adjustInto(time);
        }
    });
    quantizer.firstValue(new IdPointValueTime(1, new NumericValue(1.0), time.toInstant().toEpochMilli()), 0, false);
    for (int count = 0; count < data.size(); count++) quantizer.row(data.get(count), count + 1);
    quantizer.lastValue(data.get(data.size() - 1), data.size() + 1, true);
    quantizer.done();
    Assert.assertEquals(new Integer(31), counter.getValue());
}
Also used : ArrayList(java.util.ArrayList) AnalogStatistics(com.infiniteautomation.mango.statistics.AnalogStatistics) IdPointValueTime(com.serotonin.m2m2.rt.dataImage.IdPointValueTime) IOException(java.io.IOException) ZonedDateTime(java.time.ZonedDateTime) MutableInt(org.apache.commons.lang3.mutable.MutableInt) NumericValue(com.serotonin.m2m2.rt.dataImage.types.NumericValue) NextTimePeriodAdjuster(com.infiniteautomation.mango.util.datetime.NextTimePeriodAdjuster) Test(org.junit.Test)

Aggregations

AnalogStatistics (com.infiniteautomation.mango.statistics.AnalogStatistics)10 IOException (java.io.IOException)9 Test (org.junit.Test)9 NumericValue (com.serotonin.m2m2.rt.dataImage.types.NumericValue)8 NextTimePeriodAdjuster (com.infiniteautomation.mango.util.datetime.NextTimePeriodAdjuster)7 IdPointValueTime (com.serotonin.m2m2.rt.dataImage.IdPointValueTime)7 ZonedDateTime (java.time.ZonedDateTime)7 MutableInt (org.apache.commons.lang3.mutable.MutableInt)7 ArrayList (java.util.ArrayList)6 PointValueTime (com.serotonin.m2m2.rt.dataImage.PointValueTime)4 AnalogStatistics (com.serotonin.m2m2.view.stats.AnalogStatistics)4 ValueChangeCounter (com.serotonin.m2m2.view.stats.ValueChangeCounter)4 ShouldNeverHappenException (com.serotonin.ShouldNeverHappenException)3 StatisticsGenerator (com.serotonin.m2m2.view.stats.StatisticsGenerator)2 DataPointVO (com.serotonin.m2m2.vo.DataPointVO)2 StartsAndRuntime (com.infiniteautomation.mango.statistics.StartsAndRuntime)1 StartsAndRuntimeList (com.infiniteautomation.mango.statistics.StartsAndRuntimeList)1 PointValueFacade (com.serotonin.m2m2.rt.dataImage.PointValueFacade)1 BinaryValue (com.serotonin.m2m2.rt.dataImage.types.BinaryValue)1 DataValue (com.serotonin.m2m2.rt.dataImage.types.DataValue)1