From 73ce8bebcc5d14f3fb62a19ee677abfcdfc776b4 Mon Sep 17 00:00:00 2001 From: Junjie <540245094@qq.com> Date: 星期六, 19 七月 2025 16:17:51 +0800 Subject: [PATCH] # --- src/main/java/com/zy/core/thread/impl/NyShuttleThread.java | 424 ++++++++++++++++++++++------------------------------ 1 files changed, 179 insertions(+), 245 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 c375106..ad23b1c 100644 --- a/src/main/java/com/zy/core/thread/impl/NyShuttleThread.java +++ b/src/main/java/com/zy/core/thread/impl/NyShuttleThread.java @@ -9,10 +9,8 @@ import com.fasterxml.jackson.databind.ObjectMapper; import com.zy.asrs.entity.BasShuttle; import com.zy.asrs.entity.DeviceConfig; -import com.zy.asrs.entity.DeviceDataLog; import com.zy.asrs.entity.LocMast; import com.zy.asrs.service.BasShuttleService; -import com.zy.asrs.service.DeviceDataLogService; import com.zy.asrs.service.LocMastService; import com.zy.asrs.utils.Utils; import com.zy.common.ExecuteSupport; @@ -25,7 +23,6 @@ import com.zy.core.News; import com.zy.core.model.DeviceCommandMsgModel; import com.zy.core.utils.DeviceMsgUtils; -import com.zy.core.action.ShuttleAction; import com.zy.core.cache.OutputQueue; import com.zy.core.enums.*; import com.zy.core.model.CommandResponse; @@ -56,7 +53,7 @@ private static final boolean DEBUG = false;//璋冭瘯妯″紡 private List<JSONObject> socketReadResults = new ArrayList<>(); - private List<JSONObject> socketResults = new ArrayList<>(); + private List<DeviceMsgModel> socketResults = new ArrayList<>(); //鍘熷璁惧鏁版嵁 private Object originDeviceData; @@ -78,6 +75,9 @@ listenInit();//鐩戝惉鍒濆鍖栦簨浠� readStatus(); Thread.sleep(100); + +// //灏忚溅绌洪棽涓旀湁璺戝簱绋嬪簭 +// shuttleAction.moveLoc(deviceConfig.getDeviceNo()); } catch (Exception e) { log.error("ShuttleThread Fail", e); } @@ -85,85 +85,38 @@ }); readThread.start(); - //璁惧鎵ц - Thread executeThread = new Thread(() -> { - while (true) { - try { - ShuttleAction shuttleAction = null; - try { - shuttleAction = SpringUtils.getBean(ShuttleAction.class); - }catch (Exception e){ - continue; - } - - if (shuttleAction == null) { - continue; - } - - Object object = redisUtil.get(RedisKeyType.SHUTTLE_FLAG.key + deviceConfig.getDeviceNo()); - if (object == null) { - continue; - } - - Integer taskNo = Integer.valueOf(String.valueOf(object)); - if (taskNo != 0) { - //瀛樺湪浠诲姟闇�瑕佹墽琛� - boolean result = shuttleAction.executeWork(deviceConfig.getDeviceNo(), taskNo); - } - -// //灏忚溅绌洪棽涓旀湁璺戝簱绋嬪簭 -// shuttleAction.moveLoc(deviceConfig.getDeviceNo()); - - //婕旂ず妯″紡 - shuttleAction.demo(deviceConfig.getDeviceNo()); - - Thread.sleep(200); - } catch (Exception e) { - e.printStackTrace(); - } - } - }); - executeThread.start(); - - //鍏朵粬浠诲姟 - Thread otherThread = new Thread(() -> { - while (true) { - try { - saveLog();//淇濆瓨鏁版嵁 - } catch (Exception e) { - e.printStackTrace(); - } - } - }); - otherThread.start(); - } - - private void saveLog() { - if (shuttleProtocol == null) { - return; - } - - if (System.currentTimeMillis() - shuttleProtocol.getDeviceDataLog() > 1000 * 5) { - if (this.originDeviceData != null) { - //閲囬泦鏃堕棿瓒呰繃5s锛屼繚瀛樹竴娆℃暟鎹褰� - //淇濆瓨鏁版嵁璁板綍 - DeviceDataLogService deviceDataLogService = SpringUtils.getBean(DeviceDataLogService.class); - if (deviceDataLogService == null) { - return; - } - DeviceDataLog deviceDataLog = new DeviceDataLog(); - deviceDataLog.setOriginData(JSON.toJSONString(this.originDeviceData)); - deviceDataLog.setWcsData(JSON.toJSONString(shuttleProtocol)); - deviceDataLog.setType(String.valueOf(SlaveType.Shuttle)); - deviceDataLog.setDeviceNo(deviceConfig.getDeviceNo()); - deviceDataLog.setCreateTime(new Date()); - deviceDataLogService.insert(deviceDataLog); - - //鏇存柊閲囬泦鏃堕棿 - shuttleProtocol.setDeviceDataLog(System.currentTimeMillis()); - OutputQueue.SHUTTLE.offer(MessageFormat.format("銆恵0}銆慬id:{1}] <<<<< 瀹炴椂鏁版嵁鏇存柊鎴愬姛",DateUtils.convert(new Date()), deviceConfig.getDeviceNo())); - } - } +// //璁惧鎵ц +// Thread executeThread = new Thread(() -> { +// while (true) { +// try { +// ShuttleAction shuttleAction = null; +// try { +// shuttleAction = SpringUtils.getBean(ShuttleAction.class); +// }catch (Exception e){ +// continue; +// } +// +// if (shuttleAction == null) { +// continue; +// } +// +// Object object = redisUtil.get(RedisKeyType.SHUTTLE_FLAG.key + deviceConfig.getDeviceNo()); +// if (object == null) { +// continue; +// } +// +// Integer taskNo = Integer.valueOf(String.valueOf(object)); +// if (taskNo != 0) { +// //瀛樺湪浠诲姟闇�瑕佹墽琛� +// boolean result = shuttleAction.executeWork(deviceConfig.getDeviceNo(), taskNo); +// } +// Thread.sleep(100); +// } catch (Exception e) { +// e.printStackTrace(); +// } +// } +// }); +// executeThread.start(); } private void listenMessageFromRedis() { @@ -188,54 +141,32 @@ data.put("originDeviceData", deviceMsg.getDeviceOriginMsg()); socketReadResults.add(data); } else { - socketResults.add(data);//娣诲姞鏁版嵁 + socketResults.add(deviceMsg);//娣诲姞鏁版嵁 } } catch (Exception e) { e.printStackTrace(); } } - public JSONObject getRequestBody(String type, String taskId) { + public JSONObject getRequestBody(String resultKey) { try { // 鑾峰彇鏈嶅姟鍣ㄥ搷搴� JSONObject result = null; - if (type.equals("readState")) { - type = "state"; - } - + int idx = -1; for (int i = 0; i < socketResults.size(); i++) { - JSONObject socketResult = socketResults.get(i); - if (!socketResult.get("msgType").equals("responseMsg")) {//涓嶆槸鍝嶅簲鍐呭 - continue; - } - - JSONObject resultResponse = JSON.parseObject(socketResult.get("response").toString()); - JSONObject resultBody = JSON.parseObject(resultResponse.get("body").toString()); - String responseType = resultBody.get("responseType").toString(); - if (DEBUG) { - result = socketResult; + DeviceMsgModel deviceMsgModel = socketResults.get(i); + if(deviceMsgModel.getResultKey().equals(resultKey)){ + idx = i; + result = JSON.parseObject(JSON.toJSONString(deviceMsgModel.getDeviceMsg())); break; } - - if (!responseType.equals(type)) { - continue;//鍝嶅簲绫诲瀷涓庤姹傜被鍨嬩笉涓�鑷达紝涓嶅湪璋冭瘯妯″紡涓� - } - - if (taskId != null) { - String responseTaskId = resultBody.get("taskId").toString(); - if (!responseTaskId.equals(taskId)) { - continue;//鍝嶅簲ID涓庤姹侷D涓嶄竴鑷达紝涓嶅湪璋冭瘯妯″紡涓� - } - } - - result = socketResult; - break; } if (result == null) { return null;//鏃犲搷搴旂粨鏋� } + socketResults.remove(idx); return filterBodyData(result);//杩斿洖Body缁撴灉闆� } catch (Exception e) { return null; @@ -265,10 +196,10 @@ } NyShuttleHttpCommand readStatusCommand = getReadStatusCommand(deviceConfig.getDeviceNo()); - //鎸囦护瓒呰繃浜旀潯锛屼笉鍐嶄笅鍙戜换鍔$姸鎬佽姹� + //鎸囦护瓒呰繃2鏉★紝涓嶅啀涓嬪彂浠诲姟鐘舵�佽姹� TreeSet<String> deviceCommandMsgListKey = deviceMsgUtils.getDeviceCommandMsgListKey(SlaveType.Shuttle, deviceConfig.getDeviceNo()); - if (deviceCommandMsgListKey.size() < 5) { - requestCommandAsync(readStatusCommand);//璇锋眰鐘舵�� + if (deviceCommandMsgListKey.size() < 2) { + requestCommand(readStatusCommand);//璇锋眰鐘舵�� } if (this.socketReadResults.isEmpty()) { @@ -359,35 +290,38 @@ // 鑾峰彇鏈嶅姟鍣ㄥ搷搴� JSONObject result = null; int removeIdx = -1; + JSONObject socketResult = null; for (int i = 0; i < socketResults.size(); i++) { - JSONObject socketResult = socketResults.get(i); - if (socketResult == null) { + DeviceMsgModel deviceMsgModel = socketResults.get(i); + if (!deviceMsgModel.getDeviceMsgType().equals("shuttleInit")) { continue; } - if (!socketResult.get("msgType").equals("requestMsg")) {//涓嶆槸璇锋眰鍐呭 - continue; - } + removeIdx = i; + socketResult = JSON.parseObject(JSON.toJSONString(deviceMsgModel.getDeviceMsg())); + break; + } - JSONObject resultResponse = JSON.parseObject(socketResult.get("request").toString()); - JSONObject resultHeader = JSON.parseObject(resultResponse.get("header").toString()); - JSONObject resultBody = JSON.parseObject(resultResponse.get("body").toString()); - String requestType = resultBody.getString("requestType"); - Integer requestId = resultHeader.getInteger("requestId"); - if (requestType.equals("init")) { - removeIdx = i;//姝ゆ暟鎹凡缁忓鐞嗭紝浠庣粨鏋滈泦涓墧闄� - socketResults.remove(removeIdx); + if (socketResult == null) { + return; + } - Integer code = resultBody.getInteger("code"); - //灏忚溅澶嶄綅璇锋眰 - ShuttleCommand initCommand = getInitCommand(requestId, code); - //鍙戝嚭璇锋眰 - NyShuttleHttpCommand httpCommand = JSON.parseObject(initCommand.getBody(), NyShuttleHttpCommand.class); - JSONObject requestResult = requestCommand(httpCommand); + JSONObject resultResponse = JSON.parseObject(socketResult.get("request").toString()); + JSONObject resultHeader = JSON.parseObject(resultResponse.get("header").toString()); + JSONObject resultBody = JSON.parseObject(resultResponse.get("body").toString()); + String requestType = resultBody.getString("requestType"); + Integer requestId = resultHeader.getInteger("requestId"); + if (requestType.equals("init")) { + socketResults.remove(removeIdx); - log.info(MessageFormat.format("銆恵0}銆戝洓鍚戣溅澶嶄綅涓婃姤 ===>> [code:{1}] [ip:{2}] [port:{3}]", deviceConfig.getDeviceNo(), code, deviceConfig.getIp(), deviceConfig.getPort())); - OutputQueue.SHUTTLE.offer(MessageFormat.format("銆恵0}銆戝洓鍚戣溅澶嶄綅涓婃姤 ===>> [code:{1}] [ip:{2}] [port:{3}]", deviceConfig.getDeviceNo(), code, deviceConfig.getIp(), deviceConfig.getPort())); - break; - } + Integer code = resultBody.getInteger("code"); + //灏忚溅澶嶄綅璇锋眰 + ShuttleCommand initCommand = getInitCommand(requestId, code); + //鍙戝嚭璇锋眰 + NyShuttleHttpCommand httpCommand = JSON.parseObject(initCommand.getBody(), NyShuttleHttpCommand.class); + requestCommand(httpCommand); + + log.info(MessageFormat.format("銆恵0}銆戝洓鍚戣溅澶嶄綅涓婃姤 ===>> [code:{1}] [ip:{2}] [port:{3}]", deviceConfig.getDeviceNo(), code, deviceConfig.getIp(), deviceConfig.getPort())); + OutputQueue.SHUTTLE.offer(MessageFormat.format("銆恵0}銆戝洓鍚戣溅澶嶄綅涓婃姤 ===>> [code:{1}] [ip:{2}] [port:{3}]", deviceConfig.getDeviceNo(), code, deviceConfig.getIp(), deviceConfig.getPort())); } } catch (Exception e) { e.printStackTrace(); @@ -413,58 +347,81 @@ return response; } +// @Override +// public CommandResponse move(ShuttleCommand command) { +// CommandResponse response = new CommandResponse(false); +// try { +// //鍙戝嚭璇锋眰 +// NyShuttleHttpCommand httpCommand = JSON.parseObject(command.getBody(), NyShuttleHttpCommand.class); +// Map<String, Object> body = httpCommand.getRequest().getBody(); +// Object pathObj = body.get("path"); +// int taskId = Integer.parseInt(body.get("taskId").toString()); +// List<JSONObject> path = JSON.parseArray(JSON.toJSONString(pathObj), JSONObject.class); +// ArrayList<NyShuttleHttpCommand> commandList = new ArrayList<>(); +// while (!path.isEmpty()) { +// ArrayList<Map<String, Object>> list = new ArrayList<>(); +// if (path.size() > 10) { +// List<JSONObject> subList = path.subList(0, 10); +// list.addAll(subList); +// +// List<JSONObject> tmp = new ArrayList<>(); +// for (int i = 10; i < path.size(); i++) { +// tmp.add(path.get(i)); +// } +// path = tmp; +// }else { +// list.addAll(path); +// path.clear(); +// } +// +// NyShuttleHttpCommand httpCommandCopy = JSON.parseObject(JSON.toJSONString(httpCommand), NyShuttleHttpCommand.class); +// JSONObject bodyCopy = JSON.parseObject(JSON.toJSONString(body)); +// +// NyShuttleHttpCommand.NyRequest request = httpCommandCopy.getRequest(); +// bodyCopy.put("path", list); +// bodyCopy.put("taskId", taskId++); +// request.setBody(bodyCopy); +// httpCommandCopy.setRequest(request); +// +// commandList.add(httpCommandCopy);//add copy +// } +// +// for (NyShuttleHttpCommand requestCommand : commandList) { +// while (true) { +// JSONObject result = requestCommand(requestCommand); +// if (result == null) { +//// return response;//璇锋眰澶辫触 +// continue;//璇锋眰澶辫触灏濊瘯閲嶆柊璇锋眰 +// } +// this.shuttleProtocol.setSendTime(System.currentTimeMillis());//鎸囦护涓嬪彂鏃堕棿 +// response.setMessage(JSON.toJSONString(result)); +// response.setResult(true); +// break; +// } +// } +// return response; +// } catch (Exception e) { +// e.printStackTrace(); +// response.setMessage(e.getMessage()); +// return response; +// } +// } + @Override public CommandResponse move(ShuttleCommand command) { CommandResponse response = new CommandResponse(false); try { //鍙戝嚭璇锋眰 NyShuttleHttpCommand httpCommand = JSON.parseObject(command.getBody(), NyShuttleHttpCommand.class); - Map<String, Object> body = httpCommand.getRequest().getBody(); - Object pathObj = body.get("path"); - int taskId = Integer.parseInt(body.get("taskId").toString()); - List<JSONObject> path = JSON.parseArray(JSON.toJSONString(pathObj), JSONObject.class); - ArrayList<NyShuttleHttpCommand> commandList = new ArrayList<>(); - while (!path.isEmpty()) { - ArrayList<Map<String, Object>> list = new ArrayList<>(); - if (path.size() > 10) { - List<JSONObject> subList = path.subList(0, 10); - list.addAll(subList); - - List<JSONObject> tmp = new ArrayList<>(); - for (int i = 10; i < path.size(); i++) { - tmp.add(path.get(i)); - } - path = tmp; - }else { - list.addAll(path); - path.clear(); - } - - NyShuttleHttpCommand httpCommandCopy = JSON.parseObject(JSON.toJSONString(httpCommand), NyShuttleHttpCommand.class); - JSONObject bodyCopy = JSON.parseObject(JSON.toJSONString(body)); - - NyShuttleHttpCommand.NyRequest request = httpCommandCopy.getRequest(); - bodyCopy.put("path", list); - bodyCopy.put("taskId", taskId++); - request.setBody(bodyCopy); - httpCommandCopy.setRequest(request); - - commandList.add(httpCommandCopy);//add copy + String resultKey = requestCommand(httpCommand); + //鏌ヨ璇锋眰缁撴灉 + JSONObject result = queryCommandStatus(resultKey); + if (result == null) { + return response;//璇锋眰澶辫触 } - - for (NyShuttleHttpCommand requestCommand : commandList) { - while (true) { - JSONObject result = requestCommand(requestCommand); - if (result == null) { -// return response;//璇锋眰澶辫触 - continue;//璇锋眰澶辫触灏濊瘯閲嶆柊璇锋眰 - } - this.shuttleProtocol.setSendTime(System.currentTimeMillis());//鎸囦护涓嬪彂鏃堕棿 - response.setMessage(JSON.toJSONString(result)); - response.setResult(true); - break; - } - } + this.shuttleProtocol.setSendTime(System.currentTimeMillis());//鎸囦护涓嬪彂鏃堕棿 + response.setMessage(JSON.toJSONString(result)); + response.setResult(true); return response; } catch (Exception e) { e.printStackTrace(); @@ -479,7 +436,9 @@ try { //鍙戝嚭璇锋眰 NyShuttleHttpCommand httpCommand = JSON.parseObject(command.getBody(), NyShuttleHttpCommand.class); - JSONObject result = requestCommand(httpCommand); + String resultKey = requestCommand(httpCommand); + //鏌ヨ璇锋眰缁撴灉 + JSONObject result = queryCommandStatus(resultKey); if (result == null) { return response;//璇锋眰澶辫触 } @@ -499,7 +458,9 @@ try { //鍙戝嚭璇锋眰 NyShuttleHttpCommand httpCommand = JSON.parseObject(command.getBody(), NyShuttleHttpCommand.class); - JSONObject result = requestCommand(httpCommand); + String resultKey = requestCommand(httpCommand); + //鏌ヨ璇锋眰缁撴灉 + JSONObject result = queryCommandStatus(resultKey); if (result == null) { return response;//璇锋眰澶辫触 } @@ -527,7 +488,9 @@ try { //鍙戝嚭璇锋眰 NyShuttleHttpCommand httpCommand = JSON.parseObject(command.getBody(), NyShuttleHttpCommand.class); - JSONObject result = requestCommand(httpCommand); + String resultKey = requestCommand(httpCommand); + //鏌ヨ璇锋眰缁撴灉 + JSONObject result = queryCommandStatus(resultKey); if (result == null) { return response;//璇锋眰澶辫触 } @@ -769,7 +732,7 @@ //灏嗚矾寰勯攣涓庡皬杞﹁矾寰勮繘琛屽尮閰� ArrayList<NavigateNode> tmp = new ArrayList<>(); //妫�娴嬭矾寰勬槸鍚﹁閿佸畾 - int[][] map = navigateMapData.getDataFromRedis(lev, NavigationMapType.DFX.id, null, null); + int[][] map = navigateMapData.getDataFromRedis(lev, NavigationMapType.getDfxWithDevice(), null, null); for (NavigateNode node : path) { if(map[node.getX()][node.getY()] == -999) { tmp.add(node); @@ -855,6 +818,11 @@ String msg = News.replace(format, arguments); shuttleProtocol.setSystemMsg(msg); return true; + } + + @Override + public void updateDeviceDataLogTime(long time) { + shuttleProtocol.setDeviceDataLog(time); } @Override @@ -1097,8 +1065,8 @@ return httpStandard; } - //鍙戝嚭璇锋眰-鍚屾 - private JSONObject requestCommand(NyShuttleHttpCommand httpCommand) throws IOException { + //鍙戝嚭璇锋眰 + private String requestCommand(NyShuttleHttpCommand httpCommand) throws IOException { try { DeviceMsgUtils deviceMsgUtils = SpringUtils.getBean(DeviceMsgUtils.class); if (deviceMsgUtils == null) { @@ -1114,69 +1082,30 @@ commandMsgModel.setDeviceType(String.valueOf(SlaveType.Shuttle)); commandMsgModel.setCommand(data); String key = deviceMsgUtils.sendDeviceCommand(SlaveType.Shuttle, deviceConfig.getDeviceNo(), commandMsgModel); - - String requestType = null; - String taskId = null; - try { - requestType = httpCommand.getRequest().getBody().get("requestType").toString(); - taskId = httpCommand.getRequest().getBody().get("taskId").toString(); - } catch (Exception e) { -// return null; - //taskId鍙兘鍙栫┖锛屼笉鎶ラ敊锛屾甯告儏鍐� - } - - // 鑾峰彇鏈嶅姟鍣ㄥ搷搴� - // 灏濊瘯30娆� - JSONObject result = null; - for (int i = 0; i < 30; i++) { - result = getRequestBody(requestType, taskId); - if (result == null) { - try { - Thread.sleep(100); - } catch (Exception e) { - e.printStackTrace(); - } - }else { - break; - } - } - return result;//杩斿洖Body缁撴灉闆� + return key; }catch (Exception e) { e.printStackTrace(); } return null; } - //鍙戝嚭璇锋眰-绉绘 - private void requestCommandAsync(NyShuttleHttpCommand httpCommand) throws IOException { - try { - DeviceMsgUtils deviceMsgUtils = SpringUtils.getBean(DeviceMsgUtils.class); - if (deviceMsgUtils == null) { - return; + private JSONObject queryCommandStatus(String resultKey) { + // 鑾峰彇鏈嶅姟鍣ㄥ搷搴� + // 灏濊瘯50娆� + JSONObject result = null; + for (int i = 0; i < 50; i++) { + result = getRequestBody(resultKey); + if (result == null) { + try { + Thread.sleep(500); + } catch (Exception e) { + e.printStackTrace(); + } + }else { + break; } - - //鍘嬬缉鏁版嵁鍖� - JSONObject data = JSON.parseObject(JSON.toJSONString(httpCommand)); - data.remove("nodes"); - - DeviceCommandMsgModel commandMsgModel = new DeviceCommandMsgModel(); - commandMsgModel.setDeviceId(deviceConfig.getDeviceNo()); - commandMsgModel.setDeviceType(String.valueOf(SlaveType.Shuttle)); - commandMsgModel.setCommand(data); - String key = deviceMsgUtils.sendDeviceCommand(SlaveType.Shuttle, deviceConfig.getDeviceNo(), commandMsgModel); - - String requestType = null; - String taskId = null; - try { - requestType = httpCommand.getRequest().getBody().get("requestType").toString(); - taskId = httpCommand.getRequest().getBody().get("taskId").toString(); - } catch (Exception e) { -// return null; - //taskId鍙兘鍙栫┖锛屼笉鎶ラ敊锛屾甯告儏鍐� - } - }catch (Exception e) { - e.printStackTrace(); } + return result; } private JSONObject filterBodyData(JSONObject data) { @@ -1228,6 +1157,11 @@ return new int[]{data.getInteger("y"), data.getInteger("x"), z}; } + @Override + public Object getOriginDeviceData() { + return this.originDeviceData; + } + @Data private class InnerSuhttleExtend { -- Gitblit v1.9.1