| | |
| | | package com.iailab.module.data.point.collection; |
| | | |
| | | import com.alibaba.fastjson.JSONObject; |
| | | import com.iailab.module.data.common.enums.DataSourceType; |
| | | import com.iailab.module.data.common.utils.R; |
| | | import com.iailab.module.data.channel.kio.collector.KingIOCollector; |
| | |
| | | |
| | | public static final String PV = "point_value:"; |
| | | |
| | | public static final long offset = 60 * 3L; |
| | | public static final long offset = 60 * 2L; |
| | | |
| | | /** |
| | | * 采集 |
| | |
| | | List<String> listBad = new ArrayList<>(); |
| | | log.info("读取常量点"); |
| | | List<DaPointDTO> pointConstantList = daPointService.getConstantPoint(minfreq); |
| | | pointValues.addAll(constantHandle.handle(collectTime, pointConstantList, dataMap,listGood,listBad)); |
| | | pointValues.addAll(constantHandle.handle(collectTime, pointConstantList, dataMap, listGood, listBad)); |
| | | |
| | | log.info("读取测量点"); |
| | | List<DaPointDTO> pointMeasureList = daPointService.getMeasurePoint(minfreq); |
| | | pointValues.addAll(measureHandle.handle(collectTime, pointMeasureList, dataMap,listGood,listBad)); |
| | | pointValues.addAll(measureHandle.handle(collectTime, pointMeasureList, dataMap, listGood, listBad)); |
| | | |
| | | List<String> listBadNew = new ArrayList<>(); |
| | | if (!CollectionUtils.isEmpty(listBad)) { |
| | | log.info("BAD点值修复"); |
| | | List<InfluxPointValuePOJO> influxParams = new ArrayList<>(); |
| | | for (String bad : listBad) { |
| | | DaPointDTO daPointDTO = daPointService.getByNo(bad); |
| | | InfluxPointValuePOJO pojo = new InfluxPointValuePOJO(); |
| | | pojo.setPoint(bad); |
| | | pojo.setType(daPointDTO.getDataType()); |
| | | influxParams.add(pojo); |
| | | } |
| | | Map<String, Object> lastValue = influxDBService.queryPointsLastValue(influxParams); |
| | | log.info("lastValue=" + JSONObject.toJSONString(lastValue)); |
| | | if (!CollectionUtils.isEmpty(lastValue)) { |
| | | for (String bad : listBad) { |
| | | if (lastValue.containsKey(bad)) { |
| | | listGood.add(bad); |
| | | dataMap.put(bad, lastValue.get(bad)); |
| | | } else { |
| | | listBadNew.add(bad); |
| | | } |
| | | } |
| | | } else { |
| | | listBadNew = listBad; |
| | | } |
| | | } |
| | | |
| | | log.info("读取计算点"); |
| | | List<DaPointDTO> pointCalculateList = daPointService.getMathPoint(minfreq); |
| | | pointValues.addAll(calculateHandle.handle(collectTime, pointCalculateList, dataMap,listGood,listBad)); |
| | | pointValues.addAll(calculateHandle.handle(collectTime, pointCalculateList, dataMap, listGood, listBadNew)); |
| | | |
| | | log.info("读取累计点"); |
| | | List<DaPointDTO> pointCumulateList = daPointService.getCumulatePoint(minfreq); |
| | | pointValues.addAll(cumulateHandle.handle(collectTime, pointCumulateList,listGood,listBad)); |
| | | pointValues.addAll(cumulateHandle.handle(collectTime, pointCumulateList, listGood, listBadNew)); |
| | | |
| | | log.info("存入时序库"); |
| | | influxDBService.asyncWritePointValues(pointValues); |
| | |
| | | } |
| | | } |
| | | log.info("更新采集状态"); |
| | | daPointCollectStatusService.recordStatusList(listGood,listBad, collectTime); |
| | | daPointCollectStatusService.recordStatusList(listGood, listBad, collectTime); |
| | | log.info("采集完成"); |
| | | } catch (Exception ex) { |
| | | log.info("采集异常!"); |
| | |
| | | data.putAll(cumulateHandle.getCurrent(pointNos)); |
| | | return data; |
| | | } catch (Exception ex) { |
| | | ex.printStackTrace(); |
| | | return R.error(ex.getMessage()); |
| | | } |
| | | |