package com.dy.rtuMw.server.local; import com.dy.common.mw.protocol.Command; import com.dy.rtuMw.server.local.localProtocol.*; /** * @Author liurunyu * @Date 2023/12/21 15:56 * @LastEditTime 2023/12/21 15:56 * @Description */ public class CommandInnerDeaLer { /** * 处理内部命令 * @param com * @return */ public Command deal(Command com) throws Exception{ String code = com.getCode() ; if(code.equals(CodeLocal.clock)){ return this.clock(com) ; }else if(code.equals(CodeLocal.onLine)){ return this.onLine(com) ; }else if(code.equals(CodeLocal.allProtocols)){ return this.allProtocols(com) ; } return ReturnCommand.errored("出错,收到内部命令的功能码不能识别!", com.getId(), com.getCode()) ; } /** * 查询通信中间件时钟 * @throws Exception */ private Command clock(Command command) throws Exception{ ClockVo c = new ClockDeal().deal() ; return ReturnCommand.successed("查询通信中间件时钟", command.getId(), command.getCode(), c) ; } /** * 查询所有RTU在线情况 * @throws Exception */ private Command onLine(Command command) throws Exception{ RtuOnLineVo ol = new RtuOnLineDeal().deal() ; return ReturnCommand.successed("查询所有测站在线情况结果", command.getId(), command.getCode(), ol) ; } /** * 查询所有RTU协议配置 * @throws Exception */ private Command allProtocols(Command command) throws Exception{ RtuProtocolVo mc = new RtuProtocolsDeal().deal() ; return ReturnCommand.successed("查询所有通信协议配置", command.getId(), command.getCode(), mc) ; } }