houzhongjian
2024-07-23 a6de490948278991e47952e90671ddba4555e9a2
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
package com.iailab.module.model.api;
 
import com.iailab.common.utils.DateUtils;
 
import com.iailab.framework.common.pojo.CommonResult;
import com.iailab.module.data.api.IFeignDataApi;
import com.iailab.module.mcs.service.StModelResultService;
import com.iailab.module.model.dto.RunSetDTO;
import com.iailab.module.model.handler.ModelHandler;
import io.swagger.v3.oas.annotations.tags.Tag;
import org.apache.commons.lang3.StringUtils;
import javax.annotation.Resource;
import org.springframework.util.CollectionUtils;
import org.springframework.web.bind.annotation.*;
 
import java.util.*;
 
/**
 * scada接口数据
 *
 * @author lirm
 * @date 2024/4/9
 * @since 1.0
 */
@RestController
@RequestMapping("api/model")
@Tag(name = "数据接口")
public class ApiModelController {
 
    @Resource
    private IFeignDataApi iFeignDataApi;
 
    @Resource
    private StModelResultService stModelResultService;
 
    @Resource
    private ModelHandler modelHandler;
 
    private static String mFx1315SwitchInName = "1315/1给定";
    private static String mFx1308SwitchInName = "1308/1给定";
    private static String mFx1301AshInName = "1308/1给定";
 
 
    @PostMapping("execute")
    public CommonResult execute(@RequestParam Map<String, Object> params, @RequestBody List<double[][]> sampleDataList) {
        Map<String, Object> result = new HashMap<>();
        try {
            String appKey = "admin";
            String modelCode = (String)params.get("modelCode");
            if (StringUtils.isBlank(modelCode)) {
                return new CommonResult().setMsg("modelCode不能为空!");
            }
            if (CollectionUtils.isEmpty(sampleDataList)) {
                return new CommonResult().setMsg("参数不能为空!");
            }
            Calendar calendar = Calendar.getInstance();
            calendar.set(Calendar.MILLISECOND, 0);
            result = modelHandler.run(modelCode, calendar.getTime(), sampleDataList, appKey);
            return new CommonResult<Map<String, Object>>().setData(result);
        } catch (Exception ex) {
            return new CommonResult().setMsg(ex.getMessage());
        }
    }
 
    @PostMapping("run")
    public CommonResult run(@RequestParam Map<String, Object> params, @RequestBody List<double[][]> sampleDataList) {
        Map<String, Object> result = new HashMap<>();
        try {
            String modelCode = (String)params.get("modelCode");
            if (StringUtils.isBlank(modelCode)) {
                return new CommonResult().setMsg("modelCode不能为空!");
            }
            if (CollectionUtils.isEmpty(sampleDataList)) {
                return new CommonResult().setMsg("参数不能为空!");
            }
            Calendar calendar = Calendar.getInstance();
            calendar.set(Calendar.MILLISECOND, 0);
            result = modelHandler.run(modelCode, sampleDataList);
            return new CommonResult<Map<String, Object>>().setData(result);
        } catch (Exception ex) {
            return new CommonResult().setMsg(ex.getMessage());
        }
    }
 
    @PostMapping("run-set")
    public CommonResult runSet(@RequestParam Map<String, Object> params, @RequestBody RunSetDTO dto) {
        Map<String, Object> result = new HashMap<>();
        try {
            List<double[][]> sampleDataList = dto.getDataList();
            String modelCode = (String)params.get("modelCode");
            if (StringUtils.isBlank(modelCode)) {
                return new CommonResult().setMsg("modelCode不能为空!");
            }
            if (CollectionUtils.isEmpty(sampleDataList)) {
                return new CommonResult().setMsg("参数不能为空!");
            }
            Calendar calendar = Calendar.getInstance();
            calendar.set(Calendar.MILLISECOND, 0);
            result = modelHandler.run(modelCode, sampleDataList, dto.getSettings());
            return new CommonResult<Map<String, Object>>().setData(result);
        } catch (Exception ex) {
            return new CommonResult().setMsg(ex.getMessage());
        }
    }
 
    @GetMapping("model-result/{modelCode}")
    public CommonResult<Map<String, Object>> getResultByModelCode(@PathVariable("modelCode") String modelCode) {
        Map<String, Object> data = new HashMap<>();
        Map<String, Object> modelParams = new HashMap<>(1);
        try {
            modelParams.put("modelCode", modelCode);
            data = stModelResultService.getLastResultMap(modelParams);
            if (CollectionUtils.isEmpty(data)) {
                return new CommonResult<>();
            }
        } catch (Exception ex) {
            ex.printStackTrace();
        }
        return new CommonResult<Map<String, Object>>().setData(data);
    }
 
    @GetMapping("model-date-result")
    public CommonResult<Map<String, Object>> getTimeResult(@RequestParam Map<String, Object> params) {
        Map<String, Object> data = new HashMap<>();
        try {
            data = stModelResultService.getResultByCodeDate(params);
            if (CollectionUtils.isEmpty(data)) {
                return new CommonResult<>();
            }
        } catch (Exception ex) {
            ex.printStackTrace();
        }
        return new CommonResult<Map<String, Object>>().setData(data);
    }
 
    @GetMapping("model-result/list")
    public CommonResult<List<Map<String, Object>>> geModelResultList(@RequestParam Map<String, Object> params) {
        Calendar calendar = Calendar.getInstance();
        calendar.set(Calendar.MILLISECOND, 0);
        calendar.set(Calendar.SECOND, 0);
        if (params.get("lastHour") != null) {
            calendar.add(Calendar.HOUR_OF_DAY, Integer.parseInt(params.get("lastHour").toString()) * -1);
        }
        Date startDate = calendar.getTime();
        Date endDate = new Date();
 
        if ((params.get("startDate") != null && StringUtils.isNotBlank(params.get("startDate").toString()))) {
            String ts = params.get("startDate").toString();
            if (ts.length() < 12) {
                ts = ts + " 00:00:00";
            }
            startDate = DateUtils.parse(ts, DateUtils.DATE_TIME_PATTERN);
        }
        if ((params.get("endDate") != null && StringUtils.isNotBlank(params.get("endDate").toString()))) {
            String ts = params.get("endDate").toString();
            if (ts.length() < 12) {
                ts = ts + " 23:59:59";
            }
            endDate = DateUtils.parse(ts, DateUtils.DATE_TIME_PATTERN);
        }
 
        params.put("startDate", startDate);
        params.put("endDate", endDate);
        List<Map<String, Object>> list = stModelResultService.getList(params);
        return new CommonResult<List<Map<String, Object>>>().setData(list);
    }
}