From 4b79d529958435a201762a8813a521ae8932b506 Mon Sep 17 00:00:00 2001
From: Junjie <fallin.jie@qq.com>
Date: 星期四, 30 三月 2023 10:44:14 +0800
Subject: [PATCH] 提升机配置文件更新

---
 src/main/java/com/zy/core/thread/ShuttleThread.java |  270 +++++++++++++++++++++++++++++++++++++----------------
 1 files changed, 188 insertions(+), 82 deletions(-)

diff --git a/src/main/java/com/zy/core/thread/ShuttleThread.java b/src/main/java/com/zy/core/thread/ShuttleThread.java
index 2586420..db733ce 100644
--- a/src/main/java/com/zy/core/thread/ShuttleThread.java
+++ b/src/main/java/com/zy/core/thread/ShuttleThread.java
@@ -5,9 +5,14 @@
 import HslCommunication.Core.Types.OperateResultExOne;
 import HslCommunication.ModBus.ModbusTcpNet;
 import com.alibaba.fastjson.JSON;
-import com.alibaba.fastjson.JSONObject;
 import com.core.common.DateUtils;
+import com.core.common.SpringUtils;
 import com.core.exception.CoolException;
+import com.zy.asrs.entity.BasShuttle;
+import com.zy.asrs.entity.BasShuttleOpt;
+import com.zy.asrs.mapper.BasShuttleMapper;
+import com.zy.asrs.service.BasShuttleOptService;
+import com.zy.asrs.service.BasShuttleService;
 import com.zy.common.model.NavigateNode;
 import com.zy.common.utils.CommonUtils;
 import com.zy.common.utils.NavigatePositionConvert;
@@ -17,9 +22,7 @@
 import com.zy.core.ThreadHandler;
 import com.zy.core.cache.MessageQueue;
 import com.zy.core.cache.OutputQueue;
-import com.zy.core.enums.ShuttleRunDirection;
-import com.zy.core.enums.ShuttleStatusType;
-import com.zy.core.enums.SlaveType;
+import com.zy.core.enums.*;
 import com.zy.core.model.ShuttleSlave;
 import com.zy.core.model.Task;
 import com.zy.core.model.command.ShuttleAssignCommand;
@@ -117,6 +120,7 @@
                 if (null == shuttleProtocol) {
                     shuttleProtocol = new ShuttleProtocol();
                     shuttleProtocol.setShuttleNo(slave.getId().shortValue());
+                    shuttleProtocol.setProtocolStatus(ShuttleProtocolStatusType.IDLE);
                 }
 
                 //----------璇诲彇鍥涘悜绌挎杞︾姸鎬�-----------
@@ -159,9 +163,6 @@
 
                 ///璇诲彇鍥涘悜绌挎杞︾姸鎬�-end
 
