| | |
| | | } |
| | | List<ItemVO> predictItemList = mmPredictItemService.getByModuleId(module.getId()); |
| | | Map<String, PredictResultVO> predictResultMap = predictModuleHandler.predict(predictItemList, reqDTO.getPredictTime(), intervalTime); |
| | | // 更新Module时间 |
| | | dmModuleService.updatePredictTime(module.getId(), reqDTO.getPredictTime()); |
| | | |
| | | // for (Map.Entry<String, PredictResultVO> entry : predictResultMap.entrySet()) { |
| | | // for (Map.Entry<String, List<DataValueVO>> dataListEntry : entry.getValue().getPredictLists().entrySet()) { |
| | | // List<MdkPredictDataDTO> predictData = dataListEntry.getValue().stream().map(t -> { |
| | | // MdkPredictDataDTO dto1 = new MdkPredictDataDTO(); |
| | | // dto1.setDataTime(t.getDataTime()); |
| | | // dto1.setDataValue(t.getDataValue()); |
| | | // return dto1; |
| | | // }).collect(Collectors.toList()); |
| | | // MdkPredictItemRespDTO itemResp = new MdkPredictItemRespDTO(); |
| | | // itemResp.setItemId(dataListEntry.getKey()); |
| | | // itemResp.setPredictData(predictData); |
| | | // predictItemRespMap.put(entry.getKey(), itemResp); |
| | | // } |
| | | // } |
| | | if (reqDTO.getIsResult() == null || !reqDTO.getIsResult()) { |
| | | return resp; |
| | | } |
| | | |
| | | // for (Map.Entry<String, PredictResultVO> entry : predictResultMap.entrySet()) { |
| | | // List<MdkPredictDataDTO> predictData = entry.getValue().getPredictList().stream().map(t-> { |
| | | // MdkPredictDataDTO dto1 = new MdkPredictDataDTO(); |
| | | // dto1.setDataTime(t.getDataTime()); |
| | | // dto1.setDataValue(t.getDataValue()); |
| | | // return dto1; |
| | | // }).collect(Collectors.toList()); |
| | | // MdkPredictItemRespDTO itemResp = new MdkPredictItemRespDTO(); |
| | | // itemResp.setItemId(entry.getValue().getPredictId()); |
| | | // itemResp.setPredictData(predictData); |
| | | // predictItemRespMap.put(entry.getKey(), itemResp); |
| | | // } |
| | | for (Map.Entry<String, PredictResultVO> entry : predictResultMap.entrySet()) { |
| | | MdkPredictItemRespDTO itemResp = new MdkPredictItemRespDTO(); |
| | | itemResp.setItemId(entry.getKey()); |
| | | itemResp.setPredictTime(reqDTO.getPredictTime()); |
| | | Map<String, List<MdkPredictDataDTO>> itemPredictData = new HashMap<>(); |
| | | |
| | | Map<String, List<DataValueVO>> predictLists = predictResultHandler.convertToPredictData2(entry.getValue()); |
| | | for (Map.Entry<String, List<DataValueVO>> dataListEntry : predictLists.entrySet()) { |
| | | List<MdkPredictDataDTO> predictData = dataListEntry.getValue().stream().map(t -> { |
| | | MdkPredictDataDTO dto1 = new MdkPredictDataDTO(); |
| | | dto1.setDataTime(t.getDataTime()); |
| | | dto1.setDataValue(t.getDataValue()); |
| | | return dto1; |
| | | }).collect(Collectors.toList()); |
| | | itemPredictData.put(dataListEntry.getKey(), predictData); |
| | | } |
| | | itemResp.setPredictData(itemPredictData); |
| | | predictItemRespMap.put(entry.getKey(), itemResp); |
| | | } |
| | | } |
| | | log.info("预测计算结束: " + System.currentTimeMillis()); |
| | | } catch (Exception ex) { |
| | |
| | | |
| | | try { |
| | | log.info("预测计算开始: " + System.currentTimeMillis()); |
| | | List<MdkPredictDataDTO> predictData = new ArrayList<>(); |
| | | Map<String, List<MdkPredictDataDTO>> predictData = new HashMap<>(); |
| | | ItemVO predictItem = itemEntityFactory.getItemByItemNo(reqDTO.getItemNo()); |
| | | PredictItemHandler predictItemHandler = (PredictItemHandler)predictItemFactory.create(predictItem.getId()); |
| | | PredictItemHandler predictItemHandler = predictItemFactory.create(predictItem.getId()); |
| | | PredictResultVO predictResult = predictItemHandler.predict(reqDTO.getPredictTime(), predictItem); |
| | | Map<String, List<DataValueVO>> resultMap = predictResultHandler.convertToPredictData(predictResult); |
| | | if (!CollectionUtils.isEmpty(resultMap)) { |
| | | for (Map.Entry<String, List<DataValueVO>> entry : resultMap.entrySet()) { |
| | | predictData = ConvertUtils.sourceToTarget(entry.getValue(), MdkPredictDataDTO.class); |
| | | List<MdkPredictDataDTO> data = ConvertUtils.sourceToTarget(entry.getValue(), MdkPredictDataDTO.class); |
| | | predictData.put(entry.getKey(), data); |
| | | } |
| | | } |
| | | resp.setPredictData(predictData); |
| | |
| | | resp.setPredictTime(reqDTO.getPredictTime()); |
| | | log.info("预测计算结束: " + System.currentTimeMillis()); |
| | | } catch (Exception ex) { |
| | | log.info("预测计算异常: " + System.currentTimeMillis(),ex); |
| | | log.info("预测计算异常: " + System.currentTimeMillis(), ex); |
| | | return resp; |
| | | } |
| | | |