From 517966d4dbed6ef6e5d591720b971af427e6b63a Mon Sep 17 00:00:00 2001
From: Junjie <DELL@qq.com>
Date: 星期四, 04 十二月 2025 15:25:47 +0800
Subject: [PATCH] #

---
 src/main/java/com/zy/asrs/controller/OpenController.java |  218 +++++++++++++++++++++++++++--------------------------
 1 files changed, 111 insertions(+), 107 deletions(-)

diff --git a/src/main/java/com/zy/asrs/controller/OpenController.java b/src/main/java/com/zy/asrs/controller/OpenController.java
index 06b1e9d..09c9d10 100644
--- a/src/main/java/com/zy/asrs/controller/OpenController.java
+++ b/src/main/java/com/zy/asrs/controller/OpenController.java
@@ -3,28 +3,31 @@
 import com.alibaba.fastjson.JSON;
 import com.baomidou.mybatisplus.mapper.EntityWrapper;
 import com.core.common.R;
-import com.zy.asrs.domain.NotifyDto;
-import com.zy.asrs.domain.enums.NotifyMsgType;
 import com.zy.asrs.domain.param.*;
 import com.zy.asrs.entity.ApiLog;
+import com.zy.asrs.entity.DeviceConfig;
 import com.zy.asrs.entity.LocMast;
+import com.zy.asrs.entity.WrkMast;
 import com.zy.asrs.service.ApiLogService;
+import com.zy.asrs.service.DeviceConfigService;
 import com.zy.asrs.service.LocMastService;
+import com.zy.asrs.service.WrkMastService;
 import com.zy.asrs.utils.NotifyUtils;
 import com.zy.common.annotations.OpenApiLog;
 import com.zy.common.service.CommonService;
 import com.zy.core.cache.SlaveConnection;
-import com.zy.core.dispatcher.ShuttleDispatchUtils;
 import com.zy.core.enums.SlaveType;
-import com.zy.core.model.ForkLiftSlave;
-import com.zy.core.model.ShuttleSlave;
-import com.zy.core.model.protocol.ForkLiftProtocol;
-import com.zy.core.model.protocol.ShuttleProtocol;
-import com.zy.core.properties.SlaveProperties;
-import com.zy.core.thread.ForkLiftThread;
-import com.zy.core.thread.ShuttleThread;
+import com.zy.core.enums.WrkIoType;
+import com.zy.core.model.protocol.CrnProtocol;
+import com.zy.core.model.protocol.RgvProtocol;
+import com.zy.core.thread.CrnThread;
+import com.zy.core.thread.RgvThread;
+import com.zy.system.entity.Config;
+import com.zy.system.service.ConfigService;
+
 import lombok.extern.slf4j.Slf4j;
 import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.beans.factory.annotation.Value;
 import org.springframework.web.bind.annotation.*;
 
 import java.util.ArrayList;
@@ -37,47 +40,22 @@
 @RequestMapping("/openapi")
 public class OpenController {
 
+    @Value("${mainProcessPlugin}")
+    private String mainProcessPlugin;
     @Autowired
     private CommonService commonService;
     @Autowired
-    private ShuttleDispatchUtils shuttleDispatchUtils;
-    @Autowired
     private NotifyUtils notifyUtils;
-    @Autowired
-    private SlaveProperties slaveProperties;
     @Autowired
     private ApiLogService apiLogService;
     @Autowired
     private LocMastService locMastService;
-
-    @PostMapping("/createMoveTask")
-    @OpenApiLog(memo = "灏忚溅绉诲姩浠诲姟")
-    public R createMoveTask(@RequestBody CreateMoveTaskParam param) {
-        if (param == null) {
-            return R.error("鍙傛暟涓嶈兘涓虹┖");
-        }
-        boolean dispatchShuttle = shuttleDispatchUtils.dispatchShuttle(null, param.getLocNo(), param.getShuttleNo());
-        apiLogService.insert(new ApiLog(
-                null
-                , "灏忚溅绉诲姩浠诲姟"
-                , "/createMoveTask"
-                , null
-                , null
-                , null
-                , JSON.toJSONString(param)
-                , null
-                , null
-                , dispatchShuttle ? 1 : 0
-                , 1
-                , new Date()
-                , null
-                , null
-        ));
-        if (dispatchShuttle) {
-            return R.ok();
-        }
-        return R.error("鐢熸垚澶辫触");
-    }
+    @Autowired
+    private WrkMastService wrkMastService;
+    @Autowired
+    private ConfigService configService;
+    @Autowired
+    private DeviceConfigService deviceConfigService;
 
     //绉诲簱浠诲姟
     @PostMapping("/createLocMoveTask")
@@ -227,60 +205,46 @@
         return R.error("浠诲姟鍙栨秷澶辫触");
     }
 
