From f2e2d034b9eea8299ee828ef83462e9328b198fd Mon Sep 17 00:00:00 2001
From: 潘志宝 <979469083@qq.com>
Date: 星期一, 17 三月 2025 11:21:25 +0800
Subject: [PATCH] HttpCollectorForIhd

---
 iailab-module-data/iailab-module-data-biz/src/main/java/com/iailab/module/data/channel/http/collector/ihdb/HttpCollectorForIhd.java |  116 +++++++++++++++++++++++++++++++++++++--------------------
 1 files changed, 75 insertions(+), 41 deletions(-)

diff --git a/iailab-module-data/iailab-module-data-biz/src/main/java/com/iailab/module/data/channel/http/collector/ihdb/HttpCollectorForIhd.java b/iailab-module-data/iailab-module-data-biz/src/main/java/com/iailab/module/data/channel/http/collector/ihdb/HttpCollectorForIhd.java
index bb76199..f4f9d03 100644
--- a/iailab-module-data/iailab-module-data-biz/src/main/java/com/iailab/module/data/channel/http/collector/ihdb/HttpCollectorForIhd.java
+++ b/iailab-module-data/iailab-module-data-biz/src/main/java/com/iailab/module/data/channel/http/collector/ihdb/HttpCollectorForIhd.java
@@ -10,10 +10,8 @@
 import com.iailab.module.data.channel.http.service.HttpApiService;
 import com.iailab.module.data.common.enums.DataSourceType;
 import com.iailab.module.data.common.utils.DateUtils;
-import com.iailab.module.data.common.utils.HttpRequest;
 import com.iailab.module.data.common.utils.TagUtils;
 import lombok.extern.slf4j.Slf4j;
-import org.apache.commons.lang3.StringUtils;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.data.redis.core.BoundHashOperations;
 import org.springframework.data.redis.core.RedisTemplate;
@@ -22,14 +20,8 @@
 
 import java.math.BigDecimal;
 import java.math.RoundingMode;
-import java.sql.Timestamp;
-import java.text.ParseException;
-import java.text.SimpleDateFormat;
-import java.time.LocalDateTime;
 import java.util.*;
 import java.util.concurrent.*;
-import java.util.function.Function;
-import java.util.stream.Collectors;
 
 /**
  * iHyperDB采集
@@ -56,11 +48,17 @@
 
     private static final int GROUP_MAX_COUNT = 300;
 
-    private static final int MAX_WAIT = 30;
+    private static final int MAX_WAIT = 45;
 
     private static final String pattern = "yyyyMMddHHmm00";
 
     private static final String IS_SUCCESS = "isSuccess";
+
+    private static final String RESP_DATA = "data";
+
+    public static final String TIV = "TagIdValue:";
+
+    public static final long offset = 60 * 10L;
 
     /**
      * tagName
@@ -87,6 +85,11 @@
      */
     private static final String T = "t";
 
