From eb5a6e5a54efa997971beffc909bcadc06dc8886 Mon Sep 17 00:00:00 2001
From: liurunyu <lry9898@163.com>
Date: 星期一, 21 四月 2025 10:45:16 +0800
Subject: [PATCH] 1、江海测试系统设备类型默认为阀; 2、完善通信中间件测试消息推送代码; 3、增加队列数据结构注释; 4、121服务器相关的初始化配置文件bug修改; 5、其他注释完善。

---
 pipIrr-platform/pipIrr-mw/pipIrr-mw-rtu/src/main/java/com/dy/rtuMw/Server.java |   29 +++++++++++++++++++++++++----
 1 files changed, 25 insertions(+), 4 deletions(-)

diff --git a/pipIrr-platform/pipIrr-mw/pipIrr-mw-rtu/src/main/java/com/dy/rtuMw/Server.java b/pipIrr-platform/pipIrr-mw/pipIrr-mw-rtu/src/main/java/com/dy/rtuMw/Server.java
index 17e9b85..2a405c4 100644
--- a/pipIrr-platform/pipIrr-mw/pipIrr-mw-rtu/src/main/java/com/dy/rtuMw/Server.java
+++ b/pipIrr-platform/pipIrr-mw/pipIrr-mw-rtu/src/main/java/com/dy/rtuMw/Server.java
@@ -3,7 +3,10 @@
 import java.util.ArrayList;
 import java.util.List;
 
+import com.dy.common.util.ConfigProperties;
 import com.dy.rtuMw.server.*;
+import com.dy.rtuMw.server.msCenter.MsCenterConfigVo;
+import com.dy.rtuMw.server.msCenter.MsCenterUnit;
 import com.dy.rtuMw.server.rtuData.RtuDataUnit;
 import com.dy.rtuMw.server.rtuData.RtuDataUnitConfigVo;
 import com.dy.rtuMw.server.tasks.FromRtuComResultConstantTask;
@@ -40,6 +43,7 @@
 	private Document doc = null ;
 	private boolean showStartInfo = false ;
 	
+	private String orgTag ;
 	private String RmiSvUrl ;
 	private String TcpSvUrl ;
 	@Value("${server.port}")
@@ -83,7 +87,7 @@
 		boolean running = false ;
 		long start = System.currentTimeMillis() ;
 		try {
-			//ConfigProperties.init(this.getClass().getResourceAsStream("/config/config.properties"), false);
+			ConfigProperties.init(this.getClass().getResourceAsStream("/config.properties"), false);
 			
 			this.conf = new ConfigXml4Springboot() ;
 			this.doc = this.conf.createDom(this.resourceLoader, "config.xml") ;
@@ -113,7 +117,7 @@
             System.out.println("@@@@@@@@@@@@@@@@@@@@@#   #@@@@@@@@@@@@@@@@O") ;    
             System.out.println("@@@@@@@@@@@@@@@@@@@@@@@   &@@@@@@@@@@@@@@") ;           
             System.out.println("@@@@@@$      $@@@@@@@@@&   O@@@@@@@@@@@#") ;        
-            System.out.println("@@@@@@$        @@@@@@@@@     @@@@@@@@@&      " + svName + "RtuMw 1.0.00" ) ;             
+            System.out.println("@@@@@@$        @@@@@@@@@     @@@@@@@@@&      " + this.orgTag + svName + "RtuMw 1.0.00" ) ;
 			if(this.HttpSvPath != null && this.HttpSvPort != null){
 				System.out.println("@@@@@@$       O@@@@@@@@@     &@@@@@@@@       HttpSv [ip]:" + this.HttpSvPort + this.HttpSvPath) ;
 			}else{
@@ -130,7 +134,7 @@
             }else{
                 System.out.println("@@@@@@$      #@@@@@@@@@$     &@@@@@@@@" ) ;        
             }
-            System.out.println("@@@@@@@@@@@@@@@@@@@@@@#      &@@@@@@@@       Runing in standalone mode" ) ;    
+            System.out.println("@@@@@@@@@@@@@@@@@@@@@@#      &@@@@@@@@       Running in standalone mode" ) ;
             System.out.println("@@@@@@@@@@@@@@@@@@@@@&       &@@@@@@@@       Startup in " + (System.currentTimeMillis() - start) + " MS" ) ;              
             System.out.println("@@@@@@@@@@@@@@@@@@@#         &@@@@@@@@       " + company) ;            
             System.out.println("@@@@@@@@@@@@@@@@#O           &@@@@@@@@") ;
@@ -147,9 +151,10 @@
 			///////////////
 			//鍩烘湰閰嶇疆
 			ServerProperties.orgTag = this.conf.getSetAttrTxt(this.doc, "config.base", "orgTag", null, false, null) ;
-			if(ServerProperties.orgTag==null || ServerProperties.orgTag.trim().equals("")){
+			if(ServerProperties.orgTag == null || ServerProperties.orgTag.trim().equals("")){
 				throw new Exception("鏈烘瀯tag涓嶈兘涓虹┖") ;
 			}
+			this.orgTag = ServerProperties.orgTag ;
 			ServerProperties.isLowPower = conf.getSetAttrBoolean(doc, "config.base", "isLowPower", null, null) ; 
 			if(ServerProperties.isLowPower == null){
 				ServerProperties.isLowPower = false ;
@@ -334,6 +339,22 @@
 			}
 			*/
 
+
+			/////////////////
+			//娑堟伅涓績妯″潡
+			MsCenterConfigVo mscVo = new MsCenterConfigVo();
+			mscVo.enable = conf.getSetAttrBoolean(doc, "config.msCenter", "enable", null, null) ;
+			mscVo.notifyMsInterval = conf.getSetAttrPlusInt(doc, "config.msCenter", "notifyInterval", null, 1, 600, null) * 1000L ;
+			mscVo.showStartInfo = showStartInfo ;
+			AdapterImp_MsCenterUnit mscAdapt = new AdapterImp_MsCenterUnit();
+			mscAdapt.setConfig(mscVo);
+			MsCenterUnit mscUnit = MsCenterUnit.getInstance();
+			mscUnit.setAdapter(mscAdapt);
+			mscUnit.start(obj -> {
+			});
+			units.add(mscUnit) ;
+
+
 			/////////////////
 			//RTU杩滅▼鍗囩骇妯″潡
 			UpgradeUnitConfigVo ugVo = new UpgradeUnitConfigVo();

--
Gitblit v1.8.0