From b059bc632f0f14fe3d6666d8b26f1f3ffa834fb4 Mon Sep 17 00:00:00 2001
From: Junjie <fallin.jie@qq.com>
Date: 星期二, 18 三月 2025 09:24:49 +0800
Subject: [PATCH] #输出socket下发日志
---
src/main/java/com/zy/core/thread/impl/NyShuttleThread.java | 41 +++++++++++++++++++++++++++++++++--------
1 files changed, 33 insertions(+), 8 deletions(-)
diff --git a/src/main/java/com/zy/core/thread/impl/NyShuttleThread.java b/src/main/java/com/zy/core/thread/impl/NyShuttleThread.java
index d761a6e..d88c8fc 100644
--- a/src/main/java/com/zy/core/thread/impl/NyShuttleThread.java
+++ b/src/main/java/com/zy/core/thread/impl/NyShuttleThread.java
@@ -120,6 +120,9 @@
// //灏忚溅绌洪棽涓旀湁璺戝簱绋嬪簭
// shuttleAction.moveLoc(slave.getId());
+ //婕旂ず妯″紡
+ shuttleAction.demo(slave.getId());
+
Thread.sleep(200);
} catch (Exception e) {
e.printStackTrace();
@@ -455,13 +458,21 @@
}
for (NyShuttleHttpCommand requestCommand : commandList) {
- JSONObject result = requestCommand(requestCommand);
- if (result == null) {
- return response;//璇锋眰澶辫触
+ while (true) {
+ int i = 0;
+ i++;
+ JSONObject result = requestCommand(requestCommand);
+ if (result == null) {
+// return response;//璇锋眰澶辫触
+ News.info("Socket鍛戒护涓嬪彂澶辫触锛屼换鍔℃暟鎹�={}锛屾鏁�={}", JSON.toJSON(requestCommand), i);
+ continue;//璇锋眰澶辫触灏濊瘯閲嶆柊璇锋眰
+ }
+ this.shuttleProtocol.setSendTime(System.currentTimeMillis());//鎸囦护涓嬪彂鏃堕棿
+ response.setMessage(JSON.toJSONString(result));
+ response.setResult(true);
+ News.info("Socket鍛戒护涓嬪彂鎴愬姛锛屼换鍔℃暟鎹�={}锛屾鏁�={}锛屽搷搴旀暟鎹�={}", JSON.toJSON(requestCommand), i, JSON.toJSONString(result));
+ break;
}
- this.shuttleProtocol.setSendTime(System.currentTimeMillis());//鎸囦护涓嬪彂鏃堕棿
- response.setMessage(JSON.toJSONString(result));
- response.setResult(true);
}
return response;
} catch (Exception e) {
@@ -569,6 +580,7 @@
&& this.shuttleProtocol.getMode() == 1
&& this.shuttleProtocol.getPakMk()
&& this.shuttleProtocol.getErrorCode().equals("0")
+ && this.shuttleProtocol.getTaskNo() == 0
&& (this.shuttleProtocol.getProtocolStatus() == ShuttleProtocolStatusType.IDLE.id
|| this.shuttleProtocol.getProtocolStatus() == ShuttleProtocolStatusType.WAITING.id
|| this.shuttleProtocol.getProtocolStatus() == ShuttleProtocolStatusType.CHARGING_WAITING.id)
@@ -800,6 +812,19 @@
return true;
}
return false;
+ }
+
+ @Override
+ public boolean enableDemo(boolean enable) {
+ shuttleProtocol.setDemo(enable);
+ return true;
+ }
+
+ @Override
+ public boolean offerSystemMsg(String format, Object... arguments) {
+ String msg = News.replace(format, arguments);
+ shuttleProtocol.setSystemMsg(msg);
+ return true;
}
@Override
@@ -1061,9 +1086,9 @@
}
// 鑾峰彇鏈嶅姟鍣ㄥ搷搴�
- // 灏濊瘯10娆�
+ // 灏濊瘯100娆�
JSONObject result = null;
- for (int i = 0; i < 10; i++) {
+ for (int i = 0; i < 100; i++) {
result = getRequestBody(requestType);
if (result == null) {
try {
--
Gitblit v1.9.1