潘志宝
2024-10-15 19eb2e43f1122bcca6c25effa6657f90651ae250
提交 | 用户 | 时间
19eb2e 1 package com.iailab.module.data.channel.http.collector;
2
3 import com.alibaba.fastjson.JSON;
4 import com.alibaba.fastjson.JSONArray;
5 import com.alibaba.fastjson.JSONObject;
6 import com.iailab.framework.common.constant.CommonConstant;
7 import com.iailab.module.data.channel.http.entity.HttpApiEntity;
8 import com.iailab.module.data.channel.http.service.HttpApiService;
9 import com.iailab.module.data.common.utils.HttpRequest;
10 import lombok.extern.slf4j.Slf4j;
11 import org.springframework.beans.factory.annotation.Autowired;
12 import org.springframework.stereotype.Component;
13 import org.springframework.util.CollectionUtils;
14
15 import java.math.BigDecimal;
16 import java.util.HashMap;
17 import java.util.List;
18 import java.util.Map;
19
20 /**
21  *
22  * iHyperDB采集
23  *
24  * {
25  *     "data": [
26  *         {
27  *             "tagname": "S10248500000002PS011",
28  *             "value": 2701557.4736842105263157894737,
29  *             "timeStamp": "2024-10-11T18:24:00"
30  *         }
31  *     ],
32  *     "resultMessage": "请求成功...",
33  *     "resultCode": 0,
34  *     "isSuccess": true
35  * }
36  *
37  * @author PanZhibao
38  * @Description
39  * @createTime 2024年10月14日
40  */
41 @Slf4j
42 @Component
43 public class HttpCollectorIhDB {
44     private Map<String, HttpApiEntity> apiMap = new HashMap<>();
45
46     @Autowired
47     private HttpApiService httpApiService;
48
49     private final boolean STA_TRUE = true;
50
51     private final String IS_SUCCESS = "isSuccess";
52
53     private HttpApiEntity getHttpApi(String id) {
54         if (apiMap.containsKey(id)) {
55             return apiMap.get(id);
56         }
57         HttpApiEntity httpApi = httpApiService.info(id);
58         apiMap.put(id, httpApi);
59         return httpApi;
60     }
61
62     public BigDecimal getTagValue(String sourceId, String tagNo) {
63         BigDecimal value = CommonConstant.BAD_VALUE;
64         HttpApiEntity httpApi = this.getHttpApi(sourceId);
65
66         //HttpRequest.sendPost()
67
68         return value;
69     }
70
71
72     public Map<String, Object> getTagValues(List<String[]> params) {
73         if (CollectionUtils.isEmpty(params)) {
74             return new HashMap<>();
75         }
76
77         /*Map<Integer, List<String[]>> measurePointsCountGroup = new HashMap<>();
78         int pointListSize = params.size();
79         int groupCount  = pointListSize / GROUP_MAX_COUNT + ((pointListSize % GROUP_MAX_COUNT) > 0 ? 1 : 0);
80         log.info("groupCount=" + groupCount);
81         for (int i = 0; i < groupCount; i++) {
82             int end = (i + 1) * GROUP_MAX_COUNT;
83             if (end > pointListSize) {
84                 end = pointListSize;
85             }
86             measurePointsCountGroup.put(i, params.subList(i * GROUP_MAX_COUNT, end));
87         }*/
88         Map<String, Object> result = new HashMap<>(params.size());
89         /*for(Map.Entry<Integer, List<String[]>> measurePointsItem : measurePointsCountGroup.entrySet()) {
90             try {
91                 getByHtp(result, measurePointsItem.getValue());
92             } catch (Exception ex) {
93                 ex.printStackTrace();
94             }
95         }*/
96         return result;
97     }
98
99     private void getByHtp(Map<String, Object> result, List<String[]> params) {
100         HttpApiEntity httpApi = this.getHttpApi(params.get(0)[0]);
101         Map<String, String> queryParams = new HashMap<>();
102         StringBuilder tagSb = new StringBuilder();
103         for (int i = 0; i < params.size(); i ++) {
104             tagSb.append(params.get(i)[1]);
105             if (i < params.size() - 1) {
106                 tagSb.append(",");
107             }
108         }
109         /*queryParams.put("tagstr", tagSb.toString());
110         String responseStr = HttpRequest.sendGet(httpApi.getUrl(), queryParams, "utf-8", "");
111         JSONObject responseObj = JSON.parseObject(responseStr);
112         if (STA_TRUE.equals(responseObj.get("sta").toString())) {
113             JSONArray tagValueList = responseObj.getJSONArray("res");
114             if (!CollectionUtils.isEmpty(tagValueList)) {
115                 for (int i = 0; i < tagValueList.size(); i++) {
116                     JSONObject item = tagValueList.getJSONObject(i);
117                     result.put(TagUtils.genTagId(DataSourceType.HTTP.getCode(), httpApi.getCode(), item.get("Tag").toString()), item.get("Value"));
118                 }
119             }
120         }*/
121
122     }
123 }