+    /**
+     * 数据质量G:good,B:bad
+     */
+    private static final String Q = "q";
+
     private HttpApiEntity getHttpApi(String id) {
         if (apiMap.containsKey(id)) {
             return apiMap.get(id);
@@ -112,7 +115,7 @@
         String responseStr = HttpUtils.sendPost(httpApi.getUrl() + "/" + currentDate, tagSb.toString());
         JSONObject responseObj = JSON.parseObject(responseStr);
         if (STA_TRUE.equals(responseObj.get(IS_SUCCESS).toString())) {
-            JSONArray tagValueList = responseObj.getJSONArray("data");
+            JSONArray tagValueList = responseObj.getJSONArray(RESP_DATA);
             if (!CollectionUtils.isEmpty(tagValueList)) {
                 for (int i = 0; i < tagValueList.size(); i++) {
                     JSONObject item = tagValueList.getJSONObject(i);
@@ -131,14 +134,14 @@
                 return result;
             }
             List<String> noCacheTagNames = new ArrayList<>();//未缓存的tag
-            for (int i = 0; i < tagNames.size(); i++) {
+            for (String tagName : tagNames) {
                 //先查缓存
-                BoundHashOperations<String, String, Object> ops = redisTemplate.boundHashOps(tagNames.get(i));
+                BoundHashOperations<String, String, Object> ops = redisTemplate.boundHashOps("IhdTag:" + tagName);
                 if (ops.get(V) != null) {
                     BigDecimal value = new BigDecimal(ops.get(V).toString());
-                    result.put(tagNames.get(i), value.setScale(3, RoundingMode.HALF_UP));
+                    result.put(tagName, value.setScale(3, RoundingMode.HALF_UP));
                 } else {
-                    noCacheTagNames.add(tagNames.get(i));
+                    noCacheTagNames.add(tagName);
                 }
             }
             if (CollectionUtils.isEmpty(noCacheTagNames)) {
@@ -148,32 +151,31 @@
             log.info("查询未缓存的数据");
             Gson gson = new Gson();
             String tagSb = gson.toJson(noCacheTagNames);
-            log.info("body=====" + tagSb);
             String currentDate = DateUtils.format(new Date(), pattern);
             String responseStr = "";
             responseStr = HttpUtils.sendPost(httpApi.getUrl().replace("getPointdatasAvg", "getPointslast") + "/" + currentDate, tagSb);
             JSONObject responseObj = JSON.parseObject(responseStr);
-            if (STA_TRUE.equals(responseObj.get(IS_SUCCESS).toString())) {
-                JSONArray tagValueList = responseObj.getJSONArray("data");
-                if (!CollectionUtils.isEmpty(tagValueList)) {
-                    for (int i = 0; i < tagValueList.size(); i++) {
-                        JSONObject item = tagValueList.getJSONObject(i);
-                        if (item.get(V) != null) {
-                            //存缓存
-                            BoundHashOperations<String, String, Object> ops = redisTemplate.boundHashOps(item.get(V).toString());
-                            ops.put(V, item.get(V).toString());
-                            //设置过期时间
-                            redisTemplate.expire(item.get(N).toString(), 10, TimeUnit.SECONDS);
-                            //把查询到的数据插入结果集
-                            BigDecimal value = new BigDecimal(item.get(V).toString());
-                            result.put(item.get(N).toString(), value.setScale(3, RoundingMode.HALF_UP));
-                        } else {
-                            result.put(item.get(N).toString(), CommonConstant.BAD_VALUE);
-                        }
-                    }
-                }
+            if (!STA_TRUE.equals(responseObj.get(IS_SUCCESS).toString())) {
+                return result;
             }
-
+            JSONArray tagValueList = responseObj.getJSONArray(RESP_DATA);
+            if (CollectionUtils.isEmpty(tagValueList)) {
+                return result;
+            }
+            for (int i = 0; i < tagValueList.size(); i++) {
+                JSONObject item = tagValueList.getJSONObject(i);
+                if (item.get(V) == null) {
+                    continue;
+                }
+                //存缓存
+                BoundHashOperations<String, String, Object> ops = redisTemplate.boundHashOps("IhdTag:" + item.get(N).toString());
+                ops.put(V, item.get(V).toString());
+                //设置过期时间
+                redisTemplate.expire(item.get(N).toString(), 10, TimeUnit.SECONDS);
+                //把查询到的数据插入结果集
+                BigDecimal value = new BigDecimal(item.get(V).toString());
+                result.put(item.get(N).toString(), value.setScale(3, RoundingMode.HALF_UP));
+            }
         } catch (Exception ex) {
             log.info("getCurrentValue异常");
             ex.printStackTrace();
@@ -202,17 +204,33 @@
             log.info("measurePointsCountGroup.size()=" + measurePointsCountGroup.size());
             result = new ConcurrentHashMap<>(params.size());
             CountDownLatch countDownLatch = new CountDownLatch(measurePointsCountGroup.size());
+            List<Integer> finishedGroup = new CopyOnWriteArrayList<>();
+            List<Integer> notFinish = new CopyOnWriteArrayList<>();
             for (Map.Entry<Integer, List<Object[]>> measurePointsItem : measurePointsCountGroup.entrySet()) {
                 HttpApiEntity httpApi = this.getHttpApi(measurePointsItem.getValue().get(0)[0].toString());
                 // 并发
-                Thread.sleep(1000);
+                Thread.sleep(500);
                 threadPool.submit(new Task(httpApi.getUrl(), httpApi.getCode(), result, measurePointsItem.getValue(),
-                        collectTime, countDownLatch));
+                        collectTime, countDownLatch, finishedGroup, measurePointsItem.getKey()));
                 // 顺序
                 //this.getByHtp(result, measurePointsItem.getValue(), collectTime);
             }
             countDownLatch.await(MAX_WAIT, TimeUnit.SECONDS);
+            for (Map.Entry<String, Object> itemValue : result.entrySet()) {
+                redisTemplate.opsForValue().set(TIV + itemValue.getKey(), itemValue.getValue(), offset, TimeUnit.SECONDS);
+            }
 
+            //超时使用LastValue
+            for (Map.Entry<Integer, List<Object[]>> measurePointsItem : measurePointsCountGroup.entrySet()) {
+                if (finishedGroup.contains(measurePointsItem.getKey())) {
+                    continue;
+                }
+                notFinish.add(measurePointsItem.getKey());
+                HttpApiEntity httpApi = this.getHttpApi(measurePointsItem.getValue().get(0)[0].toString());
+                this.setOut(httpApi.getUrl(), httpApi.getCode(), result, measurePointsItem.getValue(),
+                        collectTime);
+            }
+            log.info("notFinish=" + JSONArray.toJSONString(notFinish));
         } catch (Exception ex) {
             ex.printStackTrace();
         }
@@ -229,15 +247,19 @@
         Map<String, Object> result;
         List<Object[]> params;
         CountDownLatch countDownLatch;
+        List<Integer> finishedGroup;
+        Integer groupKey;
 
         public Task(String url, String sourceName, Map<String, Object> result, List<Object[]> params,
-                    Date collectTime, CountDownLatch countDownLatch) {
+                    Date collectTime, CountDownLatch countDownLatch, List<Integer> finishedGroup, Integer groupKey) {
             this.url = url;
             this.sourceName = sourceName;
             this.result = result;
             this.collectTime = collectTime;
             this.params = params;
             this.countDownLatch = countDownLatch;
+            this.finishedGroup = finishedGroup;
+            this.groupKey = groupKey;
         }
 
         @Override
@@ -251,6 +273,7 @@
                 ex.printStackTrace();
             } finally {
                 countDownLatch.countDown();
+                finishedGroup.add(groupKey);
             }
         }
 
@@ -284,11 +307,13 @@
             JSONObject responseObj = JSON.parseObject(responseStr);
             log.info("responseObj=====" + responseObj.toJSONString());
             if (STA_TRUE.equals(responseObj.get(IS_SUCCESS).toString())) {
-                JSONArray tagValueList = responseObj.getJSONArray("data");
+                JSONArray tagValueList = responseObj.getJSONArray(RESP_DATA);
                 if (!CollectionUtils.isEmpty(tagValueList)) {
                     for (int i = 0; i < tagValueList.size(); i++) {
                         JSONObject item = tagValueList.getJSONObject(i);
-                        result.put(TagUtils.genTagId(DataSourceType.HTTP.getCode(), sourceName, item.get(N).toString()), item.get(V));
+                        if (item.get(Q).toString().equals("G")) {
+                            result.put(TagUtils.genTagId(DataSourceType.HTTP.getCode(), sourceName, item.get(N).toString()), item.get(V));
+                        }
                     }
                 }
             }
@@ -316,7 +341,7 @@
         JSONObject responseObj = JSON.parseObject(responseStr);
         log.info("responseObj=====" + responseObj.toJSONString());
         if (STA_TRUE.equals(responseObj.get(IS_SUCCESS).toString())) {
-            JSONArray tagValueList = responseObj.getJSONArray("data");
+            JSONArray tagValueList = responseObj.getJSONArray(RESP_DATA);
             if (!CollectionUtils.isEmpty(tagValueList)) {
                 for (int i = 0; i < tagValueList.size(); i++) {
                     JSONObject item = tagValueList.getJSONObject(i);
@@ -325,4 +350,13 @@
             }
         }
     }
+
+    private void setOut(String url, String sourceName, Map<String, Object> result, List<Object[]> params, Date collectTime) {
+        for (int i = 0; i < params.size(); i++) {
+            String tagId = TIV + TagUtils.genTagId(DataSourceType.HTTP.getCode(), sourceName, params.get(i)[1].toString());
+            if (redisTemplate.hasKey(tagId)) {
+                result.put(TagUtils.genTagId(DataSourceType.HTTP.getCode(), sourceName, params.get(i)[1].toString()), redisTemplate.opsForValue().get(tagId));
+            }
+        }
+    }
 }
\ No newline at end of file

--
Gitblit v1.9.3