AlarmFunctionMIN.java 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. package com.gyee.generation.util.rule;
  2. import com.gyee.generation.util.realtimesource.timeseries.PointData;
  3. import com.gyee.generation.util.rule.expression.AlarmExpression;
  4. import com.gyee.generation.util.rule.expression.DeviceTypeValue;
  5. import java.util.Optional;
  6. public class AlarmFunctionMIN extends AlarmFunction {
  7. public AlarmFunctionMIN(AlarmExpression alarmExpression, DeviceTypeValue tType, String tId) {
  8. super(alarmExpression, tType, tId);
  9. }
  10. @Override
  11. public Object explain() throws Exception {
  12. if (this.getAlarmExpression().getVarList() == null || this.getAlarmExpression().getVarList().size() < 1)
  13. return 0;
  14. Optional<Double> minValue = Optional.empty();
  15. for (int i = 0; i < this.getAlarmExpression().getVarList().size(); i++) {
  16. PointData tagInfo = this.getTagInfo(this.getAlarmExpression().getVarList().get(i));
  17. if (!minValue.isPresent()) {
  18. minValue = Optional.of(tagInfo.getPointValueInDouble());
  19. } else {
  20. if (minValue.get() >= tagInfo.getPointValueInDouble()) {
  21. minValue = Optional.of(tagInfo.getPointValueInDouble());
  22. }
  23. }
  24. }
  25. return minValue.get().doubleValue();
  26. }
  27. }