use of com.infiniteautomation.mango.statistics.StartsAndRuntimeList in project ma-core-public by infiniteautomation.
the class StartsAndRuntimeListQuantizerTest 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
int value = 1;
ZonedDateTime daily = ZonedDateTime.ofInstant(time.toInstant(), zoneId);
for (int i = 0; i < 10; i++) {
data.add(new IdPointValueTime(1, new MultistateValue(value), daily.toInstant().toEpochMilli()));
daily = (ZonedDateTime) hourlyAdjuster.adjustInto(daily);
value = value + 1;
}
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);
StartsAndRuntimeListQuantizer quantizer = new StartsAndRuntimeListQuantizer(bc, new StatisticsGeneratorQuantizerCallback<StartsAndRuntimeList>() {
@Override
public void quantizedStatistics(StartsAndRuntimeList statisticsGenerator) throws IOException {
counter.increment();
StartsAndRuntimeList stats = (StartsAndRuntimeList) statisticsGenerator;
// Test periodStart
Assert.assertEquals(time.toInstant().toEpochMilli(), stats.getPeriodStartTime());
// Test periiodEnd
Assert.assertEquals(time.plusDays(1).toInstant().toEpochMilli(), stats.getPeriodEndTime());
if (counter.getValue() == 1) {
// Test first
Assert.assertEquals(1, stats.getFirstValue().getIntegerValue());
Assert.assertEquals((long) time.toInstant().toEpochMilli(), (long) stats.getFirstTime());
} else {
// Test first
Assert.assertEquals(1, stats.getFirstValue().getIntegerValue());
Assert.assertEquals((long) time.plusHours(12).toInstant().toEpochMilli(), (long) stats.getFirstTime());
}
// Test last
Assert.assertEquals(10, stats.getLastValue().getIntegerValue());
Assert.assertEquals((long) time.plusHours(12).plusHours(9).toInstant().toEpochMilli(), (long) stats.getLastTime());
// Test start (the first start value will be null
if (counter.getValue() == 1) {
Assert.assertEquals(1, stats.getStartValue().getIntegerValue());
// Test count
Assert.assertEquals(11, stats.getCount());
} else {
Assert.assertEquals(10, stats.getStartValue().getIntegerValue());
// Test count
Assert.assertEquals(10, stats.getCount());
}
// Ensure data
if (counter.getValue() == 1) {
// 1 to 10, was 10 for last 3 hrs of day
Assert.assertEquals(10, stats.getStartsAndRuntime().size());
for (StartsAndRuntime value : stats.getData()) {
switch((Integer) value.getValue()) {
case 1:
Assert.assertEquals(2, value.getStarts());
Assert.assertEquals(100d * (13d / 24d), value.getPercentage(), 0.0001);
Assert.assertEquals(13d / 24d, value.getProportion(), 0.0001);
Assert.assertEquals(13 * 60 * 60 * 1000, value.getRuntime());
break;
case 2:
case 3:
case 4:
case 5:
case 6:
case 7:
case 8:
case 9:
Assert.assertEquals(1, value.getStarts());
Assert.assertEquals(100d * (1d / 24d), value.getPercentage(), 0.0001);
Assert.assertEquals(1d / 24d, value.getProportion(), 0.0001);
Assert.assertEquals(60 * 60 * 1000, value.getRuntime());
break;
case 10:
Assert.assertEquals(1, value.getStarts());
Assert.assertEquals(100d * (3d / 24d), value.getPercentage(), 0.0001);
Assert.assertEquals(3d / 24d, value.getProportion(), 0.0001);
Assert.assertEquals(3 * 60 * 60 * 1000, value.getRuntime());
break;
}
}
} else {
// Start in state 10 for 12 hrs more
Assert.assertEquals(10, stats.getStartsAndRuntime().size());
for (StartsAndRuntime value : stats.getData()) {
switch((Integer) value.getValue()) {
case 1:
case 2:
case 3:
case 4:
case 5:
case 6:
case 7:
case 8:
case 9:
Assert.assertEquals(1, value.getStarts());
Assert.assertEquals(100d * (1d / 24d), value.getPercentage(), 0.0001);
Assert.assertEquals(1d / 24d, value.getProportion(), 0.0001);
Assert.assertEquals(60 * 60 * 1000, value.getRuntime());
break;
case 10:
Assert.assertEquals(1, value.getStarts());
Assert.assertEquals(100d * (15d / 24d), value.getPercentage(), 0.0001);
Assert.assertEquals(15d / 24d, value.getProportion(), 0.0001);
Assert.assertEquals(15 * 60 * 60 * 1000, value.getRuntime());
break;
}
}
}
// Move to next period time
time = (ZonedDateTime) adjuster.adjustInto(time);
}
});
quantizer.firstValue(new IdPointValueTime(1, new MultistateValue(1), 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());
}
use of com.infiniteautomation.mango.statistics.StartsAndRuntimeList in project ma-core-public by infiniteautomation.
the class DistinctPointWrapper method getStats.
public StartsAndRuntimeListWrapper getStats(long from, long to) {
PointValueTime start = point.getPointValueBefore(from);
List<PointValueTime> values = point.getPointValuesBetween(from, to);
StartsAndRuntimeList stats = new StartsAndRuntimeList(from, to, start, values);
if (point.getDataTypeId() == DataTypes.BINARY)
return new BinaryStartsAndRuntimeListWrapper(stats);
else
return new MultistateStartsAndRuntimeListWrapper(stats);
}
Aggregations