沙钢智慧能源系统后端代码
潘志宝
2025-03-24 966b940e0a609114bc90eac414caa0237d0ab4c1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
package com.iailab.module.shasteel.job.task;
 
import com.iailab.module.data.api.point.DataPointApi;
import com.iailab.module.model.api.mdk.MdkApi;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.amqp.rabbit.core.RabbitTemplate;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
 
import java.util.*;
import java.util.function.Function;
import java.util.stream.Collectors;
import java.util.stream.Stream;
 
/**
 * @description: LDG柜容预测 监听触发
 *  points(当前时刻大于0,上一时刻为0)则触发
 * @author: dzd
 * @date: 2025/2/13 16:22
 **/
@Component("runLDGTankFactorPredTask")
public class RunLDGTankFactorPredTask implements ITask {
    private Logger logger = LoggerFactory.getLogger(getClass());
    @Autowired
    private DataPointApi dataPointApi;
    @Autowired
    private RunPredictModuleTask runPredictModuleTask;
 
    /**
     * map<NetCode,[pointNos]>
     **/
    private static final HashMap<String, List<String>> checkPoints = new HashMap<String, List<String>>(){{
        put("NET_LDG1", Arrays.asList("M0000100050","M0000100049","M0000100048"));
        put("NET_LDG2", Arrays.asList("M0000100062","M0000100061","M0000100060"));
        put("NET_LDG3", Arrays.asList("M0000100057","M0000100056","M0000100055"));
    }};
 
    private static HashMap<String,Double> pointsLastValue = new HashMap<>();
 
    @Override
    public void run(String params) {
        logger.info("runLDGTankFactorPredTask定时任务正在执行,参数为:{}", params);
        try {
            //一次查询所有pointNo,减少请求
            List<String> allPointNos = checkPoints.values().stream().flatMap(List::stream).collect(Collectors.toList());
            Map<String, Object> pointsRealValue = dataPointApi.queryPointsRealValue(allPointNos);
 
            for (Map.Entry<String, List<String>> entry : checkPoints.entrySet()) {
                for (String pointNo : entry.getValue()) {
                    Double value = null == pointsRealValue.get(pointNo) ? null : Double.valueOf(pointsRealValue.get(pointNo).toString());
                    //如果有旧值,且旧值为0,且新值不为null,且新值>0  触发模型
                    if (null != pointsLastValue.get(pointNo) && pointsLastValue.get(pointNo).equals(0.0) && null != value && value.compareTo(0.0) > 0){
                        logger.info("LDG柜容预测触发,NET:" + entry.getKey() + ",pointNo:" + pointNo + "-" + value);
                        runPredictModuleTask.run(entry.getKey());
                        break;
                    }
                }
            }
            //记录pointsLastValue
            for (Map.Entry<String, Object> pointRealValue : pointsRealValue.entrySet()) {
                Double value = null == pointRealValue.getValue() ? null : Double.valueOf(pointRealValue.getValue().toString());
                pointsLastValue.put(pointRealValue.getKey(),value);
            }
        } catch (Exception ex) {
            logger.error("runLDGTankFactorPredTask运行异常",ex);
        }
        logger.info("runLDGTankFactorPredTask运行完成");
    }
}