|
|
@ -216,7 +216,6 @@ public class RealMonitorServiceImpl implements IRealMonitorService { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public TextMessage getSendMessage(MessageParamVo message) { |
|
|
|
public TextMessage getSendMessage(MessageParamVo message) { |
|
|
|
long beginTime = System.currentTimeMillis(); |
|
|
|
long beginTime = System.currentTimeMillis(); |
|
|
|
Thread thread = Thread.currentThread(); |
|
|
|
|
|
|
|
// 权限机构过滤
|
|
|
|
// 权限机构过滤
|
|
|
|
if(ObjectUtil.isEmpty(message) || CollectionUtil.isEmpty(message.getDeptIds())){ |
|
|
|
if(ObjectUtil.isEmpty(message) || CollectionUtil.isEmpty(message.getDeptIds())){ |
|
|
|
return null; |
|
|
|
return null; |
|
|
@ -226,7 +225,7 @@ public class RealMonitorServiceImpl implements IRealMonitorService { |
|
|
|
if(CollectionUtil.isEmpty(realStationVoList)){ |
|
|
|
if(CollectionUtil.isEmpty(realStationVoList)){ |
|
|
|
return null; |
|
|
|
return null; |
|
|
|
} |
|
|
|
} |
|
|
|
log.info(thread.getName() + "步骤1获取所有监控缓存数据 耗时 : {}",System.currentTimeMillis() - beginTime); |
|
|
|
log.info("步骤1获取所有监控缓存数据 耗时 : {}",System.currentTimeMillis() - beginTime); |
|
|
|
beginTime = System.currentTimeMillis(); |
|
|
|
beginTime = System.currentTimeMillis(); |
|
|
|
// 集中监控响应站点数据
|
|
|
|
// 集中监控响应站点数据
|
|
|
|
List<RealStationVo> validList = realStationVoList.stream().filter(o -> message.getDeptIds().contains(o.getStationDeptId())).collect(Collectors.toList()); |
|
|
|
List<RealStationVo> validList = realStationVoList.stream().filter(o -> message.getDeptIds().contains(o.getStationDeptId())).collect(Collectors.toList()); |
|
|
@ -241,11 +240,11 @@ public class RealMonitorServiceImpl implements IRealMonitorService { |
|
|
|
Map<String, HeWeatherWeatherNowResponse> nowWeather = this.weatherService.getNowWeather(codes); |
|
|
|
Map<String, HeWeatherWeatherNowResponse> nowWeather = this.weatherService.getNowWeather(codes); |
|
|
|
// 七日内天气
|
|
|
|
// 七日内天气
|
|
|
|
Map<String, HeWeatherWeatherDailyResponse> weekWeather = this.weatherService.getWeekWeather(codes); |
|
|
|
Map<String, HeWeatherWeatherDailyResponse> weekWeather = this.weatherService.getWeekWeather(codes); |
|
|
|
log.info(thread.getName() + "步骤2获取天气 耗时 : {}",System.currentTimeMillis() - beginTime); |
|
|
|
log.info("步骤2获取天气 耗时 : {}",System.currentTimeMillis() - beginTime); |
|
|
|
beginTime = System.currentTimeMillis(); |
|
|
|
beginTime = System.currentTimeMillis(); |
|
|
|
// 站点水位数据
|
|
|
|
// 站点水位数据
|
|
|
|
List<WaterLevelVo> levelList = (List<WaterLevelVo>) redisTemplate.opsForValue().get(loadwater_level_key); |
|
|
|
List<WaterLevelVo> levelList = (List<WaterLevelVo>) redisTemplate.opsForValue().get(loadwater_level_key); |
|
|
|
log.info(thread.getName() + "步骤3获取水位数据 耗时 : {}",System.currentTimeMillis() - beginTime); |
|
|
|
log.info("步骤3获取水位数据 耗时 : {}",System.currentTimeMillis() - beginTime); |
|
|
|
beginTime = System.currentTimeMillis(); |
|
|
|
beginTime = System.currentTimeMillis(); |
|
|
|
// 遍历站点
|
|
|
|
// 遍历站点
|
|
|
|
validList.forEach(item->{ |
|
|
|
validList.forEach(item->{ |
|
|
@ -256,8 +255,12 @@ public class RealMonitorServiceImpl implements IRealMonitorService { |
|
|
|
// 总有功率
|
|
|
|
// 总有功率
|
|
|
|
this.activePower(item); |
|
|
|
this.activePower(item); |
|
|
|
}); |
|
|
|
}); |
|
|
|
log.info(thread.getName() + "步骤4站点数据处理 耗时 : {}",System.currentTimeMillis() - beginTime); |
|
|
|
log.info("步骤4站点数据处理 耗时 : {}",System.currentTimeMillis() - beginTime); |
|
|
|
return new TextMessage(JSONObject.toJSONString(validList.stream().sorted(Comparator.comparing((RealStationVo::getSort))).collect(Collectors.toList()))); |
|
|
|
return new TextMessage(JSONObject.toJSONString(validList.stream().peek(o->{ |
|
|
|
|
|
|
|
if(ObjectUtil.isEmpty(o.getSort())){ |
|
|
|
|
|
|
|
o.setSort(999); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}).sorted(Comparator.comparing((RealStationVo::getSort))).collect(Collectors.toList()))); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|