-                OutputQueue.SHUTTLE.offer(MessageFormat.format("銆恵0}銆慬id:{1}] <<<<< 瀹炴椂鏁版嵁鏇存柊鎴愬姛",DateUtils.convert(new Date()), slave.getId()));
-                log.info(MessageFormat.format("銆恵0}銆慬id:{1}] <<<<< 瀹炴椂鏁版嵁鏇存柊鎴愬姛",DateUtils.convert(new Date()), slave.getId()));
-
                 //灏忚溅澶勪簬蹇欑鐘舵�侊紝灏嗘爣璁扮疆涓簍rue
                 if (shuttleProtocol.getBusyStatusType() == ShuttleStatusType.BUSY) {
                     shuttleProtocol.setPakMk(true);
@@ -170,7 +171,63 @@
                 //鍥涘悜绌挎杞︾┖闂层�佹湁浠诲姟涓旀爣璁颁负true锛岄渶瑕佹墽琛屼换鍔$殑涓嬩竴鏉℃寚浠�
                 if (shuttleProtocol.getBusyStatusType() == ShuttleStatusType.IDLE && shuttleProtocol.getTaskNo() != 0 && shuttleProtocol.getPakMk()) {
                     //鎵ц涓嬩竴姝ユ寚浠�
-                    executeWork(shuttleProtocol.getTaskNo());
+                    executeWork(shuttleProtocol.getAssignCommand());
+                }
+
+                //灏嗗洓鍚戠┛姊溅鐘舵�佷繚瀛樿嚦鏁版嵁搴�
+                BasShuttleService shuttleService = SpringUtils.getBean(BasShuttleService.class);
+                BasShuttle basShuttle = shuttleService.selectById(shuttleProtocol.getShuttleNo());
+                if (basShuttle == null) {
+                    basShuttle = new BasShuttle();
+                    //鍥涘悜绌挎杞﹀彿
+                    basShuttle.setShuttleNo(slave.getId());
+                    shuttleService.insert(basShuttle);
+                }
+                //灏忚溅蹇欑姸鎬佷綅
+                basShuttle.setBusyStatus(shuttleProtocol.getBusyStatus().intValue());
+                //褰撳墠浜岀淮鐮�
+                basShuttle.setCurrentCode(shuttleProtocol.getCurrentCode().intValue());
+                //鐢垫睜鐢甸噺鐧惧垎姣�
+                basShuttle.setBatteryPower(shuttleProtocol.getBatteryPower().intValue());
+                //鐢垫睜娓╁害
+                basShuttle.setBatteryTemp(shuttleProtocol.getBatteryTemp().intValue());
+                //閿欒缂栧彿
+                basShuttle.setErrorCode(shuttleProtocol.getErrorCode().intValue());
+                //Plc杈撳嚭鐘舵�両O
+                basShuttle.setPlcOutputStatusIo(shuttleProtocol.getPlcOutputStatusIO().intValue());
+                //閿欒淇℃伅鐮�
+                basShuttle.setStatusErrorCode(shuttleProtocol.getStatusErrorCode().intValue());
+                //PLC杈撳叆鐘舵��
+                basShuttle.setPlcInputStatus(shuttleProtocol.getPlcInputStatus().intValue());
+                //褰撳墠鎴栬�呬箣鍓嶈鍒扮殑浜岀淮鐮佸��
+                basShuttle.setCurrentOrBeforeCode(shuttleProtocol.getCurrentOrBeforeCode().intValue());
+                //璇诲埌鐨勪簩缁寸爜X鏂瑰悜鍋忕Щ閲�
+                basShuttle.setCodeOffsetX(shuttleProtocol.getCodeOffsetX().intValue());
+                //璇诲埌鐨勪簩缁寸爜Y鏂瑰悜鍋忕Щ閲�
+                basShuttle.setCodeOffsetY(shuttleProtocol.getCodeOffsetY().intValue());
+                //褰撳墠鐨勭數鍘嬪��
+                basShuttle.setCurrentVoltage(shuttleProtocol.getCurrentVoltage().intValue());
+                //褰撳墠鐨勬ā鎷熼噺鍊�
+                basShuttle.setCurrentAnalogValue(shuttleProtocol.getCurrentAnalogValue().intValue());
+                //褰撳墠鐨勫崌闄嶄己鏈嶉�熷害
+                basShuttle.setCurrentLiftServoSpeed(shuttleProtocol.getCurrentLiftServoSpeed().intValue());
+                //褰撳墠鐨勮璧颁己鏈嶉�熷害
+                basShuttle.setCurrentMoveServoSpeed(shuttleProtocol.getCurrentMoveServoSpeed().intValue());
+                //褰撳墠鐨勫崌闄嶄己鏈嶈礋杞界巼
+                basShuttle.setCurrentLiftServoLoad(shuttleProtocol.getCurrentLiftServoLoad().intValue());
+                //褰撳墠鐨勮璧颁己鏈嶈礋杞界巼
+                basShuttle.setCurrentMoveServoLoad(shuttleProtocol.getCurrentMoveServoLoad().intValue());
+                //褰撳墠灏忚溅鐘舵�侊紙鍐呴儴鑷垜缁存姢锛�
+                basShuttle.setShuttleStatus(shuttleProtocol.getProtocolStatus());
+                //浠诲姟鍙�
+                basShuttle.setWrkNo(shuttleProtocol.getTaskNo().intValue());
+                //淇敼鏃堕棿
+                basShuttle.setUpdateTime(new Date());
+                //浣滀笟鏍囪
+                basShuttle.setPakMk(shuttleProtocol.getPakMk());
+                if (shuttleService.updateById(basShuttle)) {
+                    OutputQueue.SHUTTLE.offer(MessageFormat.format("銆恵0}銆慬id:{1}] <<<<< 瀹炴椂鏁版嵁鏇存柊鎴愬姛",DateUtils.convert(new Date()), slave.getId()));
+//                    log.info(MessageFormat.format("銆恵0}銆慬id:{1}] <<<<< 瀹炴椂鏁版嵁鏇存柊鎴愬姛",DateUtils.convert(new Date()), slave.getId()));
                 }
 
             }else {
@@ -178,6 +235,7 @@
                 throw new CoolException(MessageFormat.format( "鍥涘悜绌挎杞lc鐘舵�佷俊鎭け璐� ===>> [id:{0}] [ip:{1}] [port:{2}]", slave.getId(), slave.getIp(), slave.getPort()));
             }
         } catch (Exception e) {
+            e.printStackTrace();
             OutputQueue.SHUTTLE.offer(MessageFormat.format("銆恵0}銆戝洓鍚戠┛姊溅plc鐘舵�佷俊鎭け璐� ===>> [id:{1}] [ip:{2}] [port:{3}]", DateUtils.convert(new Date()), slave.getId(), slave.getIp(), slave.getPort()));
             initShuttle();
         }
