From f941a47ccd057a719eef4db7decf13bf9ad2a4f8 Mon Sep 17 00:00:00 2001
From: luxiaotao1123 <t1341870251@163.com>
Date: 星期三, 25 十二月 2024 11:13:11 +0800
Subject: [PATCH] #

---
 zy-acs-manager/src/main/java/com/zy/acs/manager/core/service/PatrolService.java |   30 ++++++++++++++++++++++--------
 1 files changed, 22 insertions(+), 8 deletions(-)

diff --git a/zy-acs-manager/src/main/java/com/zy/acs/manager/core/service/PatrolService.java b/zy-acs-manager/src/main/java/com/zy/acs/manager/core/service/PatrolService.java
index 2dc8122..d9cca2f 100644
--- a/zy-acs-manager/src/main/java/com/zy/acs/manager/core/service/PatrolService.java
+++ b/zy-acs-manager/src/main/java/com/zy/acs/manager/core/service/PatrolService.java
@@ -34,9 +34,9 @@
 @Service
 public class PatrolService {
 
-    private static final int SCHEDULE_TIME_INTERVAL = 5;
+    private static final int SCHEDULE_TIME_INTERVAL = 300;
 
-    private static final Map<String, ScheduledFuture<?>> AGV_PATROL_MAP = new ConcurrentHashMap<>();
+    public static final Map<String, ScheduledFuture<?>> AGV_PATROL_MAP = new ConcurrentHashMap<>();
 
     private final RedisSupport redis = RedisSupport.defaultRedisSupport;
 
@@ -84,13 +84,12 @@
         if (null == destinationCode) {
             return;
         }
-        if (mainLockWrapService.buildMinorTask(agv, agvDetail, TaskTypeType.MOVE, destinationCode.getData())) {
+        if (mainLockWrapService.buildMinorTask(agv, TaskTypeType.MOVE, destinationCode.getData(), null)) {
             log.info(agv.getUuid() + "寮�濮嬭蛋琛屾紨绀�...");
         }
     }
 
     /**
-     * buildMinorTask 娌℃湁璁剧疆lane锛宭ane鍙渶瑕佸叧娉ㄨ捣濮嬬偣锛堣蛋琛屽彧闇�瑕佸叧娉ㄧ粓鐐癸級
      * 4涓湴鏂硅皟鐢ㄤ簡buildMinorTask锛屽湪浠�涔堟椂鍊欍�佸摢閲岃缃畉ask鐨刲ane
      * (
          * HandlerController, 鎵嬪姩  锛堟墜鍔ㄦ槸鍚﹂渶瑕佸垽鏂璴ane锛�
@@ -99,8 +98,6 @@
          * TrafficService,    鑷姩  锛堝鍧�鏃跺凡缁忓鐞嗚繃 lane锛� 鉁�
      * )
      * 璇勪及HandlerController娌℃湁璋冪敤buildMajorTask锛屾墜鍔ㄥ垱寤簍ask鐨勫彲琛屾��
-     * patrolOfMove娌℃湁鍒ゆ柇lane鐨勫閲�
-     * 鎶㈠崰寰呮満浣�
      * agv鍦板浘鍥炬爣鍙樺寲
      */
     public Code getDestinationCode(Agv agv, AgvDetail agvDetail) {
@@ -109,7 +106,24 @@
         Code startCode = codeService.getById(agvDetail.getRecentCode());
 
         List<String> notInCodeList = new ArrayList<>();
-        notInCodeList.add("00000151");
+        notInCodeList.add("00000301");
+        notInCodeList.add("00000302");
+        notInCodeList.add("00000303");
+        notInCodeList.add("00000351");
+        notInCodeList.add("00000353");
+        notInCodeList.add("00000401");
+        notInCodeList.add("00000402");
+
+        notInCodeList.add("00000311");
+        notInCodeList.add("00000312");
+        notInCodeList.add("00000313");
+        notInCodeList.add("00000361");
+        notInCodeList.add("00000363");
+        notInCodeList.add("00000411");
+        notInCodeList.add("00000412");
+
+        notInCodeList.add("00000046");
+        notInCodeList.add("00000047");
         List<Code> list = codeService.list(new LambdaQueryWrapper<Code>().notIn(Code::getData, notInCodeList));
 
         Collections.shuffle(list);
@@ -155,7 +169,7 @@
             }
         };
 
-        ScheduledFuture<?> scheduledFuture = scheduler.scheduleAtFixedRate(patrolTask, 0, SCHEDULE_TIME_INTERVAL, TimeUnit.SECONDS);
+        ScheduledFuture<?> scheduledFuture = scheduler.scheduleAtFixedRate(patrolTask, 0, SCHEDULE_TIME_INTERVAL, TimeUnit.MILLISECONDS);
 
         AGV_PATROL_MAP.put(agvNo, scheduledFuture);
         log.info("宸插惎鍔ˋGV " + agvNo + " 鐨勮窇搴撲换鍔°��");

--
Gitblit v1.9.1