| | |
| | | import com.core.exception.CoolException; |
| | | import com.fasterxml.jackson.databind.ObjectMapper; |
| | | import com.zy.asrs.entity.BasShuttle; |
| | | import com.zy.asrs.entity.DeviceConfig; |
| | | import com.zy.asrs.entity.DeviceDataLog; |
| | | import com.zy.asrs.entity.LocMast; |
| | | import com.zy.asrs.service.BasShuttleService; |
| | |
| | | import com.zy.core.enums.*; |
| | | import com.zy.core.model.CommandResponse; |
| | | import com.zy.core.model.DeviceMsgModel; |
| | | import com.zy.core.model.ShuttleSlave; |
| | | import com.zy.core.model.command.NyShuttleHttpCommand; |
| | | import com.zy.core.model.command.ShuttleCommand; |
| | | import com.zy.core.model.command.ShuttleRedisCommand; |
| | |
| | | @SuppressWarnings("all") |
| | | public class NyShuttleThread implements ShuttleThread { |
| | | |
| | | private ShuttleSlave slave; |
| | | private DeviceConfig deviceConfig; |
| | | private RedisUtil redisUtil; |
| | | private ShuttleProtocol shuttleProtocol; |
| | | |
| | |
| | | //原始设备数据 |
| | | private Object originDeviceData; |
| | | |
| | | public NyShuttleThread(ShuttleSlave slave, RedisUtil redisUtil) { |
| | | this.slave = slave; |
| | | public NyShuttleThread(DeviceConfig deviceConfig, RedisUtil redisUtil) { |
| | | this.deviceConfig = deviceConfig; |
| | | this.redisUtil = redisUtil; |
| | | } |
| | | |
| | | @Override |
| | | public void run() { |
| | | News.info("{}号四向车线程启动", slave.getId()); |
| | | News.info("{}号四向车线程启动", deviceConfig.getDeviceNo()); |
| | | |
| | | //设备读取 |
| | | Thread readThread = new Thread(() -> { |
| | |
| | | continue; |
| | | } |
| | | |
| | | Object object = redisUtil.get(RedisKeyType.SHUTTLE_FLAG.key + slave.getId()); |
| | | Object object = redisUtil.get(RedisKeyType.SHUTTLE_FLAG.key + deviceConfig.getDeviceNo()); |
| | | if (object == null) { |
| | | continue; |
| | | } |
| | |
| | | Integer taskNo = Integer.valueOf(String.valueOf(object)); |
| | | if (taskNo != 0) { |
| | | //存在任务需要执行 |
| | | boolean result = shuttleAction.executeWork(slave.getId(), taskNo); |
| | | boolean result = shuttleAction.executeWork(deviceConfig.getDeviceNo(), taskNo); |
| | | } |
| | | |
| | | // //小车空闲且有跑库程序 |
| | | // shuttleAction.moveLoc(slave.getId()); |
| | | // shuttleAction.moveLoc(deviceConfig.getDeviceNo()); |
| | | |
| | | //演示模式 |
| | | shuttleAction.demo(slave.getId()); |
| | | shuttleAction.demo(deviceConfig.getDeviceNo()); |
| | | |
| | | Thread.sleep(200); |
| | | } catch (Exception e) { |
| | |
| | | deviceDataLog.setOriginData(JSON.toJSONString(this.originDeviceData)); |
| | | deviceDataLog.setWcsData(JSON.toJSONString(shuttleProtocol)); |
| | | deviceDataLog.setType(String.valueOf(SlaveType.Shuttle)); |
| | | deviceDataLog.setDeviceNo(slave.getId()); |
| | | deviceDataLog.setDeviceNo(deviceConfig.getDeviceNo()); |
| | | deviceDataLog.setCreateTime(new Date()); |
| | | deviceDataLogService.insert(deviceDataLog); |
| | | |
| | | //更新采集时间 |
| | | shuttleProtocol.setDeviceDataLog(System.currentTimeMillis()); |
| | | OutputQueue.SHUTTLE.offer(MessageFormat.format("【{0}】[id:{1}] <<<<< 实时数据更新成功",DateUtils.convert(new Date()), slave.getId())); |
| | | OutputQueue.SHUTTLE.offer(MessageFormat.format("【{0}】[id:{1}] <<<<< 实时数据更新成功",DateUtils.convert(new Date()), deviceConfig.getDeviceNo())); |
| | | } |
| | | } |
| | | } |
| | | |
| | | private void listenMessageFromRedis() { |
| | | try { |
| | | DeviceMsgUtils deviceMsgUtils = SpringUtils.getBean(DeviceMsgUtils.class); |
| | | DeviceMsgUtils deviceMsgUtils = null; |
| | | try { |
| | | deviceMsgUtils = SpringUtils.getBean(DeviceMsgUtils.class); |
| | | }catch (Exception e){ |
| | | |
| | | } |
| | | if (deviceMsgUtils == null) { |
| | | return; |
| | | } |
| | | DeviceMsgModel deviceMsg = deviceMsgUtils.getDeviceMsg(SlaveType.Shuttle, slave.getId()); |
| | | DeviceMsgModel deviceMsg = deviceMsgUtils.getDeviceMsg(SlaveType.Shuttle, deviceConfig.getDeviceNo()); |
| | | if(deviceMsg == null){ |
| | | return; |
| | | } |
| | |
| | | try { |
| | | if (null == shuttleProtocol) { |
| | | shuttleProtocol = new ShuttleProtocol(); |
| | | shuttleProtocol.setShuttleNo(slave.getId()); |
| | | shuttleProtocol.setShuttleNo(deviceConfig.getDeviceNo()); |
| | | shuttleProtocol.setProtocolStatus(ShuttleProtocolStatusType.IDLE); |
| | | |
| | | InnerSuhttleExtend extend = new InnerSuhttleExtend(); |
| | |
| | | return; |
| | | } |
| | | |
| | | NyShuttleHttpCommand readStatusCommand = getReadStatusCommand(slave.getId()); |
| | | NyShuttleHttpCommand readStatusCommand = getReadStatusCommand(deviceConfig.getDeviceNo()); |
| | | //指令超过五条,不再下发任务状态请求 |
| | | TreeSet<String> deviceCommandMsgListKey = deviceMsgUtils.getDeviceCommandMsgListKey(SlaveType.Shuttle, slave.getId()); |
| | | TreeSet<String> deviceCommandMsgListKey = deviceMsgUtils.getDeviceCommandMsgListKey(SlaveType.Shuttle, deviceConfig.getDeviceNo()); |
| | | if (deviceCommandMsgListKey.size() < 5) { |
| | | requestCommandAsync(readStatusCommand);//请求状态 |
| | | } |
| | |
| | | |
| | | this.originDeviceData = data.getString("originDeviceData"); |
| | | |
| | | OutputQueue.SHUTTLE.offer(MessageFormat.format("【{0}】[id:{1}] <<<<< 实时数据更新成功",DateUtils.convert(new Date()), slave.getId())); |
| | | OutputQueue.SHUTTLE.offer(MessageFormat.format("【{0}】[id:{1}] <<<<< 实时数据更新成功",DateUtils.convert(new Date()), deviceConfig.getDeviceNo())); |
| | | } catch (Exception e) { |
| | | e.printStackTrace(); |
| | | OutputQueue.SHUTTLE.offer(MessageFormat.format("【{0}】四向穿梭车Socket状态信息失败 ===>> [id:{1}] [ip:{2}] [port:{3}]", DateUtils.convert(new Date()), slave.getId(), slave.getIp(), slave.getPort())); |
| | | OutputQueue.SHUTTLE.offer(MessageFormat.format("【{0}】四向穿梭车Socket状态信息失败 ===>> [id:{1}] [ip:{2}] [port:{3}]", DateUtils.convert(new Date()), deviceConfig.getDeviceNo(), deviceConfig.getIp(), deviceConfig.getPort())); |
| | | } |
| | | } |
| | | |
| | |
| | | NyShuttleHttpCommand httpCommand = JSON.parseObject(initCommand.getBody(), NyShuttleHttpCommand.class); |
| | | JSONObject requestResult = requestCommand(httpCommand); |
| | | |
| | | log.info(MessageFormat.format("【{0}】四向车复位上报 ===>> [code:{1}] [ip:{2}] [port:{3}]", slave.getId(), code, slave.getIp(), slave.getPort())); |
| | | OutputQueue.SHUTTLE.offer(MessageFormat.format("【{0}】四向车复位上报 ===>> [code:{1}] [ip:{2}] [port:{3}]", slave.getId(), code, slave.getIp(), slave.getPort())); |
| | | log.info(MessageFormat.format("【{0}】四向车复位上报 ===>> [code:{1}] [ip:{2}] [port:{3}]", deviceConfig.getDeviceNo(), code, deviceConfig.getIp(), deviceConfig.getPort())); |
| | | OutputQueue.SHUTTLE.offer(MessageFormat.format("【{0}】四向车复位上报 ===>> [code:{1}] [ip:{2}] [port:{3}]", deviceConfig.getDeviceNo(), code, deviceConfig.getIp(), deviceConfig.getPort())); |
| | | break; |
| | | } |
| | | } |
| | |
| | | if (shuttleService == null) { |
| | | return false; |
| | | } |
| | | BasShuttle basShuttle = shuttleService.selectOne(new EntityWrapper<BasShuttle>().eq("shuttle_no", slave.getId())); |
| | | BasShuttle basShuttle = shuttleService.selectOne(new EntityWrapper<BasShuttle>().eq("shuttle_no", deviceConfig.getDeviceNo())); |
| | | if (basShuttle == null) { |
| | | return false; |
| | | } |
| | |
| | | @Override |
| | | public ShuttleCommand getMoveCommand(Integer taskNo, String startCodeNum, String distCodeNum, Integer allDistance, Integer runDirection, Integer runSpeed, List<NavigateNode> nodes) { |
| | | NavigateMapData navigateMapData = SpringUtils.getBean(NavigateMapData.class); |
| | | NyShuttleHttpCommand httpStandard = getHttpStandard(slave.getId(), taskNo); |
| | | NyShuttleHttpCommand httpStandard = getHttpStandard(deviceConfig.getDeviceNo(), taskNo); |
| | | NyShuttleHttpCommand.NyRequest request = httpStandard.getRequest(); |
| | | |
| | | ArrayList<HashMap<String, Object>> path = new ArrayList<>(); |
| | |
| | | } |
| | | |
| | | ShuttleCommand command = new ShuttleCommand(); |
| | | command.setShuttleNo(slave.getId()); |
| | | command.setShuttleNo(deviceConfig.getDeviceNo()); |
| | | command.setBody(JSON.toJSONString(httpStandard)); |
| | | command.setMode(ShuttleCommandModeType.MOVE.id); |
| | | command.setTargetLocNo(locMast.getLocNo()); |
| | |
| | | |
| | | @Override |
| | | public ShuttleCommand getLiftCommand(Integer taskNo, Boolean lift) { |
| | | NyShuttleHttpCommand httpStandard = getHttpStandard(slave.getId(), taskNo); |
| | | NyShuttleHttpCommand httpStandard = getHttpStandard(deviceConfig.getDeviceNo(), taskNo); |
| | | NyShuttleHttpCommand.NyRequest request = httpStandard.getRequest(); |
| | | |
| | | Integer taskId = getTaskId();//TaskID需要随机 |
| | |
| | | httpStandard.setRequest(request); |
| | | |
| | | ShuttleCommand command = new ShuttleCommand(); |
| | | command.setShuttleNo(slave.getId()); |
| | | command.setShuttleNo(deviceConfig.getDeviceNo()); |
| | | command.setBody(JSON.toJSONString(httpStandard)); |
| | | command.setMode(lift ? ShuttleCommandModeType.PALLET_LIFT.id : ShuttleCommandModeType.PALLET_DOWN.id); |
| | | command.setTaskNo(taskId); |
| | |
| | | |
| | | @Override |
| | | public ShuttleCommand getChargeCommand(Integer taskNo, Boolean charge) { |
| | | NyShuttleHttpCommand httpStandard = getHttpStandard(slave.getId(), taskNo); |
| | | NyShuttleHttpCommand httpStandard = getHttpStandard(deviceConfig.getDeviceNo(), taskNo); |
| | | NyShuttleHttpCommand.NyRequest request = httpStandard.getRequest(); |
| | | |
| | | Integer taskId = getTaskId();//TaskID需要随机 |
| | |
| | | httpStandard.setRequest(request); |
| | | |
| | | ShuttleCommand command = new ShuttleCommand(); |
| | | command.setShuttleNo(slave.getId()); |
| | | command.setShuttleNo(deviceConfig.getDeviceNo()); |
| | | command.setBody(JSON.toJSONString(httpStandard)); |
| | | command.setMode(charge ? ShuttleCommandModeType.CHARGE_OPEN.id : ShuttleCommandModeType.CHARGE_CLOSE.id); |
| | | command.setTaskNo(taskId); |
| | |
| | | |
| | | @Override |
| | | public ShuttleCommand getUpdateLocationCommand(Integer taskNo, String locNo) { |
| | | NyShuttleHttpCommand httpStandard = getHttpStandard(slave.getId(), taskNo); |
| | | NyShuttleHttpCommand httpStandard = getHttpStandard(deviceConfig.getDeviceNo(), taskNo); |
| | | NyShuttleHttpCommand.NyRequest request = httpStandard.getRequest(); |
| | | |
| | | HashMap<String, Object> body = new HashMap<>(); |
| | |
| | | httpStandard.setRequest(request); |
| | | |
| | | ShuttleCommand command = new ShuttleCommand(); |
| | | command.setShuttleNo(slave.getId()); |
| | | command.setShuttleNo(deviceConfig.getDeviceNo()); |
| | | command.setBody(JSON.toJSONString(httpStandard)); |
| | | command.setMode(ShuttleCommandModeType.UPDATE_LOCATION.id); |
| | | command.setTaskNo(taskNo); |
| | |
| | | public ShuttleCommand getInitCommand(Integer taskNo, Integer code) { |
| | | LocMastService locMastService = SpringUtils.getBean(LocMastService.class); |
| | | NavigateMapData navigateMapData = SpringUtils.getBean(NavigateMapData.class); |
| | | NyShuttleHttpCommand httpStandard = getHttpStandard(slave.getId(), taskNo); |
| | | NyShuttleHttpCommand httpStandard = getHttpStandard(deviceConfig.getDeviceNo(), taskNo); |
| | | NyShuttleHttpCommand.NyRequest request = httpStandard.getRequest(); |
| | | |
| | | //code -> {Integer@13781} 1101101 |
| | |
| | | httpStandard.setRequest(request); |
| | | |
| | | ShuttleCommand command = new ShuttleCommand(); |
| | | command.setShuttleNo(slave.getId()); |
| | | command.setShuttleNo(deviceConfig.getDeviceNo()); |
| | | command.setBody(JSON.toJSONString(httpStandard)); |
| | | command.setMode(ShuttleCommandModeType.RESET.id); |
| | | command.setTaskNo(taskNo); |
| | |
| | | data.remove("nodes"); |
| | | |
| | | DeviceCommandMsgModel commandMsgModel = new DeviceCommandMsgModel(); |
| | | commandMsgModel.setDeviceId(slave.getId()); |
| | | commandMsgModel.setDeviceId(deviceConfig.getDeviceNo()); |
| | | commandMsgModel.setDeviceType(String.valueOf(SlaveType.Shuttle)); |
| | | commandMsgModel.setCommand(data); |
| | | String key = deviceMsgUtils.sendDeviceCommand(SlaveType.Shuttle, slave.getId(), commandMsgModel); |
| | | String key = deviceMsgUtils.sendDeviceCommand(SlaveType.Shuttle, deviceConfig.getDeviceNo(), commandMsgModel); |
| | | |
| | | String requestType = null; |
| | | String taskId = null; |
| | |
| | | data.remove("nodes"); |
| | | |
| | | DeviceCommandMsgModel commandMsgModel = new DeviceCommandMsgModel(); |
| | | commandMsgModel.setDeviceId(slave.getId()); |
| | | commandMsgModel.setDeviceId(deviceConfig.getDeviceNo()); |
| | | commandMsgModel.setDeviceType(String.valueOf(SlaveType.Shuttle)); |
| | | commandMsgModel.setCommand(data); |
| | | String key = deviceMsgUtils.sendDeviceCommand(SlaveType.Shuttle, slave.getId(), commandMsgModel); |
| | | String key = deviceMsgUtils.sendDeviceCommand(SlaveType.Shuttle, deviceConfig.getDeviceNo(), commandMsgModel); |
| | | |
| | | String requestType = null; |
| | | String taskId = null; |