| | |
| | | import com.dy.common.mw.protocol.Command; |
| | | import com.dy.common.mw.protocol.rtuState.RtuStatus; |
| | | import com.dy.rtuMw.server.local.localProtocol.*; |
| | | import com.dy.rtuMw.server.mqtt.DevStatus; |
| | | import com.dy.rtuMw.server.mqtt.DevStatusDealer; |
| | | import com.dy.rtuMw.server.mqtt.MqttUnit; |
| | | |
| | | import java.util.HashMap; |
| | |
| | | * @return |
| | | */ |
| | | public Command deal(Command com) throws Exception{ |
| | | Command rCom ; |
| | | String code = com.getCode() ; |
| | | if(code.equals(CodeLocal.clock)){ |
| | | return this.clock(com) ; |
| | | }else if(code.equals(CodeLocal.onAllLine)){ |
| | | return this.onAllLine(com) ; |
| | | }else if(code.equals(CodeLocal.onPartLine)){ |
| | | return this.onPartLine(com) ; |
| | | }else if(code.equals(CodeLocal.onLineStatistics)){ |
| | | return this.onLineStateStatistics(com) ; |
| | | }else if(code.equals(CodeLocal.allRtuStates)){ |
| | | return this.allRtuStates(com) ; |
| | | }else if(code.equals(CodeLocal.partRtuStates)){ |
| | | return this.someRtuStates(com) ; |
| | | }else if(code.equals(CodeLocal.oneRtuStates)){ |
| | | return this.oneRtuStates(com) ; |
| | | }else if(code.equals(CodeLocal.allProtocols)){ |
| | | return this.allProtocols(com) ; |
| | | }else if(code.equals(CodeLocal.stopTcpSv)){ |
| | | return this.stopTcpSv(com) ; |
| | | }else if(code.equals(CodeLocal.recoverTcpSv)){ |
| | | return this.recoverTcpSv(com) ; |
| | | }else if(code.equals(CodeLocal.recoverMqttSv)){ |
| | | return this.stopMqttSv(com) ; |
| | | }else if(code.equals(CodeLocal.mwState)){ |
| | | return this.mwInfo(com) ; |
| | | switch (code) { |
| | | case CodeLocal.clock -> { |
| | | rCom = this.clock(com); |
| | | break; |
| | | } |
| | | return ReturnCommand.errored("出错,收到内部命令的功能码不能识别!", com.getId(), com.getCode()) ; |
| | | case CodeLocal.mwState -> { |
| | | rCom = this.mwInfo(com); |
| | | break; |
| | | } |
| | | |
| | | //////////////////////////////////////////// |
| | | // |
| | | // 以下是相关基于TCP连接的RTU设备的内部命令 |
| | | // |
| | | //////////////////////////////////////////// |
| | | case CodeLocal.onAllLine -> { |
| | | rCom = this.onAllLine(com); |
| | | break; |
| | | } |
| | | case CodeLocal.onPartLine -> { |
| | | rCom = this.onPartLine(com); |
| | | break; |
| | | } |
| | | case CodeLocal.onLineStatistics -> { |
| | | rCom = this.onLineStateStatistics(com); |
| | | break; |
| | | } |
| | | case CodeLocal.allRtuStates -> { |
| | | rCom = this.allRtuStates(com); |
| | | break; |
| | | } |
| | | case CodeLocal.partRtuStates -> { |
| | | rCom = this.someRtuStates(com); |
| | | break; |
| | | } |
| | | case CodeLocal.oneRtuStates -> { |
| | | rCom = this.oneRtuStates(com); |
| | | break; |
| | | } |
| | | case CodeLocal.allProtocols -> { |
| | | rCom = this.allProtocols(com); |
| | | break; |
| | | } |
| | | case CodeLocal.stopTcpSv -> { |
| | | rCom = this.stopTcpSv(com); |
| | | break; |
| | | } |
| | | case CodeLocal.recoverTcpSv -> { |
| | | rCom = this.recoverTcpSv(com); |
| | | break; |
| | | } |
| | | |
| | | |
| | | //////////////////////////////////////////// |
| | | // |
| | | // 以下是相关基于MQTT连接的设备的内部命令 |
| | | // |
| | | //////////////////////////////////////////// |
| | | case CodeLocal.onAllLineMqtt -> { |
| | | rCom = this.onAllLineMqtt(com); |
| | | break; |
| | | } |
| | | case CodeLocal.onPartLineMqtt -> { |
| | | rCom = this.onPartLineMqtt(com); |
| | | break; |
| | | } |
| | | case CodeLocal.onLineStatisticsMqtt -> { |
| | | rCom = this.onLineStateStatisticsMqtt(com); |
| | | break; |
| | | } |
| | | case CodeLocal.allRtuStatesMqtt -> { |
| | | rCom = this.allRtuStatesMqtt(com); |
| | | break; |
| | | } |
| | | case CodeLocal.partRtuStatesMqtt -> { |
| | | rCom = this.someRtuStatesMqtt(com); |
| | | break; |
| | | } |
| | | case CodeLocal.oneRtuStatesMqtt -> { |
| | | rCom = this.oneRtuStatesMqtt(com); |
| | | break; |
| | | } |
| | | case CodeLocal.stopMqttSv -> { |
| | | rCom = this.stopMqttSv(com); |
| | | break; |
| | | } |
| | | default -> { |
| | | rCom = ReturnCommand.errored("出错,收到内部命令的功能码不能识别!", com.getId(), com.getCode()); |
| | | break; |
| | | } |
| | | } |
| | | return rCom ; |
| | | } |
| | | |
| | | /** |
| | | * 查询通信中间件时钟 |
| | | * @param command |
| | | * @throws Exception |
| | | */ |
| | | private Command clock(Command command) throws Exception{ |
| | |
| | | Map<String, RtuStatus> map = new RtuStatusDeal().dealSome(rtuAddrGrp) ; |
| | | return ReturnCommand.successed("查询部分RTU状态结果", command.getId(), command.getCode(), map) ; |
| | | }else{ |
| | | return ReturnCommand.errored("出错,命令参数应该是所查询RTU的地址串", command.getId(), command.getCode()) ; |
| | | return ReturnCommand.errored("出错,命令参数应该有所查询RTU的地址串", command.getId(), command.getCode()) ; |
| | | } |
| | | } |
| | | |
| | |
| | | RtuStatus rtuStatus = new RtuStatusDeal().dealOne(rtuAddr) ; |
| | | return ReturnCommand.successed("查询一个RTU状态结果", command.getId(), command.getCode(), rtuStatus) ; |
| | | }else{ |
| | | return ReturnCommand.errored("出错,命令参数应该是所查询RTU的地址", command.getId(), command.getCode()) ; |
| | | return ReturnCommand.errored("出错,命令参数应该有所查询RTU的地址", command.getId(), command.getCode()) ; |
| | | } |
| | | } |
| | | |
| | |
| | | return ReturnCommand.successed("已经启动恢复TCP服务", command.getId(), command.getCode(), null) ; |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 停止TCP服务,不再接入新的TCP连接,已经TCP连接的全部断连接 |
| | | * 查询所有MQTT设备在线情况 |
| | | * @throws Exception |
| | | */ |
| | | private Command onAllLineMqtt(Command command) throws Exception{ |
| | | HashMap<String, Boolean> map = DevStatusDealer.allOnLine() ; |
| | | return ReturnCommand.successed("查询所有Mqtt设备在线情况结果", command.getId(), command.getCode(), map) ; |
| | | } |
| | | |
| | | /** |
| | | * 查询部分MQTT设备在线情况 |
| | | * @throws Exception |
| | | */ |
| | | private Command onPartLineMqtt(Command command) throws Exception{ |
| | | if(command.param != null && command.param instanceof String && !command.param.equals("")){ |
| | | String[] devIds = ((String)command.param).split(","); |
| | | HashMap<String, Boolean> map = DevStatusDealer.partOnLine(devIds) ; |
| | | return ReturnCommand.successed("查询部分Mqtt设备在线情况结果", command.getId(), command.getCode(), map) ; |
| | | }else{ |
| | | return ReturnCommand.errored("出错,命令参数应该有所查询Mqtt设备的地址串", command.getId(), command.getCode()) ; |
| | | } |
| | | } |
| | | |
| | | /** |
| | | * 统计MQTT设备在线与不在线情况 |
| | | * @throws Exception |
| | | */ |
| | | private Command onLineStateStatisticsMqtt(Command command) throws Exception{ |
| | | RtuOnLineStateStatisticsVo vo = DevStatusDealer.statisticsOnLine() ; |
| | | return ReturnCommand.successed("查询所有Mqtt设备在线情况结果", command.getId(), command.getCode(), vo) ; |
| | | } |
| | | |
| | | /** |
| | | * 查询所有MQTT设备状态 |
| | | * @throws Exception |
| | | */ |
| | | private Command allRtuStatesMqtt(Command command) throws Exception{ |
| | | Map<String, DevStatus> map = DevStatusDealer.allStatus() ; |
| | | return ReturnCommand.successed("查询所有Mqtt设备状态结果", command.getId(), command.getCode(), map) ; |
| | | } |
| | | |
| | | /** |
| | | * 查询部分MQTT设备状态 |
| | | * @throws Exception |
| | | */ |
| | | private Command someRtuStatesMqtt(Command command) throws Exception{ |
| | | if(command.param != null && command.param instanceof String && !command.param.equals("")){ |
| | | String[] devIds = ((String)command.param).split(","); |
| | | Map<String, DevStatus> map = DevStatusDealer.someStatus(devIds) ; |
| | | return ReturnCommand.successed("查询部分Mqtt设备状态结果", command.getId(), command.getCode(), map) ; |
| | | }else{ |
| | | return ReturnCommand.errored("出错,命令参数应该有所查询Mqtt设备的地址串", command.getId(), command.getCode()) ; |
| | | } |
| | | } |
| | | |
| | | /** |
| | | * 查询部分MQTT设备状态 |
| | | * @throws Exception |
| | | */ |
| | | private Command oneRtuStatesMqtt(Command command) throws Exception{ |
| | | if(command.param != null && command.param instanceof String && !command.param.equals("")){ |
| | | String devId = (String)command.param; |
| | | DevStatus devStatus = DevStatusDealer.oneStatus(devId) ; |
| | | return ReturnCommand.successed("查询一个Mqtt设备状态结果", command.getId(), command.getCode(), devStatus) ; |
| | | }else{ |
| | | return ReturnCommand.errored("出错,命令参数应该有所查询Mqtt设备的地址", command.getId(), command.getCode()) ; |
| | | } |
| | | } |
| | | /** |
| | | * 停止MQTT服务 |
| | | * @throws Exception |
| | | */ |
| | | private Command stopMqttSv(Command command) throws Exception{ |
| | |
| | | |
| | | |
| | | /** |
| | | * 恢复TCP服务,接入新的TCP连接 |
| | | * 恢复MQTT服务 |
| | | * @throws Exception |
| | | */ |
| | | private Command recoverMqttSv(Command command) throws Exception{ |