From 0d04bc5d8080b82338302fba0a59fccff2eaedfc Mon Sep 17 00:00:00 2001 From: Junjie <fallin.jie@qq.com> Date: 星期日, 06 七月 2025 11:28:29 +0800 Subject: [PATCH] # --- zy-asrs-wcs/src/main/java/com/zy/asrs/wcs/core/utils/NavigateMapUtils.java | 77 +++++++++++++++++++++++++++++++++++++- 1 files changed, 74 insertions(+), 3 deletions(-) diff --git a/zy-asrs-wcs/src/main/java/com/zy/asrs/wcs/core/utils/NavigateMapUtils.java b/zy-asrs-wcs/src/main/java/com/zy/asrs/wcs/core/utils/NavigateMapUtils.java index 26179cc..6c72996 100644 --- a/zy-asrs-wcs/src/main/java/com/zy/asrs/wcs/core/utils/NavigateMapUtils.java +++ b/zy-asrs-wcs/src/main/java/com/zy/asrs/wcs/core/utils/NavigateMapUtils.java @@ -1,7 +1,10 @@ package com.zy.asrs.wcs.core.utils; import com.alibaba.fastjson.JSON; -import com.zy.asrs.framework.common.SpringUtils; +import com.alibaba.fastjson.serializer.SerializerFeature; +import com.fasterxml.jackson.core.JsonProcessingException; +import com.fasterxml.jackson.core.type.TypeReference; +import com.fasterxml.jackson.databind.ObjectMapper; import com.zy.asrs.wcs.core.domain.dto.RedisMapDto; import com.zy.asrs.wcs.core.model.MapNode; import com.zy.asrs.wcs.core.model.NavigateNode; @@ -19,13 +22,16 @@ @Autowired private NavigateMapData navigateMapData; + @Autowired + private RedisUtil redisUtil; + @Autowired + private ObjectMapper objectMapper; /** * 鍐欏叆璺緞鑺傜偣鏁版嵁鍒皉edis鍦板浘涓� * lock涓簍rue 绂佺敤搴撲綅锛宭ock涓篺alse鎭㈠搴撲綅 */ public synchronized boolean writeNavigateNodeToRedisMap(Integer lev, Integer shuttleNo, List<NavigateNode> nodes, boolean lock) { - RedisUtil redisUtil = SpringUtils.getBean(RedisUtil.class); try { if (nodes.isEmpty()) { return true; @@ -85,7 +91,10 @@ redisMap.setData(JSON.toJSONString(lists)); redisMap.setUpdateTime(new Date()); //灏嗘暟鎹簱鍦板浘鏁版嵁瀛樺叆redis - redisUtil.set(DeviceRedisConstant.MAP + lev, JSON.toJSONString(redisMap)); + redisUtil.set(DeviceRedisConstant.MAP + lev, JSON.toJSONString(redisMap, SerializerFeature.DisableCircularReferenceDetect)); + + //淇濆瓨璺緞閿佽妭鐐� + saveLockPath(lev, nodes, lock); return true; } catch (Exception e) { e.printStackTrace(); @@ -93,4 +102,66 @@ return false; } + //淇濆瓨璺緞閿佽妭鐐� + public void saveLockPath(Integer lev, List<NavigateNode> nodes, boolean lock) { + Object o = redisUtil.get(DeviceRedisConstant.LOCK_PATH + lev); + List<NavigateNode> navigateNodes = new ArrayList<>(); + if (o != null) { + try { + navigateNodes = objectMapper.readValue(o.toString(), new TypeReference<List<NavigateNode>>() {}); + } catch (JsonProcessingException e) { + throw new RuntimeException(e); + } + } + + String nodeStr = null; + if (lock) { + navigateNodes.addAll(nodes); + try { + nodeStr = objectMapper.writeValueAsString(navigateNodes); + } catch (JsonProcessingException e) { + throw new RuntimeException(e); + } + redisUtil.set(DeviceRedisConstant.LOCK_PATH + lev, nodeStr); + }else { + List<NavigateNode> tmp = new ArrayList<>(); + for (NavigateNode navigateNode : navigateNodes) { + boolean flag = true; + for (NavigateNode node : nodes) { + if (navigateNode.getX() == node.getX() + && navigateNode.getY() == node.getY() + && navigateNode.getZ() == node.getZ()) { + flag = false; + break; + } + } + + if (flag) { + tmp.add(navigateNode); + } + } + + try { + nodeStr = objectMapper.writeValueAsString(tmp); + } catch (JsonProcessingException e) { + throw new RuntimeException(e); + } + redisUtil.set(DeviceRedisConstant.LOCK_PATH + lev, nodeStr); + } + } + + //鑾峰彇璺緞閿佽妭鐐� + public List<NavigateNode> getLockPath(Integer lev) { + Object obj = redisUtil.get(DeviceRedisConstant.LOCK_PATH + lev); + List<NavigateNode> navigateNodes = new ArrayList<>(); + if (obj != null) { + try { + navigateNodes = objectMapper.readValue(obj.toString(), new TypeReference<List<NavigateNode>>() {}); + } catch (JsonProcessingException e) { + throw new RuntimeException(e); + } + } + return navigateNodes; + } + } -- Gitblit v1.9.1