From 6a5c41c91d0e10e9a48f96d58f4a191b953106ea Mon Sep 17 00:00:00 2001 From: liriming <1343021927@qq.com> Date: 星期四, 27 三月 2025 16:10:59 +0800 Subject: [PATCH] Merge branch 'master' of http://dlindusit.com:53929/r/iailab-plat --- iailab-module-data/iailab-module-data-biz/src/main/java/com/iailab/module/data/point/collection/PointCollector.java | 28 +++++++++++++++++----------- 1 files changed, 17 insertions(+), 11 deletions(-) diff --git a/iailab-module-data/iailab-module-data-biz/src/main/java/com/iailab/module/data/point/collection/PointCollector.java b/iailab-module-data/iailab-module-data-biz/src/main/java/com/iailab/module/data/point/collection/PointCollector.java index c7475c9..0c4839a 100644 --- a/iailab-module-data/iailab-module-data-biz/src/main/java/com/iailab/module/data/point/collection/PointCollector.java +++ b/iailab-module-data/iailab-module-data-biz/src/main/java/com/iailab/module/data/point/collection/PointCollector.java @@ -30,6 +30,7 @@ import java.math.BigDecimal; import java.util.*; +import java.util.concurrent.TimeUnit; /** * @author PanZhibao @@ -73,9 +74,9 @@ @Autowired private RedisTemplate<String, Object> redisTemplate; - public static final String PV = "PV_"; + public static final String PV = "point_value:"; - public static final int offset = 60 * 3; + public static final long offset = 60 * 2L; /** * 采集 @@ -85,43 +86,47 @@ */ public void collect(Date collectTime, String minfreq) { try { + log.info("collectTime=" + collectTime.getTime()); Map<String, Object> dataMap = new HashMap<>(); List<InfluxPointValuePOJO> pointValues = new ArrayList<>(); - + // 记录点位状态 + List<String> listGood = new ArrayList<>(); + List<String> listBad = new ArrayList<>(); log.info("读取常量点"); List<DaPointDTO> pointConstantList = daPointService.getConstantPoint(minfreq); - pointValues.addAll(constantHandle.handle(collectTime, pointConstantList, dataMap)); + pointValues.addAll(constantHandle.handle(collectTime, pointConstantList, dataMap, listGood, listBad)); log.info("读取测量点"); List<DaPointDTO> pointMeasureList = daPointService.getMeasurePoint(minfreq); - pointValues.addAll(measureHandle.handle(collectTime, pointMeasureList, dataMap)); + pointValues.addAll(measureHandle.handle(collectTime, pointMeasureList, dataMap, listGood, listBad)); log.info("读取计算点"); List<DaPointDTO> pointCalculateList = daPointService.getMathPoint(minfreq); - pointValues.addAll(calculateHandle.handle(collectTime, pointCalculateList, dataMap)); + pointValues.addAll(calculateHandle.handle(collectTime, pointCalculateList, dataMap, listGood, listBad)); log.info("读取累计点"); List<DaPointDTO> pointCumulateList = daPointService.getCumulatePoint(minfreq); - pointValues.addAll(cumulateHandle.handle(collectTime, pointCumulateList)); + pointValues.addAll(cumulateHandle.handle(collectTime, pointCumulateList, listGood, listBad)); log.info("存入时序库"); + log.info("pointValueTimestamp=" + (pointValues.get(0) == null ? 0 : pointValues.get(0).getTimestamp().getNano())); influxDBService.asyncWritePointValues(pointValues); log.info("存入缓存"); for (InfluxPointValuePOJO pointValue : pointValues) { if (pointValue instanceof InfluxPointValueSimPOJO) { InfluxPointValueSimPOJO simPOJO = (InfluxPointValueSimPOJO) pointValue; - redisTemplate.opsForValue().set(PV + simPOJO.getPoint(), simPOJO.getValue(), offset); + redisTemplate.opsForValue().set(PV + simPOJO.getPoint(), simPOJO.getValue().doubleValue(), offset, TimeUnit.SECONDS); } else if (pointValue instanceof InfluxPointValueDigPOJO) { InfluxPointValueDigPOJO digPOJO = (InfluxPointValueDigPOJO) pointValue; - redisTemplate.opsForValue().set(PV + digPOJO.getPoint(), digPOJO.getValue(), offset); + redisTemplate.opsForValue().set(PV + digPOJO.getPoint(), digPOJO.getValue().intValue(), offset, TimeUnit.SECONDS); } else if (pointValue instanceof InfluxPointValueBoolPOJO) { InfluxPointValueBoolPOJO boolPOJO = (InfluxPointValueBoolPOJO) pointValue; - redisTemplate.opsForValue().set(PV + boolPOJO.getPoint(), boolPOJO.getValue(), offset); + redisTemplate.opsForValue().set(PV + boolPOJO.getPoint(), boolPOJO.getValue().booleanValue(), offset, TimeUnit.SECONDS); } } log.info("更新采集状态"); - daPointCollectStatusService.recordStatusList(pointValues, collectTime); + daPointCollectStatusService.recordStatusList(listGood, listBad, collectTime); log.info("采集完成"); } catch (Exception ex) { log.info("采集异常!"); @@ -141,6 +146,7 @@ data.putAll(cumulateHandle.getCurrent(pointNos)); return data; } catch (Exception ex) { + ex.printStackTrace(); return R.error(ex.getMessage()); } -- Gitblit v1.9.3