package com.ycl.calculate; import com.ycl.platform.domain.entity.CheckIndexVideo; import com.ycl.platform.domain.result.UY.MonitorQualifyResult; import com.ycl.platform.domain.vo.TMonitorVO; import com.ycl.platform.mapper.CheckIndexVideoMapper; import com.ycl.platform.mapper.TMonitorMapper; import com.ycl.platform.service.ICheckIndexVideoService; import constant.ApiConstants; import constant.CheckThreadConstants; import lombok.extern.slf4j.Slf4j; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import utils.DateUtils; import java.math.BigDecimal; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; /** * 计算一机一档注册率、档案考核比 * 获取分省厅、区域的map k为deptId或者Province_deptId * 更新或新增 */ @Component @Slf4j public class MonitorRegistrationCalculation extends IndexCalculationServe implements CalculationStrategy { @Autowired private CheckIndexVideoMapper checkIndexVideoMapper; @Autowired private ICheckIndexVideoService checkIndexVideoService; @Autowired private TMonitorMapper monitorMapper; //区域视频在线率的内部类 protected static class AreaStats { //当日档案数 int todayFiles = 0; //未注册的数量 int newSites = 0; //全年留存数 int allFiles = 0; } //TODO:改为MonitorQualifyResult @Override public void calculate(List list) { //获取分区域的指标数量 Map areaStatsMap = getAreaStatsMap(list); if (areaStatsMap == null) return; //查数据库补充全年留存数 List monitorVOS = monitorMapper.selectMonitorVOList(); areaStatsMap.forEach((key,areaStats)->{ if(key.startsWith(ApiConstants.Province)){ long count = monitorVOS.stream().filter(vo -> ApiConstants.TRUE.equals(vo.getProvinceTag())) .filter(vo -> key.split("_")[1].equals(vo.getDeptId() + "")).count(); areaStats.allFiles = Integer.parseInt(count+""); }else { long count = monitorVOS.stream().filter(vo -> key.equals(vo.getDeptId() + "")).count(); areaStats.allFiles = Integer.parseInt(count+""); } }); // 查询是否index表已经存在今日数据 List checkIndexVideoList = checkIndexVideoMapper.selectToday(DateUtils.getDate()); List checkIndexVideos = new ArrayList<>(); areaStatsMap.forEach((key, stats) -> { if (stats.todayFiles > 0) { CheckIndexVideo checkIndexVideo = createOrUpdateCheckIndexVideo(key, stats, checkIndexVideoList); if (checkIndexVideo != null) { checkIndexVideos.add(checkIndexVideo); } } }); checkIndexVideoService.saveOrUpdateBatch(checkIndexVideos); } /** * 累计总点位数、在线点位数、重点点位数、重点点位在线数、指挥图像数、指挥图像在线数 */ @Override public void updateAreaStats(Map areaStatsMap, String key, MonitorQualifyResult result) { //返回对象的引用,如果不存在会放入新的key,value AreaStats stats = areaStatsMap.computeIfAbsent(key, k -> new AreaStats()); stats.todayFiles++; if (result.getNewDevice()!=null && result.getNewDevice()) { stats.newSites++; } } /** * 视频点位在线率 */ private CheckIndexVideo createOrUpdateCheckIndexVideo(String key, AreaStats stats, List checkIndexVideoList) { CheckIndexVideo checkIndexVideo = getCheckIndex(key, checkIndexVideoList, CheckIndexVideo.class); if (checkIndexVideo == null) { return null; } //调用一机一档注册率 Map param = new HashMap<>(); param.put("totalSites", stats.todayFiles); param.put("newSites", stats.newSites); BigDecimal monitorRegistration = monitorRegistration(param); checkIndexVideo.setMonitorRegistration(monitorRegistration); //调用档案考核比计算 Map archiveParam = new HashMap<>(); archiveParam.put("allFiles", stats.allFiles); archiveParam.put("todayFiles", stats.todayFiles); BigDecimal archivesRate = archivesRate(archiveParam); //如果档案考核比低于0.9不得分 if (new BigDecimal(CheckThreadConstants.Check_Video_Archive).compareTo(archivesRate) <= 0) { checkIndexVideo.setArchivesRate(archivesRate); } else { checkIndexVideo.setArchivesRate(BigDecimal.ZERO); } return checkIndexVideo; } }