@@ -285,95 +343,125 @@
     }
 
     //鍒嗛厤浠诲姟
-    private void assignWork(ShuttleAssignCommand assignCommand) {
+    private void assignWork(ShuttleAssignCommand assignCommand) throws Exception {
+        //灏嗘map瀛樺叆redis涓�
+        HashMap<String, Object> map = new HashMap<>();
+
+        //璁$畻璺緞
+        List<NavigateNode> calc = NavigateUtils.calc(assignCommand.getSourceLocNo(), assignCommand.getLocNo(), assignCommand.getTaskMode().intValue());
+        if (calc != null) {
+            //鑾峰彇鍒嗘璺緞
+            ArrayList<ArrayList<NavigateNode>> data = NavigateUtils.getSectionPath(calc);
+            //璺緞鏁版嵁
+            map.put("path", data);
+            //璺緞娆℃暟
+            map.put("pathSize", data.size());
+        }else {
+            if (assignCommand.getTaskMode() == ShuttleTaskModeType.PAK_IN.id.shortValue() || assignCommand.getTaskMode() == ShuttleTaskModeType.PAK_OUT.id.shortValue()) {
+                //灞炰簬鍏ュ簱鍑哄簱锛屽繀椤昏璁$畻璺緞锛屽垯鎶涘嚭寮傚父
+                throw new Exception("鏈兘鎵惧埌杩愯璺緞");
+            }
+        }
+
+        //鍥涘悜绌挎杞﹀彿
+        map.put("shuttle_no", assignCommand.getShuttleNo());
+        //宸ヤ綔鍙�
+        map.put("wrk_no", assignCommand.getTaskNo());
+        //鍛戒护鎵ц姝ュ簭
+        map.put("commandStep", 0);
+        //鍛戒护
+        map.put("assignCommand", assignCommand);
+        shuttleProtocol.setTaskNo(assignCommand.getTaskNo());
+        shuttleProtocol.setAssignCommand(assignCommand);
+        //浠诲姟鏁版嵁淇濆瓨鍒皉edis
+        redisUtil.set("wrk_no_" + assignCommand.getTaskNo(), JSON.toJSONString(map));
+        //鎵ц涓嬪彂浠诲姟
+        executeWork(assignCommand);
+    }
+
+    //鎵ц涓嬪彂鐨勬寚浠�
+    private boolean executeWork(ShuttleAssignCommand assignCommand) {
+        //璇诲彇redis鏁版嵁
+        if (assignCommand == null) {
+            return false;
+        }
+        Object o = redisUtil.get("wrk_no_" + assignCommand.getTaskNo());
+        HashMap map = JSON.parseObject(o.toString(), HashMap.class);
+        //褰撳墠姝ュ簭
+        int commandStep = Integer.parseInt(map.get("commandStep").toString());
+        //path璺緞鏁扮洰
+        int size = 0;
+        //涓嬪彂鍛戒护
         ShuttleCommand command = new ShuttleCommand();
         switch (assignCommand.getTaskMode()) {
-            case 1:
-            case 2:
-                //璁$畻璺緞
-                List<NavigateNode> calc = NavigateUtils.calc(assignCommand.getSourceLocNo(), assignCommand.getDistLocNo(), assignCommand.getTaskMode().intValue());
-                if (calc != null) {
-                    //鑾峰彇鍒嗘璺緞
-                    ArrayList<ArrayList<NavigateNode>> data = NavigateUtils.getSectionPath(calc);
-                    //灏嗘map瀛樺叆redis涓�
-                    HashMap<String, Object> map = new HashMap<>();
-                    //鍛戒护鎵ц姝ュ簭
-                    map.put("commandStep", 0);
-                    //璺緞鏁版嵁
-                    map.put("path", data);
-                    //宸ヤ綔鍙�
-                    map.put("wrk_no", assignCommand.getTaskNo());
-                    //浠诲姟鏁版嵁淇濆瓨鍒皉edis
-                    redisUtil.set("wrk_no_" + assignCommand.getTaskNo(), JSON.toJSONString(map));
-                    shuttleProtocol.setTaskNo(assignCommand.getTaskNo());
-
-                    //鎵ц涓嬪彂浠诲姟
-                    executeWork(assignCommand.getTaskNo());
+            case 1://鍏ュ簱
+            case 2://鍑哄簱
+                //褰撳墠璺緞鏁版嵁
+                Object data = map.get("path");
+                ArrayList pathList = JSON.parseObject(data.toString(), ArrayList.class);
+                //鍙栫涓�鏉¤矾寰�
+                Object o1 = pathList.get(commandStep);
+                ArrayList objectPath = JSON.parseObject(o1.toString(), ArrayList.class);
+                ArrayList<NavigateNode> path = new ArrayList<>();
+                for (Object o2 : objectPath) {
+                    NavigateNode navigateNode = JSON.parseObject(o2.toString(), NavigateNode.class);
+                    path.add(navigateNode);
                 }
+                Integer allDistance = NavigateUtils.getCurrentPathAllDistance(path);//璁$畻褰撳墠璺緞琛岃蛋鎬昏窛绂�
+
+                size = Integer.parseInt(map.get("pathSize").toString());
+                //寮�濮嬭矾寰�
+                NavigateNode startPath = path.get(0);
+                //鐩爣璺緞
+                NavigateNode endPath = path.get(path.size() - 1);
+
+                command.setCommandWord((short) 1);
+                command.setStartCodeNum(NavigatePositionConvert.xyToPosition(startPath.getX(), startPath.getY()));
+                command.setMiddleCodeNum((short) 0);
+                command.setDistCodeNum(NavigatePositionConvert.xyToPosition(endPath.getX(), endPath.getY()));
+                command.setStartToDistDistance(allDistance);
+                command.setMiddleToDistDistance(1000);
+                command.setRunDirection(ShuttleRunDirection.get(startPath.getDirection()).id);
+                command.setPalletLift((short) 1);
+                command.setForceMoveDistance(1000);
+                command.setChargeSwitch((short) 2);
+                command.setIOControl((short) 0);
+                command.setRunSpeed((short) 1000);
+                command.setRadarTmp((short) 0);
+
                 break;
-            case 3:
-            case 4:
+            case 3://鎵樼洏椤跺崌
+            case 4://鎵樼洏涓嬮檷
                 command.setCommandWord((short) 2);
                 command.setPalletLift(assignCommand.getTaskMode() == 3 ? (short)1 : (short)2);
                 command.setCommandEnd((short) 1);
-                write(command);
                 break;
-            case 5:
-            case 6:
-            case 7:
-            case 8:
+            case 5://寮哄埗宸︾Щ
+            case 6://寮哄埗鍙崇Щ
+            case 7://寮哄埗涓婄Щ
+            case 8://寮哄埗涓嬬Щ
                 command.setCommandWord((short) 3);
                 command.setForceMoveDistance(1000);
                 command.setRunDirection((short) (assignCommand.getTaskMode() - 4));
                 command.setCommandEnd((short) 1);
-                write(command);
                 break;
+            case 9://鐘舵�佸浣�
+                command.setCommandWord((short) 0);
+                //璁剧疆鍥涘悜绌挎杞︿负绌洪棽鐘舵��
+                shuttleProtocol.setProtocolStatus(ShuttleProtocolStatusType.IDLE);
+                //浠诲姟鍙锋竻闆�
+                shuttleProtocol.setTaskNo((short) 0);
+                //鏍囪澶嶄綅
+                shuttleProtocol.setPakMk(true);
+                break;
+            default:
         }
 
-    }
-
-    //鎵ц涓嬪彂鐨勬寚浠�
-    private void executeWork(Short taskNo) {
-        //璇诲彇redis鏁版嵁
-        Object o = redisUtil.get("wrk_no_" + taskNo);
-        HashMap map = JSON.parseObject(o.toString(), HashMap.class);
-        //褰撳墠姝ュ簭
-        int commandStep = Integer.parseInt(map.get("commandStep").toString());
-        //褰撳墠璺緞鏁版嵁
-        Object data = map.get("path");
-        ArrayList pathList = JSON.parseObject(data.toString(), ArrayList.class);
-        //鍙栫涓�鏉¤矾寰�
-        Object o1 = pathList.get(commandStep);
-        ArrayList path = JSON.parseObject(o1.toString(), ArrayList.class);
-
-        int size = path.size();
-        //寮�濮嬭矾寰�
-        JSONObject startPath = JSON.parseObject(path.get(0).toString());
-        System.out.println(startPath);
-        //鐩爣璺緞
-        JSONObject endPath = JSON.parseObject(path.get(size - 1).toString());
-        System.out.println(endPath);
-
-        //涓嬪彂鍛戒护
-        ShuttleCommand command = new ShuttleCommand();
-        command.setCommandWord((short) 1);
-        command.setStartCodeNum(NavigatePositionConvert.xyToPosition(startPath.getIntValue("x"), startPath.getIntValue("y")));
-        command.setMiddleCodeNum((short) 0);
-        command.setDistCodeNum(NavigatePositionConvert.xyToPosition(endPath.getIntValue("x"), endPath.getIntValue("y")));
-        command.setStartToDistDistance(1000);
-        command.setMiddleToDistDistance(1000);
-        command.setRunDirection(ShuttleRunDirection.get(startPath.get("direction").toString()).id);
-        command.setPalletLift((short) 1);
-        command.setForceMoveDistance(1000);
-        command.setChargeSwitch((short) 2);
-        command.setIOControl((short) 0);
-        command.setRunSpeed((short) 1000);
-        command.setRadarTmp((short) 0);
         command.setCommandEnd((short) 1);
-
         //涓嬪彂鍛戒护
         if (!write(command)) {
             News.error("鍥涘悜绌挎杞﹀懡浠や笅鍙戝け璐ワ紝绌挎杞﹀彿={}锛屼换鍔℃暟鎹�={}", shuttleProtocol.getShuttleNo(), JSON.toJSON(command));
+            return false;
         } else {
             News.info("鍥涘悜绌挎杞﹀懡浠や笅鍙戞垚鍔燂紝绌挎杞﹀彿={}锛屼换鍔℃暟鎹�={}", shuttleProtocol.getShuttleNo(), JSON.toJSON(command));
 
@@ -381,7 +469,7 @@
             shuttleProtocol.setPakMk(false);
 
             //鍒ゆ柇鏁版嵁鏄惁鎵ц瀹屾垚
-            if (commandStep < size) {
+            if (commandStep < size - 1) {
                 //鏇存柊redis鏁版嵁
                 //姝ュ簭澧炲姞
                 commandStep++;
@@ -391,15 +479,33 @@
             }else {
                 //宸叉墽琛屽畬鎴�
                 //淇濆瓨鏁版嵁鍒版暟鎹簱鍋氭祦姘�
+                BasShuttleOptService shuttleOptService = SpringUtils.getBean(BasShuttleOptService.class);
+                if (shuttleOptService != null) {
+                    BasShuttleOpt opt = new BasShuttleOpt(
+                            assignCommand.getTaskNo().intValue(),
+                            assignCommand.getShuttleNo().intValue(),
+                            new Date(),
+                            ShuttleTaskModeType.get(assignCommand.getTaskMode()).desc,
+                            assignCommand.getSourceLocNo(),
+                            assignCommand.getLocNo(),
+                            null,
+                            null,
+                            null,
+                            JSON.toJSONString(command)
+                    );
+                    shuttleOptService.insert(opt);
+                }
                 //鍒犻櫎redis
                 redisUtil.del("wrk_no_" + map.get("wrk_no").toString());
 
-                //銆傘�傘��
-                //1銆佸懡浠や笅鏂归渶瑕佸垽鏂皬杞︾┖闂茬姸鎬�
-                //2銆�
+                //瀵逛富绾跨▼鎶涘嚭绛夊緟纭鐘舵�亀aiting
+                shuttleProtocol.setProtocolStatus(ShuttleProtocolStatusType.WAITING);
+
+                News.info("鍥涘悜绌挎杞︿换鍔℃墽琛屽畬鎴愮瓑寰呯‘璁や腑锛岀┛姊溅鍙�={}锛屼换鍔℃暟鎹�={}", shuttleProtocol.getShuttleNo(), JSON.toJSON(command));
             }
 
         }
+        return true;
     }
 
     /******************************************************************************************/

--
Gitblit v1.9.1