From ff2b6e2329ae2c5d3fede2f9413170fd6e87c46c Mon Sep 17 00:00:00 2001
From: Junjie <540245094@qq.com>
Date: 星期五, 08 十二月 2023 09:27:52 +0800
Subject: [PATCH] #输送线读取

---
 src/main/java/com/zy/core/thread/LiftThread.java |  531 +++++++++++++++++++++++++++++------------------------------
 1 files changed, 261 insertions(+), 270 deletions(-)

diff --git a/src/main/java/com/zy/core/thread/LiftThread.java b/src/main/java/com/zy/core/thread/LiftThread.java
index 1da2b39..d14f4a4 100644
--- a/src/main/java/com/zy/core/thread/LiftThread.java
+++ b/src/main/java/com/zy/core/thread/LiftThread.java
@@ -1,23 +1,19 @@
 package com.zy.core.thread;
 
-import HslCommunication.Core.Transfer.DataFormat;
 import HslCommunication.Core.Types.OperateResult;
 import HslCommunication.Core.Types.OperateResultExOne;
-import HslCommunication.ModBus.ModbusTcpNet;
+import HslCommunication.Profinet.Siemens.SiemensPLCS;
+import HslCommunication.Profinet.Siemens.SiemensS7Net;
 import com.alibaba.fastjson.JSON;
-import com.core.common.Cools;
 import com.core.common.DateUtils;
 import com.core.common.SpringUtils;
 import com.core.exception.CoolException;
 import com.zy.asrs.entity.BasLift;
 import com.zy.asrs.entity.BasLiftOpt;
-import com.zy.asrs.entity.BasShuttle;
-import com.zy.asrs.entity.BasShuttleOpt;
+import com.zy.asrs.mapper.WrkMastMapper;
 import com.zy.asrs.service.BasLiftOptService;
 import com.zy.asrs.service.BasLiftService;
-import com.zy.asrs.service.BasShuttleOptService;
-import com.zy.asrs.service.BasShuttleService;
-import com.zy.common.utils.CommonUtils;
+import com.zy.asrs.utils.Utils;
 import com.zy.common.utils.RedisUtil;
 import com.zy.core.News;
 import com.zy.core.ThreadHandler;
@@ -27,13 +23,16 @@
 import com.zy.core.model.LiftSlave;
 import com.zy.core.model.Task;
 import com.zy.core.model.command.*;
+import com.zy.core.model.protocol.LiftStaProtocol;
 import com.zy.core.model.protocol.LiftProtocol;
+import com.zy.core.model.protocol.StaProtocol;
 import lombok.Data;
 import lombok.extern.slf4j.Slf4j;
 
 import java.text.MessageFormat;
 import java.util.ArrayList;
 import java.util.Date;
