From 16999af4129f6e43bb11b00796f1c48207840128 Mon Sep 17 00:00:00 2001 From: L <L@132> Date: 星期四, 17 七月 2025 18:11:49 +0800 Subject: [PATCH] * --- src/main/java/com/zy/core/thread/SiemensDevpThread.java | 163 ++++++++++++++++++++++++++++++++++++++++++++++++++--- 1 files changed, 152 insertions(+), 11 deletions(-) diff --git a/src/main/java/com/zy/core/thread/SiemensDevpThread.java b/src/main/java/com/zy/core/thread/SiemensDevpThread.java index 2d59f69..356307c 100644 --- a/src/main/java/com/zy/core/thread/SiemensDevpThread.java +++ b/src/main/java/com/zy/core/thread/SiemensDevpThread.java @@ -97,6 +97,9 @@ public IoModeType ioModeOf4F = IoModeType.NONE; // public IoModeType ioMode = IoModeType.NONE; + + private boolean connectDev = false; + public SiemensDevpThread(DevpSlave slave) { this.slave = slave; } @@ -126,7 +129,107 @@ @Override @SuppressWarnings("InfiniteLoopStatement") public void run() { - connect(); + connectDev = this.connect(); + while(!connectDev){ + try { + connectDev = this.connect(); + Thread.sleep(100); + } catch (Exception e){ + + } + } + + // 鍚姩绾跨▼鑷姩閲嶈繛 + new Thread(this::devConnect).start(); + + // 鍚姩璇绘暟鎹嚎绋� + new Thread(this::readStatusDev).start(); + + // 鍚姩浠诲姟涓嬪彂绾跨▼ + new Thread(this::writeStatusDev).start(); + + } + + /** + * 鍒濆鍖栫珯鐐圭姸鎬� + */ + private void initSite() { + try{ + ArrayList<Integer> staNos = getStaNo(); + // 绔欑偣缂栧彿 + for (Integer siteId : staNos) { + StaProtocol staProtocol = station.get(siteId); + if (null == staProtocol) { + staProtocol = new StaProtocol(); + staProtocol.setSiteId(siteId); + station.put(siteId, staProtocol); + } + staProtocol.setSiteId(siteId); + staProtocol.setWorkNo(0); // ID + staProtocol.setAutoing(false); // 鑷姩 + staProtocol.setLoading(false); // 鏈夌墿 + staProtocol.setInEnable(false); // 鍙叆 + staProtocol.setOutEnable(false); // 鍙嚭 + staProtocol.setEmptyMk(false); // 绌烘澘淇″彿 + staProtocol.setStaNo(0); // 鐩爣绔� + + if (!staProtocol.isPakMk() && !staProtocol.isLoading()) { + staProtocol.setPakMk(true); + } + } + + + // 鏍规嵁瀹炴椂淇℃伅鏇存柊鏁版嵁搴� + try { + List<BasDevp> basDevps = new ArrayList<>(); + for (Integer siteId : staNos) { + StaProtocol staProtocol = station.get(siteId); + basDevps.add(staProtocol.toSqlModel()); + } + + BasDevpService basDevpService = SpringUtils.getBean(BasDevpService.class); + if (null != basDevpService && !basDevpService.updateBatchById(basDevps)) { + throw new Exception("鏇存柊鏁版嵁搴撴暟鎹け璐�"); + } + } catch (Exception e) { + e.printStackTrace(); + OutputQueue.DEVP.offer(MessageFormat.format("銆恵0}銆戞洿鏂版暟鎹簱鏁版嵁澶辫触 ===>> [id:{1}] [ip:{2}] [port:{3}] [rack:{4}] [slot:{5}]", DateUtils.convert(new Date()), slave.getId(), slave.getIp(), slave.getPort(), slave.getRack(), slave.getSlot())); + log.error("鏇存柊鏁版嵁搴撴暟鎹け璐� ===>> [id:{}] [ip:{}] [port:{}] [rack:{}] [slot:{}]", slave.getId(), slave.getIp(), slave.getPort(), slave.getRack(), slave.getSlot()); + } + } catch (Exception e){ + try{ + log.error(e.getMessage()); + } catch (Exception e1){ + + } + log.error("鍒濆鍖栫珯鐐圭姸鎬佸紓甯�"); + } + } + + + + private void devConnect() { + while (true) { + try { + Thread.sleep(1000L); + if(!connectDev){ + try { + connectDev = this.connect(); + Thread.sleep(100L); + } catch (Exception e){ + + } + } + } catch (Exception e) { + + log.error("rgv杩炴帴澶辫触锛侊紒锛� ===>> [id:{}] [ip:{}] [port:{}]", slave.getId(), slave.getIp(), slave.getPort()); + initSite(); +// e.printStackTrace(); + } + } + } + + private void writeStatusDev() { while (true) { try { int step = 1; @@ -137,14 +240,10 @@ switch (step) { // 璇绘暟鎹� case 1: - read(); +// read(); break; // 鍐欐暟鎹� ID+鐩爣绔� case 2: -// write3((StaProtocol)task.getData()); -// Thread.sleep(400); -// write4((StaProtocol)task.getData()); -// Thread.sleep(400); write((StaProtocol)task.getData()); break; // 鍐欐暟鎹� ID+鐩爣绔� 鐮佸灈瀹屾垚 缁欒緭閫佺嚎鍐欎换鍔″畬鎴� @@ -169,10 +268,44 @@ // heartbeat(); Thread.sleep(400); } catch (Exception e) { - e.printStackTrace(); +// e.printStackTrace(); + try{ + log.error("dev鍐欑嚎绋嬪紓甯�"+e.getMessage()); + + } catch (Exception e1){ + + } + log.error("DEV鏁版嵁鍐欏叆绾跨▼寮傚父锛侊紒锛� ===>> [id:{}] [ip:{}] [port:{}]", slave.getId(), slave.getIp(), slave.getPort()); + } } + + } + private void readStatusDev() { + while (true) { + try { + if(!connectDev){ + try { + Thread.sleep(1000L); + } catch (Exception e){ + + } + continue; + } + Thread.sleep(200); + read(); + + } catch (Exception e) { + log.error("RGV璇荤嚎绋嬪紓甯�"+e.getMessage()); + + log.error("RGV鏁版嵁璇诲彇绾跨▼寮傚父锛侊紒锛� ===>> [id:{}] [ip:{}] [port:{}]", slave.getId(), slave.getIp(), slave.getPort()); + initSite(); +// e.printStackTrace(); + } + + } + } @Override @@ -249,10 +382,6 @@ staProtocol.setFullPlt(status[5]); // 婊℃墭鐩� staProtocol.setHigh(status[6]); // 楂樺簱浣� staProtocol.setLow(status[7]); // 浣庡簱浣� - if (siteId==118){ - staProtocol.setAutoing(false); // 鑷姩 - - } if (!staProtocol.isPakMk() && !staProtocol.isLoading()) { staProtocol.setPakMk(true); } @@ -387,6 +516,7 @@ } else { OutputQueue.DEVP.offer(MessageFormat.format("銆恵0}銆戣鍙栬緭閫佺嚎plc鐘舵�佷俊鎭け璐� ===>> [id:{1}] [ip:{2}] [port:{3}] [rack:{4}] [slot:{5}]", DateUtils.convert(new Date()), slave.getId(), slave.getIp(), slave.getPort(), slave.getRack(), slave.getSlot())); // log.error("璇诲彇杈撻�佺嚎plc鐘舵�佷俊鎭け璐� ===>> [id:{}] [ip:{}] [port:{}] [rack:{}] [slot:{}]", slave.getId(), slave.getIp(), slave.getPort(), slave.getRack(), slave.getSlot()); + initSite(); } } @@ -597,6 +727,17 @@ } } + /** + * 璁剧疆鍏ュ簱鏍囪 + */ + @Override + public void setReportSign(Integer siteId, boolean pakMk) { + StaProtocol staProtocol = station.get(siteId); + if (null != staProtocol) { + staProtocol.setReportSign(pakMk); + } + } + @Override public void close() { siemensS7Net.ConnectClose(); -- Gitblit v1.9.1