From 1b160b340bd6fe5f34cedbd01c80b9530d530d91 Mon Sep 17 00:00:00 2001 From: zwl <1051256694@qq.com> Date: 星期三, 14 五月 2025 18:58:46 +0800 Subject: [PATCH] 初始化 --- src/main/java/com/zy/core/thread/LedThread.java | 61 +++++++++++++++++++----------- 1 files changed, 38 insertions(+), 23 deletions(-) diff --git a/src/main/java/com/zy/core/thread/LedThread.java b/src/main/java/com/zy/core/thread/LedThread.java index fecbd49..f8586ee 100644 --- a/src/main/java/com/zy/core/thread/LedThread.java +++ b/src/main/java/com/zy/core/thread/LedThread.java @@ -2,11 +2,16 @@ import com.alibaba.fastjson.JSON; import com.core.common.Cools; +import com.core.common.SpringUtils; +import com.zy.asrs.entity.CommandInfo; +import com.zy.asrs.service.CommandInfoService; +import com.zy.asrs.service.DeviceErrorService; import com.zy.common.entity.Parameter; import com.zy.common.model.MatDto; import com.zy.core.Slave; import com.zy.core.ThreadHandler; import com.zy.core.cache.MessageQueue; +import com.zy.core.enums.CommandStatusType; import com.zy.core.enums.SlaveType; import com.zy.core.model.Task; import com.zy.core.model.command.LedCommand; @@ -23,6 +28,7 @@ import onbon.bx05.utils.DisplayStyleFactory; import java.awt.*; +import java.util.Date; import java.util.HashSet; import java.util.List; import java.util.Set; @@ -59,29 +65,29 @@ public void run() { connect(); close(); - while (true) { - try { - Task task = MessageQueue.poll(SlaveType.Led, slave.getId()); - if (task != null) { - switch (task.getStep()) { - // 鍐欐暟鎹� - case 1: - write((List<LedCommand>)task.getData()); - break; - // 澶嶄綅 - case 2: - reset(); - break; - default: - break; - } - } - - Thread.sleep(400); - } catch (Exception e) { - e.printStackTrace(); - } - } +// while (true) { +// try { +// Task task = MessageQueue.poll(SlaveType.Led, slave.getId()); +// if (task != null) { +// switch (task.getStep()) { +// // 鍐欐暟鎹� +// case 1: +// write((List<LedCommand>)task.getData()); +// break; +// // 澶嶄綅 +// case 2: +// reset(); +// break; +// default: +// break; +// } +// } +// +// Thread.sleep(400); +// } catch (Exception e) { +// e.printStackTrace(); +// } +// } } private void write(List<LedCommand> list) throws Bx5GException { @@ -111,6 +117,12 @@ } } page.newLine("\n"); + + //鏇存柊鎸囦护鐘舵�� + CommandInfoService commandInfoService = SpringUtils.getBean(CommandInfoService.class); + CommandInfo commandInfo = command.getCommandInfo(); + commandInfo.setCommandStatus(CommandStatusType.COMPLETE.id); + commandInfoService.updateById(commandInfo); } // 璁剧疆瀛椾綋 @@ -190,10 +202,13 @@ screen.turnOn(); } catch (Exception ignore) { } + DeviceErrorService deviceErrorService = SpringUtils.getBean(DeviceErrorService.class); if (connRes) { log.info("led杩炴帴鎴愬姛 ===>> [id:{}] [ip:{}] [port:{}]", slave.getId(), slave.getIp(), slave.getPort()); + deviceErrorService.deleteDeviceError("led", slave.getId()); } else { log.error("led杩炴帴澶辫触锛侊紒锛� ===>> [id:{}] [ip:{}] [port:{}]", slave.getId(), slave.getIp(), slave.getPort()); + deviceErrorService.addDeviceError("led", slave.getId(), "led杩炴帴澶辫触"); } return connRes; } -- Gitblit v1.9.1