-    @PostMapping("/deviceStatus")
-    @OpenApiLog(memo = "鑾峰彇璁惧鐘舵��")
+    @RequestMapping("/deviceStatus")
+//    @OpenApiLog(memo = "鑾峰彇璁惧鐘舵��")
     public R getDeviceStatus() {
         HashMap<String, Object> map = new HashMap<>();
-        //鑾峰彇灏忚溅鏁版嵁
-        ArrayList<ShuttleProtocol> shuttleProtocols = new ArrayList<>();
-        for (ShuttleSlave slave : slaveProperties.getShuttle()) {
-            ShuttleThread shuttleThread = (ShuttleThread) SlaveConnection.get(SlaveType.Shuttle, slave.getId());
-            if (shuttleThread == null) {
+        //鑾峰彇鍫嗗灈鏈烘暟鎹�
+        ArrayList<CrnProtocol> crnProtocols = new ArrayList<>();
+        List<DeviceConfig> crnList = deviceConfigService.selectList(new EntityWrapper<DeviceConfig>()
+                .eq("device_type", String.valueOf(SlaveType.Crn)));
+        for (DeviceConfig device : crnList) {
+            CrnThread crnThread = (CrnThread) SlaveConnection.get(SlaveType.Crn, device.getDeviceNo());
+            if (crnThread == null) {
                 continue;
             }
 
-            ShuttleProtocol shuttleProtocol = shuttleThread.getStatus();
-            if (shuttleProtocol == null) {
+            CrnProtocol crnProtocol = crnThread.getStatus();
+            if (crnProtocol == null) {
                 continue;
             }
-            shuttleProtocols.add(shuttleProtocol);
+            crnProtocols.add(crnProtocol);
         }
 
-        //鑾峰彇璐у弶鎻愬崌鏈烘暟鎹�
-        ArrayList<ForkLiftProtocol> forkLiftProtocols = new ArrayList<>();
-        for (ForkLiftSlave slave : slaveProperties.getForkLift()) {
-            ForkLiftThread forkLiftThread = (ForkLiftThread) SlaveConnection.get(SlaveType.ForkLift, slave.getId());
-            if (forkLiftThread == null) {
+        //鑾峰彇RGV鏁版嵁
+        ArrayList<RgvProtocol> rgvProtocols = new ArrayList<>();
+        List<DeviceConfig> rgvList = deviceConfigService.selectList(new EntityWrapper<DeviceConfig>()
+                .eq("device_type", String.valueOf(SlaveType.Rgv)));
+        for (DeviceConfig device : rgvList) {
+            RgvThread rgvThread = (RgvThread) SlaveConnection.get(SlaveType.Rgv, device.getDeviceNo());
+            if (rgvThread == null) {
                 continue;
             }
 
-            ForkLiftProtocol forkLiftProtocol = forkLiftThread.getStatus();
-            if (forkLiftProtocol == null) {
+            RgvProtocol rgvProtocol = rgvThread.getStatus();
+            if (rgvProtocol == null) {
                 continue;
             }
-            forkLiftProtocols.add(forkLiftProtocol);
+            rgvProtocols.add(rgvProtocol);
         }
 
-        map.put("shuttle", shuttleProtocols);
-        map.put("forkLift", forkLiftProtocols);
-
-        apiLogService.insert(new ApiLog(
-                null
-                , "鑾峰彇璁惧鐘舵��"
-                , "/deviceStatus"
-                , null
-                , null
-                , null
-                , null
-                , JSON.toJSONString(map)
-                , null
-                , null
-                , 1
-                , new Date()
-                , null
-                , null
-        ));
-
+        map.put("crn", crnList);
+        map.put("rgv", rgvList);
         return R.ok().add(map);
     }
 
@@ -298,23 +262,6 @@
         HashMap<String, Object> map = new HashMap<>();
         map.put("locNo", locMast.getLocNo());
         map.put("locSts", locMast.getLocSts());
-
-        apiLogService.insert(new ApiLog(
-                null
-                , "鑾峰彇鎸囧畾搴撲綅淇℃伅"
-                , "/getLocInformation"
-                , null
-                , null
-                , null
-                , JSON.toJSONString(param)
-                , JSON.toJSONString(map)
-                , null
-                , null
-                , 1
-                , new Date()
-                , null
-                , null
-        ));
 
         return R.ok().add(map);
     }
@@ -335,15 +282,34 @@
             list.add(map);
         }
 
+        return R.ok().add(list);
+    }
+
+    @PostMapping("/queryTask")
+    @OpenApiLog(memo = "鏌ヨ浠诲姟")
+    public R queryTask(@RequestBody QueryTaskParam param) {
+        EntityWrapper<WrkMast> wrapper = new EntityWrapper<>();
+        if(param.getTaskNo() != null) {
+            wrapper.eq("wms_wrk_no", param.getTaskNo());
+        }
+
+        if(param.getTaskType() != null) {
+            WrkIoType ioType = WrkIoType.get(param.getTaskType());
+            if(ioType == null) {
+                return R.error("浠诲姟绫诲瀷涓嶅瓨鍦�");
+            }
+            wrapper.eq("io_type", ioType.id);
+        }
+        List<WrkMast> wrkMasts = wrkMastService.selectList(wrapper);
         apiLogService.insert(new ApiLog(
                 null
-                , "鑾峰彇鎸囧畾搴撲綅淇℃伅"
-                , "/getLocInformation"
+                , "鏌ヨ浠诲姟"
+                , "/queryTask"
                 , null
                 , null
                 , null
-                , null
-                , JSON.toJSONString(list)
+                , JSON.toJSONString(param)
+                , JSON.toJSONString(wrkMasts)
                 , null
                 , null
                 , 1
@@ -352,13 +318,51 @@
                 , null
         ));
 
-        return R.ok().add(list);
+        return R.ok().add(wrkMasts);
     }
 
-    @GetMapping("/test")
-    public R test() {
-        notifyUtils.notify("task", 1, "9999", "W9999", NotifyMsgType.SHUTTLE_MOVING, "data");
-        notifyUtils.notify(String.valueOf(SlaveType.Shuttle), 2, "9999", "W9999", NotifyMsgType.SHUTTLE_MOVE_COMPLETE);
+    @GetMapping("/systemStatus")
+    public R systemStatus() {
+        return R.ok();
+    }
+
+    @GetMapping("/getFakeSystemRunStatus")
+    public R getFakeSystemRunStatus() {
+        HashMap<String, Object> map = new HashMap<>();
+        if(mainProcessPlugin.equals("FakeProcess")) {
+            map.put("running", false);
+            map.put("isFake", true);
+            Config config = configService.selectOne(new EntityWrapper<Config>().eq("code", "enableFake"));
+            if(config != null) {
+                if(config.getValue().equals("Y")) {
+                    map.put("running", true);
+                }
+            }
+        } else {
+            map.put("isFake", false);
+        }
+        return R.ok().add(map);
+    }
+
+    @PostMapping("/startFakeSystem")
+    @OpenApiLog(memo = "鍚姩浠跨湡妯℃嫙")
+    public R startFakeSystem() {
+        Config config = configService.selectOne(new EntityWrapper<Config>().eq("code", "enableFake"));
+        if(config != null) {
+            config.setValue("Y");
+            configService.updateById(config);
+        }
+        return R.ok();
+    }
+
+    @PostMapping("/stopFakeSystem")
+    @OpenApiLog(memo = "鍋滄浠跨湡妯℃嫙")
+    public R stopFakeSystem() {
+        Config config = configService.selectOne(new EntityWrapper<Config>().eq("code", "enableFake"));
+        if(config != null) {
+            config.setValue("N");
+            configService.updateById(config);
+        }
         return R.ok();
     }
 

--
Gitblit v1.9.1