|
@@ -1,133 +1,156 @@
|
|
|
package com.persagy.apm.energy.report.iotdataanalysis.service.impl;
|
|
|
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
-import com.persagy.apm.energy.report.common.dto.QueryAreaPlatformParamDTO;
|
|
|
-import com.persagy.apm.energy.report.common.dto.QueryPjPlatformParamDTO;
|
|
|
-import com.persagy.apm.energy.report.common.service.CommonService;
|
|
|
+import com.persagy.apm.energy.report.common.DataConstants;
|
|
|
import com.persagy.apm.energy.report.common.utils.DataUtils;
|
|
|
import com.persagy.apm.energy.report.common.utils.DateUtils;
|
|
|
import com.persagy.apm.energy.report.common.utils.HttpUtils;
|
|
|
+import com.persagy.apm.energy.report.iotdataanalysis.model.AlarmInfoVo;
|
|
|
+import com.persagy.apm.energy.report.iotdataanalysis.model.CountAndDayRateDataVo;
|
|
|
import com.persagy.apm.energy.report.iotdataanalysis.service.IDataAnalysisWebService;
|
|
|
-import com.persagy.apm.energy.report.monthly.detail.business.model.Platform;
|
|
|
+import lombok.extern.slf4j.Slf4j;
|
|
|
import org.apache.commons.collections.CollectionUtils;
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
+import org.springframework.util.StringUtils;
|
|
|
|
|
|
-import javax.annotation.Resource;
|
|
|
import java.util.*;
|
|
|
-import java.util.stream.Collectors;
|
|
|
+
|
|
|
@Service
|
|
|
+@Slf4j
|
|
|
public class IDataAnalysisWebServiceImpl implements IDataAnalysisWebService {
|
|
|
|
|
|
-// @Value("${iot.data.analysis.url}")
|
|
|
+ @Value("${iot.data.analysis.url}")
|
|
|
private String iotDataAnalysisUrl;
|
|
|
|
|
|
- @Resource
|
|
|
- private CommonService commonService;
|
|
|
-
|
|
|
- public final static String SUCCESS = "success";
|
|
|
+ @Value("${iot.data.analysis.alarmtype}")
|
|
|
+ private String alarmTypeStr;
|
|
|
|
|
|
@Override
|
|
|
- public void getPjbianSunAndzongZhiRate(QueryPjPlatformParamDTO queryPjPlatformParamDTO, Platform bianSunPlatform, Platform zongZhiPlatform) {
|
|
|
- TreeMap<Date, Double> biansun_date_rateMap = new TreeMap<>();
|
|
|
- TreeMap<Date, Double> zongzhi_date_rateMap = new TreeMap<>();
|
|
|
- Date reportDate = queryPjPlatformParamDTO.getReportDate();
|
|
|
- Date startDate = DateUtils.getFirstDayOfYear(reportDate);
|
|
|
- while (startDate.before(DateUtils.getMonthOff(reportDate, 1))) {
|
|
|
- Double bianSunRate = null;
|
|
|
- Double zongZhiRate = null;
|
|
|
- getBianSunAndZongZhiRate(queryPjPlatformParamDTO.getUserId(), queryPjPlatformParamDTO.getGroupCode(), queryPjPlatformParamDTO.getProjectId(), bianSunRate, zongZhiRate, startDate);
|
|
|
- biansun_date_rateMap.put(startDate, bianSunRate);
|
|
|
- zongzhi_date_rateMap.put(startDate, zongZhiRate);
|
|
|
- startDate = DateUtils.getMonthOff(startDate, 1);
|
|
|
+ public String getTargetCode(String userId, String groupCode, String functionItemId) {
|
|
|
+ try {
|
|
|
+ JSONObject paramObject = new JSONObject();
|
|
|
+ paramObject.put("userId", userId);
|
|
|
+ paramObject.put("groupCode", groupCode);
|
|
|
+ String url = iotDataAnalysisUrl + "/setting/alarm/show/queryAll";
|
|
|
+ String response = HttpUtils.postJson(url, paramObject.toString());
|
|
|
+ JSONObject responseObject = JSONObject.parseObject(response);
|
|
|
+ if (DataConstants.SUCCESS.equals(responseObject.getString("respMsg"))) {
|
|
|
+ List<Map> content = (List<Map>) responseObject.get("content");
|
|
|
+ if (CollectionUtils.isNotEmpty(content)) {
|
|
|
+ for (Map map : content) {
|
|
|
+ String targetCode = (String) map.get("targetCode");
|
|
|
+ if (targetCode.contains(functionItemId)) {
|
|
|
+ return targetCode;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ } catch (Exception e) {
|
|
|
+ log.error("获取数据质量基本配置信息异常:", e);
|
|
|
}
|
|
|
- List<Double> bianSunMonthlySummaries = biansun_date_rateMap.values().stream().collect(Collectors.toList());
|
|
|
- List<Double> zongZhiMonthlySummaries = zongzhi_date_rateMap.values().stream().collect(Collectors.toList());
|
|
|
- bianSunPlatform.setMonthlySummaries(bianSunMonthlySummaries);
|
|
|
- zongZhiPlatform.setMonthlySummaries(zongZhiMonthlySummaries);
|
|
|
+ return null;
|
|
|
}
|
|
|
|
|
|
- private void getBianSunAndZongZhiRate(String userId, String groupCode, String projectId, Double bianSunRate, Double zongZhiRate, Date reportDate) {
|
|
|
+ @Override
|
|
|
+ public CountAndDayRateDataVo getIotDataAnalysisData(String userId, String groupCode, String projectId, Date reportDate, String targetCode) {
|
|
|
+ CountAndDayRateDataVo vo = new CountAndDayRateDataVo();
|
|
|
try {
|
|
|
JSONObject paramObject = new JSONObject();
|
|
|
paramObject.put("userId", userId);
|
|
|
paramObject.put("groupCode", groupCode);
|
|
|
- List<String> pjIdList = new ArrayList<>();
|
|
|
- pjIdList.add(projectId);
|
|
|
- paramObject.put("projectIdList", pjIdList.toString());
|
|
|
+ paramObject.put("projectId", projectId);
|
|
|
Date startTime = DateUtils.getStartTimeOfDay(reportDate);
|
|
|
Date endTime = DateUtils.getMonthOff(startTime, 1);
|
|
|
paramObject.put("alarmStartTime", startTime);
|
|
|
paramObject.put("alarmEndTime", endTime);
|
|
|
- String url = iotDataAnalysisUrl + "/alarm/show/view/queryList";
|
|
|
+ paramObject.put("targetCode", targetCode);
|
|
|
+ String url = iotDataAnalysisUrl + "/alarm/show/detail/queryList";
|
|
|
String response = HttpUtils.postJson(url, paramObject.toString());
|
|
|
JSONObject responseObject = JSONObject.parseObject(response);
|
|
|
- if (SUCCESS.equals(responseObject.getString("respMsg"))) {
|
|
|
- List<Map> content = (List<Map>) responseObject.get("content");
|
|
|
- if (CollectionUtils.isNotEmpty(content)) {
|
|
|
- Map data = content.get(0);
|
|
|
- bianSunRate = DataUtils.parseDouble(data.get("bianSunRate"));
|
|
|
- zongZhiRate = DataUtils.parseDouble(data.get("zongZhiRate"));
|
|
|
+ if (DataConstants.SUCCESS.equals(responseObject.getString("respMsg"))) {
|
|
|
+ Map data = (Map) responseObject.get("content");
|
|
|
+ vo.setCountRate(DataUtils.parseDouble(data.get("rate")));
|
|
|
+ List<Map> dataList = (List<Map>) data.get("list");
|
|
|
+ TreeMap<Date, Double> dataMap = new TreeMap<>();
|
|
|
+ if (CollectionUtils.isNotEmpty(dataList)) {
|
|
|
+ for (Map map : dataList) {
|
|
|
+ Double rate = DataUtils.parseDouble(map.get("rate"));
|
|
|
+ long dataLong = (long) map.get("dataTime");
|
|
|
+ Date date = new Date(dataLong);
|
|
|
+ dataMap.put(date, rate);
|
|
|
+ }
|
|
|
}
|
|
|
+ vo.setDataMap(dataMap);
|
|
|
}
|
|
|
} catch (Exception e) {
|
|
|
- e.printStackTrace();
|
|
|
+ log.error("获取数据质量看板信息异常:", e);
|
|
|
}
|
|
|
+ return vo;
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- public void getAreabianSunAndzongZhiRate(QueryAreaPlatformParamDTO queryAreaPlatformParamDTO, Platform bianSunPlatform, Platform zongZhiPlatform) {
|
|
|
- // 变损合格标准
|
|
|
- Double bianSunStandardValue = bianSunPlatform.getStandardValue();
|
|
|
- // 变损校验规则
|
|
|
- String bianSunQualifyFormula = bianSunPlatform.getQualifyFormula();
|
|
|
- // 变损达标数量
|
|
|
- Integer bianSunSatisfiedCount = 0;
|
|
|
- // 变损未达标数量
|
|
|
- Integer bianSunUnsatisfiedCount = 0;
|
|
|
- // 变损未达标项目id列表
|
|
|
- List<String> bianSunUnsatisfiedPjIdList = new ArrayList<>();
|
|
|
- // 总支不平衡合格标准
|
|
|
- Double zongZhiStandardValue = bianSunPlatform.getStandardValue();
|
|
|
- // 总支不平衡校验规则
|
|
|
- String zongZhiQualifyFormula = bianSunPlatform.getQualifyFormula();
|
|
|
- // 总支不平衡达标数量
|
|
|
- Integer zongZhiSatisfiedCount = 0;
|
|
|
- // 总支不平衡未达标数量
|
|
|
- Integer zongZhiUnsatisfiedCount = 0;
|
|
|
- // 总支不平衡未达标项目id列表
|
|
|
- List<String> zongZhiUnsatisfiedPjIdList = new ArrayList<>();
|
|
|
- for (String pjId : queryAreaPlatformParamDTO.getProjectIdList()) {
|
|
|
- Double bianSunRate = null;
|
|
|
- Double zongZhiRate = null;
|
|
|
- getBianSunAndZongZhiRate(queryAreaPlatformParamDTO.getUserId(), queryAreaPlatformParamDTO.getGroupCode(), pjId, bianSunRate, zongZhiRate, queryAreaPlatformParamDTO.getReportDate());
|
|
|
- if (null != bianSunRate && null != bianSunStandardValue) {
|
|
|
- if (DataUtils.getQualifyResult(bianSunStandardValue, bianSunQualifyFormula, bianSunRate) == 0.0) {
|
|
|
- bianSunUnsatisfiedCount++;
|
|
|
- bianSunUnsatisfiedPjIdList.add(pjId);
|
|
|
- } else {
|
|
|
- bianSunSatisfiedCount++;
|
|
|
- }
|
|
|
- }
|
|
|
- if (null != zongZhiRate && null != zongZhiStandardValue) {
|
|
|
- if (DataUtils.getQualifyResult(zongZhiStandardValue, zongZhiQualifyFormula, zongZhiRate) == 0.0) {
|
|
|
- zongZhiUnsatisfiedCount++;
|
|
|
- zongZhiUnsatisfiedPjIdList.add(pjId);
|
|
|
- } else {
|
|
|
- zongZhiSatisfiedCount++;
|
|
|
+ public List<AlarmInfoVo> getAlarmInfoVo(String userId, String groupCode, List<String> projectIdList, Date reportDate) {
|
|
|
+ List<AlarmInfoVo> resultList = new ArrayList<>();
|
|
|
+ try {
|
|
|
+ JSONObject paramObject = new JSONObject();
|
|
|
+ paramObject.put("groupCode", groupCode);
|
|
|
+ paramObject.put("projectIds", projectIdList);
|
|
|
+ Date startTime = DateUtils.getStartTimeOfDay(reportDate);
|
|
|
+ Date endTime = DateUtils.getMonthOff(startTime, 1);
|
|
|
+ paramObject.put("alarmStartTime", startTime.getTime());
|
|
|
+ paramObject.put("alarmEndTime", endTime.getTime());
|
|
|
+ List<String> alarmTypeList = JSONObject.parseArray(alarmTypeStr, String.class);
|
|
|
+ paramObject.put("alarmType", alarmTypeList);
|
|
|
+ paramObject.put("alarmStartTimeDesc", true);
|
|
|
+ String url = iotDataAnalysisUrl + "/alarm/alarmList";
|
|
|
+ String response = HttpUtils.postJson(url, paramObject.toString());
|
|
|
+ JSONObject responseObject = JSONObject.parseObject(response);
|
|
|
+ if (DataConstants.SUCCESS.equals(responseObject.getString("respMsg"))) {
|
|
|
+ List<Map> content = (List<Map>) responseObject.get("content");
|
|
|
+ if (CollectionUtils.isNotEmpty(content)) {
|
|
|
+ Map<String, Integer> pjId_alarmCountMap = new HashMap<>();
|
|
|
+ Map<String, Double> pjId_alarmDurationMap = new HashMap<>();
|
|
|
+ for (Map map : content) {
|
|
|
+ String pjId = (String) map.get("projectId");
|
|
|
+ Long alarmBeginTime = (Long) map.get("alarmStartTime");
|
|
|
+ if (StringUtils.isEmpty(pjId) || null == alarmBeginTime) {
|
|
|
+ continue;
|
|
|
+ }
|
|
|
+ Long alarmEndTime = (Long) map.get("alarmEndTime");
|
|
|
+ if (null == alarmEndTime) {
|
|
|
+ alarmEndTime = endTime.getTime();
|
|
|
+ }
|
|
|
+ Double duration = DateUtils.getDateDuration(alarmBeginTime, alarmEndTime);
|
|
|
+ Integer alarmCount = pjId_alarmCountMap.get(pjId);
|
|
|
+ if (null == alarmCount) {
|
|
|
+ alarmCount = 0;
|
|
|
+ }
|
|
|
+ alarmCount++;
|
|
|
+ pjId_alarmCountMap.put(pjId, alarmCount);
|
|
|
+ Double alarmDuration = pjId_alarmDurationMap.get(pjId);
|
|
|
+ if (null == alarmDuration) {
|
|
|
+ alarmDuration = 0.0;
|
|
|
+ }
|
|
|
+ alarmDuration = alarmDuration + duration;
|
|
|
+ pjId_alarmDurationMap.put(pjId, alarmDuration);
|
|
|
+ }
|
|
|
+ if (pjId_alarmCountMap.size() != 0) {
|
|
|
+ for (Map.Entry<String, Integer> entry : pjId_alarmCountMap.entrySet()) {
|
|
|
+ AlarmInfoVo alarmInfoVo = new AlarmInfoVo();
|
|
|
+ alarmInfoVo.setProjectId(entry.getKey());
|
|
|
+ alarmInfoVo.setAlarmCount(entry.getValue());
|
|
|
+ alarmInfoVo.setTotalDuration(pjId_alarmDurationMap.get(entry.getKey()));
|
|
|
+ resultList.add(alarmInfoVo);
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
+ } catch (Exception e) {
|
|
|
+ log.error("获取数据质量报警数据异常:", e);
|
|
|
}
|
|
|
- // 根据未达标项目id列表获取不达标项目名称
|
|
|
- List<String> bianSunPjNameList = commonService.getPjNameByPjId(bianSunUnsatisfiedPjIdList);
|
|
|
- bianSunPlatform.setSatisfiedCount(bianSunSatisfiedCount);
|
|
|
- bianSunPlatform.setUnsatisfiedCount(bianSunUnsatisfiedCount);
|
|
|
- bianSunPlatform.setUnsatisfiedProjects(bianSunPjNameList);
|
|
|
- // 根据未达标项目id列表获取不达标项目名称
|
|
|
- List<String> zongZhiPjNameList = commonService.getPjNameByPjId(zongZhiUnsatisfiedPjIdList);
|
|
|
- zongZhiPlatform.setSatisfiedCount(zongZhiSatisfiedCount);
|
|
|
- zongZhiPlatform.setUnsatisfiedCount(zongZhiUnsatisfiedCount);
|
|
|
- zongZhiPlatform.setUnsatisfiedProjects(zongZhiPjNameList);
|
|
|
+ return resultList;
|
|
|
}
|
|
|
|
|
|
+
|
|
|
}
|