+import java.util.HashMap;
 import java.util.List;
 
 /**
@@ -43,14 +42,27 @@
 @Slf4j
 public class LiftThread implements  Runnable, ThreadHandler {
 
-    private ModbusTcpNet modbusTcpNet;
+    private SiemensS7Net siemensS7Net;
     private LiftSlave slave;
     private LiftProtocol liftProtocol;
     private RedisUtil redisUtil;
+    private List<LiftStaProtocol> liftStaProtocols = new ArrayList<>();
 
     public LiftThread(LiftSlave slave,RedisUtil redisUtil) {
         this.slave = slave;
         this.redisUtil = redisUtil;
+
+        //鍒濆鍖栫珯鐐�
+        for (LiftSlave.Sta sta : this.slave.getSta()) {
+            LiftStaProtocol liftStaProtocol = new LiftStaProtocol();
+            liftStaProtocol.setStaNo(sta.getStaNo());//绔欑偣鍙�
+            liftStaProtocol.setLev(sta.getLev());//绔欑偣妤煎眰
+            String locNo = Utils.getLocNo(this.slave.getStaRow(), this.slave.getStaBay(), sta.getLev());
+            liftStaProtocol.setLocNo(locNo);//绔欑偣搴撲綅鍙�
+            liftStaProtocol.setLiftNo(sta.getLiftNo());//鎻愬崌鏈哄彿
+            liftStaProtocols.add(liftStaProtocol);
+        }
+
     }
 
     @Override
@@ -66,16 +78,18 @@
                 switch (step) {
                     // 璇绘暟鎹�
                     case 1:
-                        readStatus();
+                        read();
                         break;
                     // 鍐欏叆鏁版嵁
                     case 2:
-                        write((LiftCommand) task.getData());
+                        write((NyLiftCommand) task.getData());
                         break;
                     //鍒嗛厤浠诲姟
                     case 3:
                         assignWork((LiftAssignCommand) task.getData());
                         break;
+                    case 4:
+                        write2((HashMap<String, Object>) task.getData());
                     default:
                         break;
                 }
@@ -90,10 +104,8 @@
     public boolean connect() {
         boolean result = false;
         //-------------------------鎻愬崌鏈鸿繛鎺ユ柟娉�------------------------//
-        modbusTcpNet = new ModbusTcpNet(slave.getIp(), slave.getPort(), (byte) 0x02);
-        // 褰撲綘闇�瑕佹寚瀹氭牸寮忕殑鏁版嵁瑙f瀽鏃讹紝灏遍渶瑕佽缃笅闈㈢殑杩欎釜淇℃伅
-        modbusTcpNet.setDataFormat(DataFormat.ABCD);
-        OperateResult connect = modbusTcpNet.ConnectServer();
+        siemensS7Net = new SiemensS7Net(SiemensPLCS.S1200, slave.getIp());
+        OperateResult connect = siemensS7Net.ConnectServer();
         if(connect.IsSuccess){
             result = true;
             OutputQueue.CRN.offer(MessageFormat.format( "銆恵0}銆戞彁鍗囨満plc杩炴帴鎴愬姛 ===>> [id:{1}] [ip:{2}] [port:{3}]", DateUtils.convert(new Date()), slave.getId(), slave.getIp(), slave.getPort()));
@@ -102,89 +114,86 @@
             OutputQueue.CRN.offer(MessageFormat.format("銆恵0}銆戞彁鍗囨満plc杩炴帴澶辫触锛侊紒锛� ===>> [id:{1}] [ip:{2}] [port:{3}]", DateUtils.convert(new Date()), slave.getId(), slave.getIp(), slave.getPort()));
             log.error("鎻愬崌鏈簆lc杩炴帴澶辫触锛侊紒锛� ===>> [id:{}] [ip:{}] [port:{}] ", slave.getId(), slave.getIp(), slave.getPort());
         }
-        modbusTcpNet.ConnectClose();
+        siemensS7Net.ConnectClose();
         //-------------------------鎻愬崌鏈鸿繛鎺ユ柟娉�------------------------//
         return result;
     }
 
     @Override
     public void close() {
-        modbusTcpNet.ConnectClose();
+        siemensS7Net.ConnectClose();
+    }
+
+    private void read() {
+        try {
+            readStatus();
+
+            //鎻愬崌鏈哄浜庤繍琛岀姸鎬侊紝灏嗘爣璁扮疆涓篺alse
+            if (liftProtocol.getBusy()) {
+                liftProtocol.setPakMk(false);
+            }
+
+            //鎻愬崌鏈哄浜庢湭杩愯銆佸氨缁�佹爣璁皌rue銆佹湁浠诲姟鍙�
+            if (!liftProtocol.getBusy()
+                    && !liftProtocol.getPakMk()
+                    && liftProtocol.getTaskNo() != 0) {
+                //杩樻湁鏈畬鎴愮殑鍛戒护
+                executeWork(liftProtocol.getTaskNo());
+            }
+        } catch (Exception e) {
+            OutputQueue.LIFT.offer(MessageFormat.format("銆恵0}銆戞彁鍗囨満plc鐘舵�佷俊鎭け璐� ===>> [id:{1}] [ip:{2}] [port:{3}]", DateUtils.convert(new Date()), slave.getId(), slave.getIp(), slave.getPort()));
+        }
     }
 
     private void readStatus() {
         try {
-            OperateResultExOne<byte[]> result = modbusTcpNet.Read("29", (short) 50);
-            if (result.IsSuccess) {
+            //鑾峰彇鎻愬崌鏈烘暟鎹�
+            OperateResultExOne<byte[]> result1 = siemensS7Net.Read("DB82.4.0", (short) 10);
+            if (result1.IsSuccess) {
                 if (null == liftProtocol) {
                     liftProtocol = new LiftProtocol();
                     liftProtocol.setLiftNo(slave.getId().shortValue());
                 }
-
-                //----------璇诲彇鎻愬崌鏈虹姸鎬�-----------
-                //鑾峰彇鏁版嵁
-                byte[] content = result.Content;
-                //鎻愬崌鏈洪攣瀹�
-                liftProtocol.setLiftLock(CommonUtils.shortToBoolean(modbusTcpNet.getByteTransform().TransInt16(content, 0)));
-                //浣嶇疆鍒拌揪鍙嶉
-                liftProtocol.setPositionArrivalFeedback(modbusTcpNet.getByteTransform().TransInt16(content,2));
-                //鍑嗗灏辩华
-                liftProtocol.setReady(CommonUtils.shortToBoolean(modbusTcpNet.getByteTransform().TransInt16(content,4)));
-                //杩愯涓�
-                liftProtocol.setRunning(CommonUtils.shortToBoolean(modbusTcpNet.getByteTransform().TransInt16(content,6)));
-                //鑱旀満/鍗曟満
-                liftProtocol.setMode(CommonUtils.shortToBoolean(modbusTcpNet.getByteTransform().TransInt16(content,8)));
-
-                //浠ヤ笅鍙傛暟骞舵湭杩涜璋冩暣(闇�瑕佸悗缁拡瀵瑰疄鏈鸿繘琛岃幏鍙栧拰璋冭瘯)
-                //杈撻�佺嚎鍓嶇鍏夌數鏈夎揣
-                liftProtocol.setLineFrontHasStock(modbusTcpNet.getByteTransform().TransBool(content,10));
-                //杈撻�佺嚎姝h浆鍙嶉
-                liftProtocol.setForwardRotationFeedback(modbusTcpNet.getByteTransform().TransBool(content,12));
-                //杈撻�佺嚎鍙嶈浆鍙嶉
-                liftProtocol.setReverseFeedback(modbusTcpNet.getByteTransform().TransBool(content,14));
-                //杈撻�佺嚎鐢垫満杩囪浇
-                liftProtocol.setMotorOverload(modbusTcpNet.getByteTransform().TransBool(content,16));
-                //杈撻�佺嚎鏈鍏夌數鏈夎揣
-                liftProtocol.setLineEndHasStock(modbusTcpNet.getByteTransform().TransBool(content,18));
-                //杩涜緭閫佺嚎鍗℃墭鐩樻姤璀�
-                liftProtocol.setInConveyLineCardTrayAlarm(modbusTcpNet.getByteTransform().TransBool(content,20));
-                //鍑鸿緭閫佺嚎鍗℃墭鐩樻姤璀�
-                liftProtocol.setOutConveyLineCardTrayAlarm(modbusTcpNet.getByteTransform().TransBool(content,22));
-                //骞冲彴浣嶇疆鍋忓樊鎶ヨ
-                liftProtocol.setPlatPositionDeviationAlarm(modbusTcpNet.getByteTransform().TransBool(content,24));
-                //骞冲彴鎵煩鍋忓樊鎶ヨ
-                liftProtocol.setPlatTorqueDeviationAlarm(modbusTcpNet.getByteTransform().TransBool(content,26));
-                //骞冲彴鍥涘悜杞︽娴�
-                liftProtocol.setPlatShuttleCheck(modbusTcpNet.getByteTransform().TransBool(content,28));
-                //鏈氨缁姸鎬�
-                liftProtocol.setNotReady(modbusTcpNet.getByteTransform().TransInt16(content,30));
-                //浼烘湇1閿欒
-                liftProtocol.setServoError1(modbusTcpNet.getByteTransform().TransInt16(content,32));
-                //浼烘湇2閿欒
-                liftProtocol.setServoError2(modbusTcpNet.getByteTransform().TransInt16(content,34));
-                //浼烘湇3閿欒
-                liftProtocol.setServoError3(modbusTcpNet.getByteTransform().TransInt16(content,36));
-                //浼烘湇4閿欒
-                liftProtocol.setServoError4(modbusTcpNet.getByteTransform().TransInt16(content,38));
-                //鎻愬崌鏈哄疄闄呴�熷害鍙嶉
-                liftProtocol.setLiftActualSpeed(modbusTcpNet.getByteTransform().TransInt16(content,40));
-
-                ///璇诲彇鎻愬崌鏈虹姸鎬�-end
-
-                //灏忚溅澶勪簬杩愯鐘舵�侊紝灏嗘爣璁扮疆涓簍rue
-                if (liftProtocol.getRunning()) {
-                    liftProtocol.setPakMk(true);
+                //璇诲彇4.0-4.7鏁版嵁
+                boolean[] status1 = siemensS7Net.getByteTransform().TransBool(result1.Content, 0, 1);
+                //璇诲彇5.0-5.7鏁版嵁
+                boolean[] status2 = siemensS7Net.getByteTransform().TransBool(result1.Content, 1, 1);
+                //妯″紡
+                liftProtocol.setModel(status1[0]);
+                //蹇欓棽
+                liftProtocol.setBusy(!status1[1]);
+                //鍓嶈秴闄�
+                liftProtocol.setFrontOverrun(status1[4]);
+                //鍚庤秴闄�
+                liftProtocol.setBackOverrun(status1[5]);
+                //宸﹁秴闄�
+                liftProtocol.setLeftOverrun(status1[6]);
+                //鍙宠秴闄�
+                liftProtocol.setRightOverrun(status1[7]);
+                //瓒呴珮
+                liftProtocol.setOverHeight(status2[0]);
+                //瓒呴噸
+                liftProtocol.setOverWeight(status2[1]);
+                //鏈夋墭鐩�
+                liftProtocol.setHasTray(status2[5]);
+                //鏈夊皬杞�
+                liftProtocol.setHasCar(status2[6]);
+                //璁惧鏁呴殰
+                liftProtocol.setDeviceError(status2[7]);
+                //浠诲姟鍙�
+                liftProtocol.setTaskNo(siemensS7Net.getByteTransform().TransInt16(result1.Content, 2));
+                //鐩殑鍦板潃
+                liftProtocol.setDistAddress(siemensS7Net.getByteTransform().TransInt16(result1.Content, 4));
+                //宸插畬鎴愪换鍔″彿
+                liftProtocol.setCompleteTaskNo(siemensS7Net.getByteTransform().TransInt16(result1.Content, 6));
+                //褰撳墠妤煎眰
+                short lev = siemensS7Net.getByteTransform().TransInt16(result1.Content, 8);
+                if (lev >= 7 && lev <= 9) {
+                    lev -= 2;
+                } else if (lev >= 12 && lev <= 14) {
+                    lev -= 4;
                 }
-
-                //鎻愬崌鏈哄浜庨攣瀹氥�佹湭杩愯銆佸氨缁�佹爣璁皌rue銆佹湁浠诲姟鍙�
-                if (liftProtocol.getLiftLock()
-                        && !liftProtocol.getRunning()
-                        && liftProtocol.getReady()
-                        && liftProtocol.getPakMk()
-                        && liftProtocol.getTaskNo() != 0) {
-                    //杩樻湁鏈畬鎴愮殑鍛戒护
-                    executeWork(liftProtocol.getTaskNo());
-                }
+                liftProtocol.setLev(lev);
 
                 //灏嗘彁鍗囨満鐘舵�佷繚瀛樿嚦鏁版嵁搴�
                 BasLiftService liftService = SpringUtils.getBean(BasLiftService.class);
@@ -199,131 +208,128 @@
                 basLift.setWrkNo(liftProtocol.getTaskNo().intValue());
                 basLift.setUpdateTime(new Date());
                 basLift.setPakMk(liftProtocol.getPakMk());
-                basLift.setLiftLock(liftProtocol.getLiftLock());
-                basLift.setPositionArrivalFeedback(liftProtocol.getPositionArrivalFeedback().intValue());
-                basLift.setReady(liftProtocol.getReady());
-                basLift.setRunning(liftProtocol.getRunning());
-                basLift.setMode(liftProtocol.getMode());
-                basLift.setLineFrontHasStock(liftProtocol.getLineFrontHasStock());
-                basLift.setForwardRotationFeedback(liftProtocol.getForwardRotationFeedback());
-                basLift.setReverseFeedback(liftProtocol.getReverseFeedback());
-                basLift.setMotorOverload(liftProtocol.getMotorOverload());
-                basLift.setLineEndHasStock(liftProtocol.getLineEndHasStock());
-                basLift.setInConveyLineCardTrayAlarm(liftProtocol.getInConveyLineCardTrayAlarm());
-                basLift.setOutConveyLineCardTrayAlarm(liftProtocol.getOutConveyLineCardTrayAlarm());
-                basLift.setPlatPositionDeviationAlarm(liftProtocol.getPlatPositionDeviationAlarm());
-                basLift.setPlatTorqueDeviationAlarm(liftProtocol.getPlatTorqueDeviationAlarm());
-                basLift.setPlatShuttleCheck(liftProtocol.getPlatShuttleCheck());
-                basLift.setNotReady(liftProtocol.getNotReady().intValue());
-                basLift.setServoError1(liftProtocol.getServoError1().intValue());
-                basLift.setServoError2(liftProtocol.getServoError2().intValue());
-                basLift.setServoError3(liftProtocol.getServoError3().intValue());
-                basLift.setServoError4(liftProtocol.getServoError4().intValue());
-                basLift.setLiftActualSpeed(liftProtocol.getLiftActualSpeed().intValue());
+                basLift.setModel(liftProtocol.getModel());
+                basLift.setBusy(liftProtocol.getBusy());
+                basLift.setFrontOverrun(liftProtocol.getFrontOverrun());
+                basLift.setBackOverrun(liftProtocol.getBackOverrun());
+                basLift.setLeftOverrun(liftProtocol.getLeftOverrun());
+                basLift.setRightOverrun(liftProtocol.getRightOverrun());
+                basLift.setOverHeight(liftProtocol.getOverHeight());
+                basLift.setOverWeight(liftProtocol.getOverWeight());
+                basLift.setHasTray(liftProtocol.getHasTray());
+                basLift.setHasCar(liftProtocol.getHasCar());
+                basLift.setDeviceError(liftProtocol.getDeviceError());
+                basLift.setDistAddress(liftProtocol.getDistAddress().intValue());
+                basLift.setCompleteTaskNo(liftProtocol.getCompleteTaskNo().intValue());
+                basLift.setLev(liftProtocol.getLev().intValue());
                 if (liftService.updateById(basLift)) {
                     OutputQueue.LIFT.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 {
                 OutputQueue.LIFT.offer(MessageFormat.format("銆恵0}銆憑1}鎻愬崌鏈簆lc鐘舵�佷俊鎭け璐�", DateUtils.convert(new Date()), slave.getId()));
                 throw new CoolException(MessageFormat.format( "鎻愬崌鏈簆lc鐘舵�佷俊鎭け璐� ===>> [id:{0}] [ip:{1}] [port:{2}]", slave.getId(), slave.getIp(), slave.getPort()));
             }
+            Thread.sleep(200);
+
+            //鑾峰彇鎻愬崌鏈虹珯鐐规暟鎹�
+            OperateResultExOne<byte[]> result2 = siemensS7Net.Read("DB82.14.0", (short) (10 * liftStaProtocols.size()));
+            if (result1.IsSuccess) {
+                for (int i = 0; i < slave.getSta().size(); i++) {
+                    LiftStaProtocol liftStaProtocol = liftStaProtocols.get(i);
+                    int i1 = 0 + (i * 10);
+                    int i2 = 1 + (i * 10);
+                    //璇诲彇x4.0-x4.7鏁版嵁
+                    boolean[] status1 = siemensS7Net.getByteTransform().TransBool(result2.Content, i1, 1);
+                    //璇诲彇x5.0-x5.7鏁版嵁
+                    boolean[] status2 = siemensS7Net.getByteTransform().TransBool(result2.Content, i2, 1);
+                    //妯″紡
+                    liftStaProtocol.setModel(status1[0]);
+                    //蹇欓棽
+                    liftStaProtocol.setBusy(!status1[1]);
+                    //鏈夋墭鐩�
+                    liftStaProtocol.setHasTray(status1[2]);
+                    //鍓嶈秴闄�
+                    liftStaProtocol.setFrontOverrun(status1[4]);
+                    //鍚庤秴闄�
+                    liftStaProtocol.setBackOverrun(status1[5]);
+                    //宸﹁秴闄�
+                    liftStaProtocol.setLeftOverrun(status1[6]);
+                    //鍙宠秴闄�
+                    liftStaProtocol.setRightOverrun(status1[7]);
+                    //瓒呴珮
+                    liftStaProtocol.setOverHeight(status2[0]);
+                    //瓒呴噸
+                    liftStaProtocol.setOverWeight(status2[1]);
+                    //鏈夊皬杞�
+                    liftStaProtocol.setHasCar(status2[6]);
+                    //璁惧鏁呴殰
+                    liftStaProtocol.setDeviceError(status2[7]);
+                    //浠诲姟鍙�
+                    liftStaProtocol.setTaskNo(siemensS7Net.getByteTransform().TransInt16(result2.Content, 2));
+                    //宸插畬鎴愪换鍔″彿
+                    liftStaProtocol.setCompleteTaskNo(siemensS7Net.getByteTransform().TransInt16(result2.Content, 6));
+                }
+            }
+
         } catch (Exception e) {
             OutputQueue.LIFT.offer(MessageFormat.format("銆恵0}銆戞彁鍗囨満plc鐘舵�佷俊鎭け璐� ===>> [id:{1}] [ip:{2}] [port:{3}]", DateUtils.convert(new Date()), slave.getId(), slave.getIp(), slave.getPort()));
-            initLift();
         }
     }
 
-    private boolean write(LiftCommand command){
+    private boolean write(NyLiftCommand command){
         if (null == command) {
             News.error("鎻愬崌鏈哄啓鍏ュ懡浠や负绌�");
             return false;
         }
 
         command.setLiftNo(slave.getId().shortValue());
-        // 寮�濮嬩换鍔�
-        short[] array = new short[30];
-        //寮�濮嬭繍琛�
-        array[0] = command.getRun();
-        if (command.getDistPosition() != null) {
-            //鐩爣浣嶇疆
-            array[1] = command.getDistPosition();
-        }
-        if (command.getSpeed() != null) {
-            //杩愯閫熷害
-            array[2] = command.getSpeed();
-        }
-        if (command.getHeight2() != null) {
-            //浜屽眰楂樺害璁惧畾
-            array[3] = command.getHeight2();
-        }
-        if (command.getHeight3() != null) {
-            //涓夊眰楂樺害璁惧畾
-            array[4] = command.getHeight3();
-        }
-        if (command.getHeight4() != null) {
-            //鍥涘眰楂樺害璁惧畾
-            array[5] = command.getHeight4();
-        }
-        if (command.getLiftLockShortValue() != null) {
-            //鎻愬崌鏈洪攣瀹�
-            array[29] = command.getLiftLockShortValue();
-        }
+        short[] array = getCommandArr(command);//鑾峰彇鍛戒护鎶ユ枃
 
-        OperateResult result = modbusTcpNet.Write("0", array);;
+        OperateResult result = siemensS7Net.Write("DB83.0", array);
         if (result != null && result.IsSuccess) {
             News.info("鎻愬崌鏈哄懡浠や笅鍙慬id:{}] >>>>> {}", slave.getId(), JSON.toJSON(command));
             OutputQueue.LIFT.offer(MessageFormat.format("銆恵0}銆慬id:{1}] >>>>> 鍛戒护涓嬪彂锛� {2}", DateUtils.convert(new Date()), slave.getId(), JSON.toJSON(command)));
             return true;
         } else {
-            OutputQueue.LIFT.offer(MessageFormat.format("銆恵0}銆戝啓鍏ユ彁鍗囨満plc鏁版嵁澶辫触 ===>> [id:{1}] [ip:{2}] [port:{3}]", DateUtils.convert(new Date()), slave.getId(), slave.getIp(), slave.getPort()));
+            OutputQueue.LIFT.offer(MessageFormat.format("銆恵0}銆戝啓鍏ユ彁鍗囨満plc鏁版嵁澶辫触 ===>> [id:{1}] [ip:{2}] [port:{3}],娆℃暟锛歿}", DateUtils.convert(new Date()), slave.getId(), slave.getIp(), slave.getPort()));
             News.error("鍐欏叆鎻愬崌鏈簆lc鏁版嵁澶辫触 ===>> [id:{}] [ip:{}] [port:{}]", slave.getId(), slave.getIp(), slave.getPort());
             return false;
         }
     }
 
+    //鑾峰彇鍛戒护鎶ユ枃
+    private short[] getCommandArr(NyLiftCommand command) {
+        // 寮�濮嬩换鍔�
+        short[] array = new short[4];
+        if (command.getTaskModel() != null) {
+            //浠诲姟绫诲瀷
+            array[0] = command.getTaskModel();
+        }
+        if (command.getSourceSta() != null) {
+            //婧愮珯鍙扮紪鍙�
+            array[1] = command.getSourceSta();
+        }
+        if (command.getTargetSta() != null) {
+            //鐩爣绔欏彴缂栧彿
+            array[2] = command.getTargetSta();
+        }
+        if (command.getTaskNo() != null) {
+            //浠诲姟鍙�
+            array[3] = command.getTaskNo();
+        }
+        return array;
+    }
+
     //鍒嗛厤浠诲姟
     private void assignWork(LiftAssignCommand assignCommand) {
-        //鎵嬪姩妯″紡鎸囦护
-        if (!assignCommand.getAuto()) {
-            LiftCommand command = new LiftCommand();
-            //鎻愬崌鏈哄綋鍓嶆ゼ灞�
-            Short lev = liftProtocol.getLev();
-            List<LiftCommand> commands = assignCommand.getCommands();
-            if (commands == null) {
-                commands = new ArrayList<LiftCommand>();
-            }
-            liftProtocol.setTaskNo(assignCommand.getTaskNo());
-            switch (assignCommand.getTaskMode()) {
-                case 1://涓婂崌涓�灞�
-                    command = getLiftUpDownCommand(++lev);//鑾峰彇鎻愬崌鏈轰笂鍗囦笅闄嶅懡浠�
-                    break;
-                case 2://涓嬮檷涓�灞�
-                    command = getLiftUpDownCommand(--lev);//鑾峰彇鎻愬崌鏈轰笂鍗囦笅闄嶅懡浠�
-                    break;
-                case 3://鏈夎揣姝h浆
-                    command = getLiftTurnCommand(1);//鑾峰彇鎻愬崌鏈鸿浆鍔ㄥ懡浠�
-                    break;
-                case 4://鏈夎揣鍙嶈浆
-                    command = getLiftTurnCommand(2);//鑾峰彇鎻愬崌鏈鸿浆鍔ㄥ懡浠�
-                    break;
-                case 5://澶嶄綅
-                    command = getResetCommand();//鑾峰彇澶嶄綅鍛戒护
-                    break;
-                default:
-            }
-            commands.add(command);
-            assignCommand.setCommands(commands);
-        }
-
         LiftRedisCommand redisCommand = new LiftRedisCommand();
         redisCommand.setLiftNo(assignCommand.getLiftNo());//鎻愬崌鏈哄彿
         redisCommand.setWrkNo(assignCommand.getTaskNo());//宸ヤ綔鍙�
         redisCommand.setCommandStep(0);//鍛戒护鎵ц姝ュ簭
         redisCommand.setAssignCommand(assignCommand);//鍛戒护
         //浠诲姟鏁版嵁淇濆瓨鍒皉edis
-        redisUtil.set("lift_wrk_no_" + assignCommand.getTaskNo(), JSON.toJSONString(redisCommand));
+        redisUtil.set(RedisKeyType.LIFT.key + assignCommand.getTaskNo(), JSON.toJSONString(redisCommand));
         liftProtocol.setAssignCommand(assignCommand);
         liftProtocol.setProtocolStatus(LiftProtocolStatusType.WORKING);
         //鎵ц涓嬪彂浠诲姟
@@ -337,129 +343,114 @@
             return false;
         }
 
-        //灏嗘爣璁扮疆涓篺alse(闃叉閲嶅彂)
-        liftProtocol.setPakMk(false);
-
-        Object o = redisUtil.get("lift_wrk_no_" + wrkNo);
+        WrkMastMapper wrkMastMapper = SpringUtils.getBean(WrkMastMapper.class);
+        Object o = redisUtil.get(RedisKeyType.LIFT.key + wrkNo);
         if (o == null) {
             return false;
         }
         LiftRedisCommand redisCommand = JSON.parseObject(o.toString(), LiftRedisCommand.class);
-        List<LiftCommand> commands = redisCommand.getAssignCommand().getCommands();
+        List<NyLiftCommand> commands = redisCommand.getAssignCommand().getCommands();
         //褰撳墠姝ュ簭
         int commandStep = redisCommand.getCommandStep();
         //鎬绘搴�
         int size = commands.size();
-        LiftAssignCommand assignCommand = redisCommand.getAssignCommand();
 
         //鍙栧嚭鍛戒护
-        LiftCommand command = commands.get(commandStep);
+        NyLiftCommand command = commands.get(commandStep);
+
+        if (!redisCommand.getLiftNo().equals(liftProtocol.getLiftNo())) {
+            return false;
+        }
+
         //涓嬪彂鍛戒护
         if (!write(command)) {
             News.error("鎻愬崌鏈哄懡浠や笅鍙戝け璐ワ紝鎻愬崌鏈哄彿={}锛屼换鍔℃暟鎹�={}", command.getLiftNo(), JSON.toJSON(command));
             return false;
+        }
+
+        liftProtocol.setProtocolStatus(LiftProtocolStatusType.WORKING);
+        News.info("鎻愬崌鏈哄懡浠や笅鍙戞垚鍔燂紝鎻愬崌鏈哄彿={}锛屼换鍔℃暟鎹�={}", command.getLiftNo(), JSON.toJSON(command));
+
+        //灏嗘爣璁扮疆涓簍rue(闃叉閲嶅彂)
+        liftProtocol.setPakMk(true);
+
+        //淇濆瓨鏁版嵁鍒版暟鎹簱鍋氭祦姘�
+        BasLiftOptService liftOptService = SpringUtils.getBean(BasLiftOptService.class);
+        if (liftOptService != null) {
+            short[] commandArr = getCommandArr(command);//鑾峰彇鍛戒护鎶ユ枃
+            BasLiftOpt opt = new BasLiftOpt(
+                    redisCommand.getWrkNo().intValue(),
+                    liftProtocol.getLiftNo().intValue(),
+                    new Date(),
+                    null,
+                    null,
+                    null,
+                    JSON.toJSONString(command),
+                    JSON.toJSONString(liftProtocol)
+            );
+            opt.setDeviceWrk(command.getTaskNo().toString());//璁惧宸ヤ綔鍙�
+            liftOptService.insert(opt);
+        }
+
+        //鍒ゆ柇鏁版嵁鏄惁鎵ц瀹屾垚
+        if (commandStep < size - 1) {
+            //鏇存柊redis鏁版嵁
+            //姝ュ簭澧炲姞
+            commandStep++;
+            redisCommand.setCommandStep(commandStep);
+            //浠诲姟鏁版嵁淇濆瓨鍒皉edis
+            redisUtil.set(RedisKeyType.LIFT.key + redisCommand.getWrkNo(), JSON.toJSONString(redisCommand));
         }else {
-            News.info("鎻愬崌鏈哄懡浠や笅鍙戞垚鍔燂紝鎻愬崌鏈哄彿={}锛屼换鍔℃暟鎹�={}", command.getLiftNo(), JSON.toJSON(command));
+            //宸叉墽琛屽畬鎴�
+            //鍒犻櫎redis
+            redisUtil.del(RedisKeyType.LIFT.key + redisCommand.getWrkNo());
 
-            //鍒ゆ柇鏁版嵁鏄惁鎵ц瀹屾垚
-            if (commandStep < size - 1) {
-                //鏇存柊redis鏁版嵁
-                //姝ュ簭澧炲姞
-                commandStep++;
-                redisCommand.setCommandStep(commandStep);
-                //浠诲姟鏁版嵁淇濆瓨鍒皉edis
-                redisUtil.set("lift_wrk_no_" + redisCommand.getWrkNo(), JSON.toJSONString(redisCommand));
-            }else {
-                //宸叉墽琛屽畬鎴�
-                //淇濆瓨鏁版嵁鍒版暟鎹簱鍋氭祦姘�
-                BasLiftOptService liftOptService = SpringUtils.getBean(BasLiftOptService.class);
-                if (liftOptService != null) {
-                    BasLiftOpt opt = new BasLiftOpt(
-                            redisCommand.getWrkNo().intValue(),
-                            redisCommand.getLiftNo().intValue(),
-                            new Date(),
-                            null,
-                            null,
-                            null,
-                            JSON.toJSONString(assignCommand)
-                    );
-                    liftOptService.insert(opt);
-                }
-                //鍒犻櫎redis
-                redisUtil.del("lift_wrk_no_" + redisCommand.getWrkNo());
+            //瀵逛富绾跨▼鎶涘嚭绛夊緟纭鐘舵�亀aiting
+            liftProtocol.setProtocolStatus(LiftProtocolStatusType.WAITING);
+            News.info("鎻愬崌鏈轰换鍔℃墽琛屼笅鍙戝畬鎴愮瓑寰呮墽琛岀粨鏉燂紝鎻愬崌鏈哄彿={}锛屼换鍔℃暟鎹�={}", command.getLiftNo(), JSON.toJSON(command));
+        }
 
-                if (assignCommand.getAuto()) {
-                    //瀵逛富绾跨▼鎶涘嚭绛夊緟纭鐘舵�亀aiting
-                    liftProtocol.setProtocolStatus(LiftProtocolStatusType.WAITING);
-                    News.info("鎻愬崌鏈轰换鍔℃墽琛屽畬鎴愮瓑寰呯‘璁や腑锛屾彁鍗囨満鍙�={}锛屼换鍔℃暟鎹�={}", command.getLiftNo(), JSON.toJSON(command));
-                }else {
-                    //鎵嬪姩妯″紡涓嶆姏鍑虹瓑寰呯姸鎬�
-                    liftProtocol.setTaskNo((short) 0);
-                    liftProtocol.setShuttleNo((short) 0);
-                    liftProtocol.setProtocolStatus(LiftProtocolStatusType.IDLE);
-                    liftProtocol.setPakMk(true);
-                    liftProtocol.setSecurityMk(false);
-                    News.info("鎻愬崌鏈烘墜鍔ㄤ换鍔℃墽琛屽畬鎴愶紝鎻愬崌鏈哄彿={}锛屼换鍔℃暟鎹�={}", command.getLiftNo(), JSON.toJSON(command));
-                }
-
-                //涓嬪彂涓�鏉℃彁鍗囨満瑙i攣鍛戒护
-                LiftCommand unlockCommand = getUnlockCommand(command.getLiftNo());
-                if (write(unlockCommand)) {
-                    News.info("鎻愬崌鏈虹姸鎬佸凡瑙i攣锛屾彁鍗囨満鍙�={}锛屼换鍔℃暟鎹�={}", command.getLiftNo(), JSON.toJSON(command));
-                }
-
-            }
+        if (redisCommand.getAssignCommand().getTaskMode() == NyLiftTaskModelType.RESET.id.shortValue()) {
+            //澶嶄綅鍛戒护
+            //宸ヤ綔鍙锋竻闆�
+            liftProtocol.setTaskNo((short) 0);
+            //浠ょ墝娓呴浂
+            liftProtocol.setToken(0);
+            //璁剧疆鎻愬崌鏈轰负绌洪棽鐘舵��
+            liftProtocol.setProtocolStatus(LiftProtocolStatusType.IDLE);
+            //浠诲姟鎸囦护娓呴浂
+            liftProtocol.setAssignCommand(null);
         }
 
         return true;
     }
 
-    /**
-     * 鑾峰彇鎻愬崌鏈鸿В閿佸懡浠�
-     */
-    private LiftCommand getUnlockCommand(Short liftNo) {
-        LiftCommand command = new LiftCommand();
-        command.setRun((short) 0);
-        command.setLiftNo(liftNo);
-        command.setLiftLock(false);
-        return command;
-    }
+    //缁欐彁鍗囨満鍐欏叆杩涘嚭鐘舵��
+    private void write2(HashMap<String,Object> data) {
+//        //鍑�
+//        status = true;
+//        //杩�
+//        status = false;
+        int lev = Integer.parseInt(data.get("lev").toString());
+        boolean status = Boolean.parseBoolean(data.get("status").toString());
 
-    /**
-     * 鑾峰彇澶嶄綅鍛戒护
-     */
-    private LiftCommand getResetCommand() {
-        LiftCommand command = new LiftCommand();
-        command.setRun((short) 0);
-        command.setLiftLock(false);
-        return command;
-    }
-
-    /**
-     * 鑾峰彇鎻愬崌鏈轰笂鍗囦笅闄嶅懡浠�
-     */
-    private LiftCommand getLiftUpDownCommand(Short lev) {
-        LiftCommand command = new LiftCommand();
-        command.setRun((short) 1);//鍗囬檷
-        command.setDistPosition(lev);
-        return command;
-    }
-
-    /**
-     * 鑾峰彇鎻愬崌鏈鸿浆鍔ㄥ懡浠わ紝direction锛�1=銆嬫湁璐ф杞紝2=銆嬫湁璐у弽杞�
-     */
-    private LiftCommand getLiftTurnCommand(Integer direction) {
-        LiftCommand command = new LiftCommand();
-        command.setRun(direction == 1 ? (short) 6 : (short) 3);
-        return command;
-    }
-
-    /**
-     * 鍒濆鍖栨彁鍗囨満
-     */
-    private void initLift() {
-        if (null == liftProtocol) {
-            liftProtocol = new LiftProtocol();
+        ArrayList<String> list = new ArrayList<String>(){{
+            add("83.8.0");
+            add("83.8.1");
+            add("83.8.2");
+            add("83.8.3");
+            add("83.8.4");
+            add("83.8.5");
+            add("83.8.6");
+            add("83.8.7");
+            add("83.9.0");
+            add("83.9.1");
+        }};
+        OperateResult result = siemensS7Net.Write("DB" + list.get(lev - 1), status);
+        if (result != null && result.IsSuccess) {
+            News.info("鎻愬崌鏈哄懡浠や笅鍙慬id:{}]", slave.getId());
+        } else {
+            News.error("鍐欏叆鎻愬崌鏈簆lc鏁版嵁澶辫触 ===>> [id:{}] [ip:{}] [port:{}]", slave.getId(), slave.getIp(), slave.getPort());
         }
     }
 

--
Gitblit v1.9.1