| | |
| | | switch (step) { |
| | | // 读数据 |
| | | case 1: |
| | | readStatus(); |
| | | read(); |
| | | break; |
| | | // 写入数据 |
| | | case 2: |
| | |
| | | @Override |
| | | public void close() { |
| | | modbusTcpNet.ConnectClose(); |
| | | } |
| | | |
| | | private void read() { |
| | | try { |
| | | readStatus(); |
| | | |
| | | //提升机处于运行状态,将标记置为true |
| | | if (liftProtocol.getRunning()) { |
| | | liftProtocol.setPakMk(true); |
| | | } |
| | | |
| | | //提升机处于未运行、就绪、标记true、有任务号 |
| | | if (!liftProtocol.getRunning() |
| | | && liftProtocol.getPakMk() |
| | | && liftProtocol.getTaskNo() != 0) { |
| | | //还有未完成的命令 |
| | | executeWork(liftProtocol.getTaskNo()); |
| | | } |
| | | } catch (Exception e) { |
| | | OutputQueue.LIFT.offer(MessageFormat.format("【{0}】提升机plc状态信息失败 ===>> [id:{1}] [ip:{2}] [port:{3}]", DateUtils.convert(new Date()), slave.getId(), slave.getIp(), slave.getPort())); |
| | | initLift(); |
| | | } |
| | | } |
| | | |
| | | private void readStatus() { |
| | |
| | | |
| | | ///读取提升机状态-end |
| | | |
| | | //提升机处于运行状态,将标记置为true |
| | | if (liftProtocol.getRunning()) { |
| | | liftProtocol.setPakMk(true); |
| | | } |
| | | |
| | | //提升机处于未运行、就绪、标记true、有任务号 |
| | | if (!liftProtocol.getRunning() |
| | | && liftProtocol.getPakMk() |
| | | && liftProtocol.getTaskNo() != 0) { |
| | | //还有未完成的命令 |
| | | executeWork(liftProtocol.getTaskNo()); |
| | | } |
| | | |
| | | //将提升机状态保存至数据库 |
| | | BasLiftService liftService = SpringUtils.getBean(BasLiftService.class); |
| | | BasLift basLift = liftService.selectById(liftProtocol.getLiftNo()); |
| | |
| | | } |
| | | |
| | | command.setLiftNo(slave.getId().shortValue()); |
| | | short[] array = getCommandArr(command);//获取命令报文 |
| | | |
| | | try { |
| | | Thread.sleep(1000);//命令下发前休眠1s |
| | | } catch (InterruptedException e) { |
| | | throw new RuntimeException(e); |
| | | } |
| | | |
| | | OperateResult result = modbusTcpNet.Write("41088", array); |
| | | if (result != null && result.IsSuccess) { |
| | | News.info("提升机命令下发[id:{}] >>>>> {}", slave.getId(), JSON.toJSON(command)); |
| | | OutputQueue.LIFT.offer(MessageFormat.format("【{0}】[id:{1}] >>>>> 命令下发: {2}", DateUtils.convert(new Date()), slave.getId(), JSON.toJSON(command))); |
| | | |
| | | try { |
| | | Thread.sleep(1000);//命令下发后休眠 |
| | | } catch (InterruptedException e) { |
| | | throw new RuntimeException(e); |
| | | } |
| | | |
| | | for (int i = 0; i < 5; i++) { |
| | | if (command.getRun().intValue() == 4 || command.getRun().intValue() == 5) { |
| | | break;//系统复位和链条停止转动不需要重发 |
| | | } |
| | | readStatus();//重新读取状态 |
| | | if (liftProtocol.getRunning()) { |
| | | break; |
| | | } |
| | | |
| | | //判断是否运行中,如不运行,重新下发命令 |
| | | result = modbusTcpNet.Write("41088", array); |
| | | News.info("提升机命令下发[id:{}] >>>>> {},次数:{}", slave.getId(), JSON.toJSON(command), i); |
| | | OutputQueue.LIFT.offer(MessageFormat.format("【{0}】[id:{1}] >>>>> 命令下发: {2},次数:{}", DateUtils.convert(new Date()), slave.getId(), JSON.toJSON(command), i)); |
| | | try { |
| | | Thread.sleep(300);//命令下发后休眠 |
| | | } catch (InterruptedException e) { |
| | | throw new RuntimeException(e); |
| | | } |
| | | } |
| | | return true; |
| | | } else { |
| | | OutputQueue.LIFT.offer(MessageFormat.format("【{0}】写入提升机plc数据失败 ===>> [id:{1}] [ip:{2}] [port:{3}],次数:{}", DateUtils.convert(new Date()), slave.getId(), slave.getIp(), slave.getPort())); |
| | | News.error("写入提升机plc数据失败 ===>> [id:{}] [ip:{}] [port:{}]", slave.getId(), slave.getIp(), slave.getPort()); |
| | | return false; |
| | | } |
| | | } |
| | | |
| | | //获取命令报文 |
| | | private short[] getCommandArr(LiftCommand command) { |
| | | // 开始任务 |
| | | short[] array = new short[30]; |
| | | //开始运行 |
| | |
| | | tmp[1] = array[1]; |
| | | array = tmp; |
| | | } |
| | | |
| | | try { |
| | | Thread.sleep(1000);//命令下发前休眠1s |
| | | } catch (InterruptedException e) { |
| | | throw new RuntimeException(e); |
| | | } |
| | | |
| | | OperateResult result = modbusTcpNet.Write("41088", array);; |
| | | if (result != null && result.IsSuccess) { |
| | | News.info("提升机命令下发[id:{}] >>>>> {}", slave.getId(), JSON.toJSON(command)); |
| | | OutputQueue.LIFT.offer(MessageFormat.format("【{0}】[id:{1}] >>>>> 命令下发: {2}", DateUtils.convert(new Date()), slave.getId(), JSON.toJSON(command))); |
| | | return true; |
| | | } else { |
| | | OutputQueue.LIFT.offer(MessageFormat.format("【{0}】写入提升机plc数据失败 ===>> [id:{1}] [ip:{2}] [port:{3}]", DateUtils.convert(new Date()), slave.getId(), slave.getIp(), slave.getPort())); |
| | | News.error("写入提升机plc数据失败 ===>> [id:{}] [ip:{}] [port:{}]", slave.getId(), slave.getIp(), slave.getPort()); |
| | | return false; |
| | | } |
| | | return array; |
| | | } |
| | | |
| | | //分配任务 |
| | |
| | | int size = commands.size(); |
| | | LiftAssignCommand assignCommand = redisCommand.getAssignCommand(); |
| | | |
| | | if (commandStep != 0) { |
| | | //判断上一条指令是否完成 |
| | | LiftCommand command = commands.get(commandStep - 1); |
| | | if (command.getRun().intValue() == 1) { |
| | | //提升机升降命令 |
| | | if (command.getDistPosition().intValue() == liftProtocol.getPositionArrivalFeedback().intValue()) { |
| | | //提升机目标楼层和实际楼层相同,则认定命令完成 |
| | | command.setComplete(true); |
| | | } |
| | | } else if (command.getRun().intValue() == 2 || command.getRun().intValue() == 3) { |
| | | //无货正转,有货正转 |
| | | if (!liftProtocol.getForwardRotationFeedback()) { |
| | | //输送线正转反馈不在运行中,认定命令完成 |
| | | command.setComplete(true); |
| | | } |
| | | } else if (command.getRun().intValue() == 6 || command.getRun().intValue() == 7) { |
| | | //有货反转,无货反转 |
| | | if (!liftProtocol.getReverseFeedback()) { |
| | | //输送线反转反馈不在运行中,认定命令完成 |
| | | command.setComplete(true); |
| | | } |
| | | } else if (command.getRun().intValue() == 4) { |
| | | //输送线停止 |
| | | if (!liftProtocol.getForwardRotationFeedback() && !liftProtocol.getReverseFeedback()) { |
| | | //输送线正转反转都不在运行中,认定命令完成 |
| | | command.setComplete(true); |
| | | } |
| | | } |
| | | //任务数据保存到redis |
| | | redisUtil.set("lift_wrk_no_" + redisCommand.getWrkNo(), JSON.toJSONString(redisCommand)); |
| | | |
| | | if (!command.getComplete()) { |
| | | //上一条任务未完成,禁止下发命令 |
| | | return false; |
| | | } |
| | | } |
| | | |
| | | //取出命令 |
| | | LiftCommand command = commands.get(commandStep); |
| | | if (command.getOperaStaNo() != null && command.getDevpId() != null) { |
| | |
| | | //保存数据到数据库做流水 |
| | | BasLiftOptService liftOptService = SpringUtils.getBean(BasLiftOptService.class); |
| | | if (liftOptService != null) { |
| | | short[] commandArr = getCommandArr(command);//获取命令报文 |
| | | BasLiftOpt opt = new BasLiftOpt( |
| | | redisCommand.getWrkNo().intValue(), |
| | | redisCommand.getLiftNo().intValue(), |
| | |
| | | null, |
| | | null, |
| | | null, |
| | | JSON.toJSONString(command) |
| | | JSON.toJSONString(command), |
| | | JSON.toJSONString(commandArr) |
| | | ); |
| | | liftOptService.insert(opt); |
| | | } |
| | |
| | | * 初始化提升机 |
| | | */ |
| | | private void initLift() { |
| | | this.connect(); |
| | | if (null == liftProtocol) { |
| | | liftProtocol = new LiftProtocol(); |
| | | } |