From 0ee340a21c1061cb68eb124ab26b482552634dba Mon Sep 17 00:00:00 2001
From: zhubaomin <zhubaomin>
Date: 星期三, 23 十月 2024 20:23:22 +0800
Subject: [PATCH] Merge branch 'master' of http://8.140.179.55:20000/r/pipIrr-SV

---
 pipIrr-platform/pipIrr-mw/pipIrr-mw-rtu/src/main/java/com/dy/rtuMw/server/local/CommandInnerDeaLer.java |   31 ++++++++++++++++++++++++-------
 1 files changed, 24 insertions(+), 7 deletions(-)

diff --git a/pipIrr-platform/pipIrr-mw/pipIrr-mw-rtu/src/main/java/com/dy/rtuMw/server/local/CommandInnerDeaLer.java b/pipIrr-platform/pipIrr-mw/pipIrr-mw-rtu/src/main/java/com/dy/rtuMw/server/local/CommandInnerDeaLer.java
index 927c1b0..3148b1d 100644
--- a/pipIrr-platform/pipIrr-mw/pipIrr-mw-rtu/src/main/java/com/dy/rtuMw/server/local/CommandInnerDeaLer.java
+++ b/pipIrr-platform/pipIrr-mw/pipIrr-mw-rtu/src/main/java/com/dy/rtuMw/server/local/CommandInnerDeaLer.java
@@ -5,6 +5,8 @@
 import com.dy.common.mw.protocol.Command;
 import com.dy.rtuMw.server.local.localProtocol.*;
 
+import java.util.HashMap;
+
 /**
  * @Author liurunyu
  * @Date 2023/12/21 15:56
@@ -21,8 +23,10 @@
         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.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.allProtocols)){
@@ -50,9 +54,23 @@
      * 鏌ヨ鎵�鏈塕TU鍦ㄧ嚎鎯呭喌
      * @throws Exception
      */
-    private Command onLine(Command command) throws Exception{
-        RtuOnLineVo ol = new RtuOnLineDeal().deal() ;
-        return ReturnCommand.successed("鏌ヨ鎵�鏈夋祴绔欏湪绾挎儏鍐电粨鏋�", command.getId(), command.getCode(), ol) ;
+    private Command onAllLine(Command command) throws Exception{
+        HashMap<String, Boolean> map = new RtuOnLineDeal().dealAll() ;
+        return ReturnCommand.successed("鏌ヨ鎵�鏈塕TU鍦ㄧ嚎鎯呭喌缁撴灉", command.getId(), command.getCode(), map) ;
+    }
+
+    /**
+     * 鏌ヨ閮ㄥ垎RTU鍦ㄧ嚎鎯呭喌
+     * @throws Exception
+     */
+    private Command onPartLine(Command command) throws Exception{
+        if(command.param != null && command.param instanceof String && !command.param.equals("")){
+            String[] rtuAddrGrp = ((String)command.param).split(",");
+            HashMap<String, Boolean> map = new RtuOnLineDeal().dealPart(rtuAddrGrp) ;
+            return ReturnCommand.successed("鏌ヨ閮ㄥ垎RTU鍦ㄧ嚎鎯呭喌缁撴灉", command.getId(), command.getCode(), map) ;
+        }else{
+            return ReturnCommand.errored("鍑洪敊锛屽懡浠ゅ弬鏁板簲璇ユ槸鎵�鏌ヨRTU鐨勫湴鍧�涓�",  command.getId(), command.getCode()) ;
+        }
     }
 
     /**
@@ -61,7 +79,7 @@
      */
     private Command onLineStateStatistics(Command command) throws Exception{
         RtuOnLineStateStatisticsVo vo = new RtuOnLineStateStatisticsDeal().deal() ;
-        return ReturnCommand.successed("鏌ヨ鎵�鏈夋祴绔欏湪绾挎儏鍐电粨鏋�", command.getId(), command.getCode(), vo) ;
+        return ReturnCommand.successed("鏌ヨ鎵�鏈塕TU鍦ㄧ嚎鎯呭喌缁撴灉", command.getId(), command.getCode(), vo) ;
     }
 
     /**
@@ -80,7 +98,6 @@
     private Command stopTcpSv(Command command) throws Exception{
         TcpUnit.getInstance().stop(new UnitCallbackInterface(){
             public void call(Object obj) throws Exception {
-
             }
         });
         return ReturnCommand.successed("宸茬粡鍚姩鍋滄TCP鏈嶅姟", command.getId(), command.getCode(), null) ;

--
Gitblit v1.8.0