12345678910111213141516171819202122232425262728293031323334353637383940 |
- package com.gyee.generation.util.rule;
- import com.gyee.generation.util.realtimesource.timeseries.PointData;
- import com.gyee.generation.util.rule.expression.AlarmExpression;
- import com.gyee.generation.util.rule.expression.DeviceTypeValue;
- import java.util.Optional;
- public class AlarmFunctionMIN extends AlarmFunction {
- public AlarmFunctionMIN(AlarmExpression alarmExpression, DeviceTypeValue tType, String tId) {
- super(alarmExpression, tType, tId);
- }
- @Override
- public Object explain() throws Exception {
- if (this.getAlarmExpression().getVarList() == null || this.getAlarmExpression().getVarList().size() < 1)
- return 0;
- Optional<Double> minValue = Optional.empty();
- for (int i = 0; i < this.getAlarmExpression().getVarList().size(); i++) {
- PointData tagInfo = this.getTagInfo(this.getAlarmExpression().getVarList().get(i));
- if (!minValue.isPresent()) {
- minValue = Optional.of(tagInfo.getPointValueInDouble());
- } else {
- if (minValue.get() >= tagInfo.getPointValueInDouble()) {
- minValue = Optional.of(tagInfo.getPointValueInDouble());
- }
- }
- }
- return minValue.get().doubleValue();
- }
- }
|