diff --git a/detection/src/main/java/com/njcn/gather/detection/handler/SocketFreqConverterDevService.java b/detection/src/main/java/com/njcn/gather/detection/handler/SocketFreqConverterDevService.java index 316fc35d..c2ee530e 100644 --- a/detection/src/main/java/com/njcn/gather/detection/handler/SocketFreqConverterDevService.java +++ b/detection/src/main/java/com/njcn/gather/detection/handler/SocketFreqConverterDevService.java @@ -54,6 +54,8 @@ public class SocketFreqConverterDevService { private String monitorId; private String userId; + public static final String DIP_DATA_SUFFIX = "&&VOLTAGE"; + /** * 连接设备Socket * @@ -224,7 +226,7 @@ public class SocketFreqConverterDevService { private void sendGetDipDataMsg(String devTag) { SocketMsg socketMsg = new SocketMsg<>(); - socketMsg.setRequestId(SourceOperateCodeEnum.FORMAL_REAL.getValue() + "&&VOLTAGE"); + socketMsg.setRequestId(SourceOperateCodeEnum.FORMAL_REAL.getValue() + DIP_DATA_SUFFIX); socketMsg.setOperateCode(SourceOperateCodeEnum.OPER_GATHER.getValue()); DevPhaseSequenceParam phaseSequenceParam = new DevPhaseSequenceParam(); @@ -309,8 +311,7 @@ public class SocketFreqConverterDevService { testRes.setStartTime(lastStatusData.getTimestamp()); FormalTestManager.pendingDipTaskMap.put(pqDipData.getId(), new FormalTestManager.PendingDipTask( - pqDipData.getId(), - pqDipData.getStartTime(), + pqDipData, targetEndTime, originalTolerant )); diff --git a/detection/src/main/java/com/njcn/gather/detection/handler/SocketFreqConverterService.java b/detection/src/main/java/com/njcn/gather/detection/handler/SocketFreqConverterService.java index d3042912..3daa2b9a 100644 --- a/detection/src/main/java/com/njcn/gather/detection/handler/SocketFreqConverterService.java +++ b/detection/src/main/java/com/njcn/gather/detection/handler/SocketFreqConverterService.java @@ -7,16 +7,19 @@ import cn.hutool.json.JSONUtil; import com.alibaba.fastjson.JSON; import com.njcn.gather.detection.pojo.dto.FreqConverterRespDTO; import com.njcn.gather.detection.pojo.enums.SourceOperateCodeEnum; +import com.njcn.gather.detection.pojo.vo.SocketDataMsg; import com.njcn.gather.detection.pojo.vo.SocketMsg; import com.njcn.gather.detection.util.socket.FormalTestManager; import com.njcn.gather.detection.util.socket.SocketManager; import com.njcn.gather.detection.util.socket.cilent.NettyClient; import com.njcn.gather.detection.util.socket.cilent.NettyFreqConverterClientHandler; import com.njcn.gather.detection.util.socket.config.SocketConnectionConfig; +import com.njcn.gather.detection.util.socket.websocket.WebServiceManager; import com.njcn.gather.freqConverter.config.FreqConverterConfig; import com.njcn.gather.freqConverter.pojo.po.FreqConverterStatus; import com.njcn.gather.freqConverter.pojo.po.PqFreqConverterConfig; import com.njcn.gather.freqConverter.pojo.po.PqFreqConverterTestRes; +import com.njcn.gather.freqConverter.pojo.vo.TolerantPointVO; import com.njcn.gather.freqConverter.service.IFreqConverterService; import com.njcn.gather.freqConverter.service.IPqFreqConverterConfigService; import com.njcn.gather.freqConverter.service.IPqFreqConverterTestResService; @@ -257,9 +260,9 @@ public class SocketFreqConverterService { List finishedDipIdList = new ArrayList<>(); List testResList = new ArrayList<>(); for (FormalTestManager.PendingDipTask task : FormalTestManager.pendingDipTaskMap.values()) { - PqFreqConverterTestRes testRes = pqFreqConverterTestResService.getByDipId(suffix, task.getDipId()); + PqFreqConverterTestRes testRes = pqFreqConverterTestResService.getByDipId(suffix, task.getPqDipData().getId()); if (Objects.isNull(testRes)) { - finishedDipIdList.add(task.getDipId()); + finishedDipIdList.add(task.getPqDipData().getId()); continue; } @@ -270,9 +273,20 @@ public class SocketFreqConverterService { testResList.add(testRes); if (freqConverterStatus.getTimestamp().isAfter(task.getTargetEndTime())) { - finishedDipIdList.add(task.getDipId()); + finishedDipIdList.add(task.getPqDipData().getId()); + + SocketDataMsg socketDataMsg = new SocketDataMsg(); + socketDataMsg.setRequestId(SourceOperateCodeEnum.FORMAL_REAL + SocketFreqConverterDevService.DIP_DATA_SUFFIX); + + TolerantPointVO tolerantPointVO = new TolerantPointVO(); + tolerantPointVO.setResidualVoltage(task.getPqDipData().getResidualVoltage()); + tolerantPointVO.setDurationMs(task.getPqDipData().getDurationMs()); + tolerantPointVO.setTolerant(testRes.getTolerant()); + socketDataMsg.setData(JSON.toJSONString(tolerantPointVO)); + WebServiceManager.sendMsg(this.userId, JSON.toJSONString(socketDataMsg)); } } + pqFreqConverterTestResService.saveOrUpdateTestRes(suffix, testResList); for (String dipId : finishedDipIdList) { diff --git a/detection/src/main/java/com/njcn/gather/detection/util/socket/FormalTestManager.java b/detection/src/main/java/com/njcn/gather/detection/util/socket/FormalTestManager.java index 02c29518..8499a6de 100644 --- a/detection/src/main/java/com/njcn/gather/detection/util/socket/FormalTestManager.java +++ b/detection/src/main/java/com/njcn/gather/detection/util/socket/FormalTestManager.java @@ -7,6 +7,7 @@ import com.njcn.gather.detection.pojo.po.DevData; import com.njcn.gather.detection.pojo.vo.DevLineTestResult; import com.njcn.gather.device.pojo.enums.PatternEnum; import com.njcn.gather.device.pojo.vo.PreDetection; +import com.njcn.gather.dip.pojo.po.PqDipData; import com.njcn.gather.plan.pojo.enums.DataSourceEnum; import com.njcn.gather.plan.pojo.po.AdPlan; import com.njcn.gather.plan.pojo.po.AdPlanTestConfig; @@ -227,14 +228,13 @@ public class FormalTestManager { @Data public static class PendingDipTask { - private final String dipId; - private LocalDateTime startTime; + private PqDipData pqDipData; + private LocalDateTime targetEndTime; private Boolean originalTolerant; - public PendingDipTask(String dipId, LocalDateTime startTime, LocalDateTime targetEndTime, Boolean originalTolerant) { - this.dipId = dipId; - this.startTime = startTime; + public PendingDipTask(PqDipData pqDipData, LocalDateTime targetEndTime, Boolean originalTolerant) { + this.pqDipData = pqDipData; this.targetEndTime = targetEndTime; this.originalTolerant = originalTolerant; } diff --git a/detection/src/main/java/com/njcn/gather/freqConverter/controller/FreqConverterController.java b/detection/src/main/java/com/njcn/gather/freqConverter/controller/FreqConverterController.java index 92e3cff2..d7f8ec9f 100644 --- a/detection/src/main/java/com/njcn/gather/freqConverter/controller/FreqConverterController.java +++ b/detection/src/main/java/com/njcn/gather/freqConverter/controller/FreqConverterController.java @@ -95,12 +95,12 @@ public class FreqConverterController extends BaseController { } @GetMapping("/result") - @ApiOperation("查询耐受实验结果") + @ApiOperation("查询变频器测试结果") @ApiImplicitParam(name = "param", value = "查询参数", required = true) public HttpResult> result(@RequestParam("converterId") String converterId) { String methodDescribe = getMethodDescribe("result"); LogUtil.njcnDebug(log, "{},查询ID数据为:{}", methodDescribe, converterId); - List tolerantPoints = freqConverterService.getTolerantPoints(converterId); + List tolerantPoints = freqConverterService.getDipPoints(converterId); return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, tolerantPoints, methodDescribe); } } diff --git a/detection/src/main/java/com/njcn/gather/freqConverter/service/IFreqConverterService.java b/detection/src/main/java/com/njcn/gather/freqConverter/service/IFreqConverterService.java index 2c4f34ab..ecb136df 100644 --- a/detection/src/main/java/com/njcn/gather/freqConverter/service/IFreqConverterService.java +++ b/detection/src/main/java/com/njcn/gather/freqConverter/service/IFreqConverterService.java @@ -46,7 +46,7 @@ public interface IFreqConverterService extends IService { * @param converterId 变频器Id * @return 是否耐受 */ - List getTolerantPoints(String converterId); + List getDipPoints(String converterId); List getDipDurationStatusData(Integer suffix, LocalDateTime startTime, LocalDateTime endTime); diff --git a/detection/src/main/java/com/njcn/gather/freqConverter/service/impl/FreqConverterServiceImpl.java b/detection/src/main/java/com/njcn/gather/freqConverter/service/impl/FreqConverterServiceImpl.java index 3f2cf056..d879abdb 100644 --- a/detection/src/main/java/com/njcn/gather/freqConverter/service/impl/FreqConverterServiceImpl.java +++ b/detection/src/main/java/com/njcn/gather/freqConverter/service/impl/FreqConverterServiceImpl.java @@ -18,8 +18,6 @@ import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; import java.time.LocalDateTime; -import java.util.ArrayList; -import java.util.Comparator; import java.util.List; import java.util.stream.Collectors; @@ -41,13 +39,14 @@ public class FreqConverterServiceImpl extends ServiceImpl listStatusData(String converterId) { Integer suffix = pqFreqConverterConfigService.getSuffix(converterId); - DynamicTableNameHandler.setTableName("pq_freq_converter_status_" + suffix); + DynamicTableNameHandler.setTableName(PqFreqConverterConfigServiceImpl.PQ_FREQ_CONVERTER_STATUS_TB_PREFIX + suffix); LambdaQueryChainWrapper wrapper = this.lambdaQuery().orderByAsc(FreqConverterStatus::getTimestamp); List result = wrapper.list(); DynamicTableNameHandler.remove(); @@ -68,38 +67,33 @@ public class FreqConverterServiceImpl extends ServiceImpl getTolerantPoints(String converterId) { + public List getDipPoints(String converterId) { Integer suffix = pqFreqConverterConfigService.getSuffix(converterId); - List dipDataList = dipDataService.listDipData(suffix); - List testResList = pqFreqConverterTestResService.listTestRes(suffix); - dipDataList.sort(Comparator.comparing(PqDipData::getDurationMs)); - List res = new ArrayList<>(); - for (PqDipData dipData : dipDataList) { + DynamicTableNameHandler.setTableName(PqFreqConverterConfigServiceImpl.PQ_FREQ_CONVERTER_TEST_RES_TB_PREFIX + suffix); + List pqFreqConverterTestResList = pqFreqConverterTestResService.list(); + List result = pqFreqConverterTestResList.stream().map(item -> { + PqDipData pqDipData = dipDataService.getById(item.getDipId()); TolerantPointVO tolerantPointVO = new TolerantPointVO(); - tolerantPointVO.setDurationMs(dipData.getDurationMs()); - tolerantPointVO.setResidualVoltage(dipData.getResidualVoltage()); - List matchedResList = testResList.stream() - .filter(item -> dipData.getId().equals(item.getDipId())) - .collect(Collectors.toList()); + tolerantPointVO.setDurationMs(pqDipData.getDurationMs()); + tolerantPointVO.setResidualVoltage(pqDipData.getResidualVoltage()); + tolerantPointVO.setTolerant(item.getTolerant()); + return tolerantPointVO; + }).collect(Collectors.toList()); + DynamicTableNameHandler.remove(); - boolean tolerant = matchedResList.stream().allMatch(PqFreqConverterTestRes::getTolerant); - tolerantPointVO.setTolerant(tolerant); - - res.add(tolerantPointVO); - } - return res; + return result; } @Override public List getDipDurationStatusData(Integer suffix, LocalDateTime startTime, LocalDateTime endTime) { - DynamicTableNameHandler.setTableName("pq_freq_converter_status_" + suffix); + DynamicTableNameHandler.setTableName(PqFreqConverterConfigServiceImpl.PQ_FREQ_CONVERTER_STATUS_TB_PREFIX + suffix); List result = this.lambdaQuery() .between(FreqConverterStatus::getTimestamp, startTime, endTime) .orderByAsc(FreqConverterStatus::getTimestamp) @@ -110,7 +104,7 @@ public class FreqConverterServiceImpl extends ServiceImpl implements IPqFreqConverterConfigService { private final TableGenMapper tableGenMapper; + /** + * 表名前缀 + */ + public static final String PQ_FREQ_CONVERTER_STATUS_TB_PREFIX = "pq_freq_converter_status_"; + public static final String PQ_DIP_DATA_TB_PREFIX = "pq_diq_data_"; + public static final String PQ_FREQ_CONVERTER_TEST_RES_TB_PREFIX = "pq_freq_converter_test_res_"; + @Override public Page listPqFreqConverterConfigs(PqFreqConverterParam.QueryParam queryParam) { QueryWrapper wrapper = new QueryWrapper<>(); @@ -53,7 +60,7 @@ public class PqFreqConverterConfigServiceImpl extends ServiceImpl pqFreqConverterConfigs = this.listByIds(ids); for (PqFreqConverterConfig pqFreqConverterConfig : pqFreqConverterConfigs) { Integer suffix = pqFreqConverterConfig.getSuffix(); - sql.append("pq_freq_converter_status_" + suffix + ",") - .append("pq_dip_data_" + suffix + ",") - .append("pq_freq_converter_test_res_" + suffix + ","); + sql.append(PQ_FREQ_CONVERTER_STATUS_TB_PREFIX + suffix + ",") + .append(PQ_DIP_DATA_TB_PREFIX + suffix + ",") + .append(PQ_FREQ_CONVERTER_TEST_RES_TB_PREFIX + suffix + ","); } sql.deleteCharAt(sql.length() - 1);