| | |
| | | import com.zy.asrs.wcs.rcs.constant.DeviceRedisConstant; |
| | | import com.zy.asrs.wcs.rcs.entity.Device; |
| | | import com.zy.asrs.wcs.rcs.entity.DeviceDataLog; |
| | | import com.zy.asrs.wcs.rcs.model.CommandResponse; |
| | | import com.zy.asrs.wcs.rcs.model.command.NyShuttleHttpCommand; |
| | | import com.zy.asrs.wcs.rcs.model.enums.ShuttleProtocolStatusType; |
| | | import com.zy.asrs.wcs.rcs.model.enums.SlaveType; |
| | |
| | | |
| | | //小车空闲且有跑库程序 |
| | | shuttleAction.moveLoc(device); |
| | | |
| | | Thread.sleep(200); |
| | | } catch (Exception e) { |
| | | e.printStackTrace(); |
| | | } |
| | |
| | | BasShuttle basShuttle = shuttleService.getOne(new LambdaQueryWrapper<BasShuttle>() |
| | | .eq(BasShuttle::getShuttleNo, device.getDeviceNo()) |
| | | .eq(BasShuttle::getHostId, device.getHostId())); |
| | | |
| | | if (basShuttle == null) { |
| | | basShuttle = new BasShuttle(); |
| | | //四向穿梭车号 |
| | |
| | | basShuttle.setHostId(device.getHostId()); |
| | | basShuttle.setDeviceId(device.getId().intValue()); |
| | | shuttleService.save(basShuttle); |
| | | }else { |
| | | Integer shuttleId = basShuttle.getId(); |
| | | basShuttle = new BasShuttle(); |
| | | basShuttle.setId(shuttleId); |
| | | } |
| | | //任务号 |
| | | basShuttle.setTaskNo(shuttleProtocol.getTaskNo().intValue()); |
| | |
| | | } |
| | | |
| | | @Override |
| | | public boolean movePath(List<NavigateNode> nodes, Integer taskNo) { |
| | | return true; |
| | | public CommandResponse movePath(List<NavigateNode> nodes, Integer taskNo) { |
| | | CommandResponse response = new CommandResponse(true); |
| | | return response; |
| | | } |
| | | |
| | | @Override |
| | | public boolean move(ShuttleCommand command) { |
| | | public CommandResponse move(ShuttleCommand command) { |
| | | CommandResponse response = new CommandResponse(false); |
| | | try { |
| | | //发出请求 |
| | | NyShuttleHttpCommand httpCommand = JSON.parseObject(command.getBody(), NyShuttleHttpCommand.class); |
| | |
| | | |
| | | for (NyShuttleHttpCommand requestCommand : commandList) { |
| | | JSONObject result = requestCommand(requestCommand); |
| | | // if (result == null) { |
| | | // return false;//请求失败 |
| | | // } |
| | | if (result == null) { |
| | | return response;//请求失败 |
| | | } |
| | | this.shuttleProtocol.setSendTime(System.currentTimeMillis());//指令下发时间 |
| | | response.setMessage(JSON.toJSONString(result)); |
| | | response.setResult(true); |
| | | } |
| | | return true; |
| | | } catch (IOException e) { |
| | | return false; |
| | | return response; |
| | | } catch (Exception e) { |
| | | e.printStackTrace(); |
| | | response.setMessage(e.getMessage()); |
| | | return response; |
| | | } |
| | | } |
| | | |
| | | @Override |
| | | public boolean lift(ShuttleCommand command) { |
| | | public CommandResponse lift(ShuttleCommand command) { |
| | | CommandResponse response = new CommandResponse(false); |
| | | try { |
| | | //发出请求 |
| | | NyShuttleHttpCommand httpCommand = JSON.parseObject(command.getBody(), NyShuttleHttpCommand.class); |
| | | JSONObject result = requestCommand(httpCommand); |
| | | if (result == null) { |
| | | return false;//请求失败 |
| | | return response;//请求失败 |
| | | } |
| | | this.shuttleProtocol.setSendTime(System.currentTimeMillis());//指令下发时间 |
| | | return true; |
| | | } catch (IOException e) { |
| | | return false; |
| | | response.setMessage(JSON.toJSONString(result)); |
| | | response.setResult(true); |
| | | return response; |
| | | } catch (Exception e) { |
| | | e.printStackTrace(); |
| | | return response; |
| | | } |
| | | } |
| | | |
| | | @Override |
| | | public boolean charge(ShuttleCommand command) { |
| | | public CommandResponse charge(ShuttleCommand command) { |
| | | CommandResponse response = new CommandResponse(false); |
| | | try { |
| | | //发出请求 |
| | | NyShuttleHttpCommand httpCommand = JSON.parseObject(command.getBody(), NyShuttleHttpCommand.class); |
| | | JSONObject result = requestCommand(httpCommand); |
| | | if (result == null) { |
| | | return false;//请求失败 |
| | | return response;//请求失败 |
| | | } |
| | | this.shuttleProtocol.setSendTime(System.currentTimeMillis());//指令下发时间 |
| | | return true; |
| | | } catch (IOException e) { |
| | | return false; |
| | | response.setMessage(JSON.toJSONString(result)); |
| | | response.setResult(true); |
| | | return response; |
| | | } catch (Exception e) { |
| | | e.printStackTrace(); |
| | | return response; |
| | | } |
| | | } |
| | | |
| | | @Override |
| | | public boolean reset(ShuttleCommand command) { |
| | | public CommandResponse reset(ShuttleCommand command) { |
| | | setSyncTaskNo(0); |
| | | setProtocolStatus(ShuttleProtocolStatusType.IDLE); |
| | | enableMoveLoc(null, false); |
| | | return true; |
| | | return new CommandResponse(true, JSON.toJSONString(command)); |
| | | } |
| | | |
| | | @Override |
| | | public boolean updateLocation(ShuttleCommand command) { |
| | | public CommandResponse updateLocation(ShuttleCommand command) { |
| | | CommandResponse response = new CommandResponse(false); |
| | | try { |
| | | //发出请求 |
| | | NyShuttleHttpCommand httpCommand = JSON.parseObject(command.getBody(), NyShuttleHttpCommand.class); |
| | | JSONObject result = requestCommand(httpCommand); |
| | | if (result == null) { |
| | | return false;//请求失败 |
| | | return response;//请求失败 |
| | | } |
| | | this.shuttleProtocol.setSendTime(System.currentTimeMillis());//指令下发时间 |
| | | return true; |
| | | } catch (IOException e) { |
| | | return false; |
| | | response.setMessage(JSON.toJSONString(result)); |
| | | response.setResult(true); |
| | | return response; |
| | | } catch (Exception e) { |
| | | e.printStackTrace(); |
| | | return response; |
| | | } |
| | | } |
| | | |
| | |
| | | } |
| | | |
| | | @Override |
| | | public boolean requestWaiting() { |
| | | if (this.shuttleProtocol.getProtocolStatusType().equals(ShuttleProtocolStatusType.IDLE)) { |
| | | this.shuttleProtocol.setProtocolStatus(ShuttleProtocolStatusType.WAITING); |
| | | return true; |
| | | } |
| | | 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(Integer.parseInt(device.getDeviceNo()), taskNo); |
| | |
| | | |
| | | ArrayList<HashMap<String, Object>> path = new ArrayList<>(); |
| | | |
| | | Integer taskId = getTaskId(); |
| | | HashMap<String, Object> body = new HashMap<>(); |
| | | body.put("requestType", "move");//移动命令 |
| | | body.put("taskId", getTaskId());//TaskID需要随机 |
| | | body.put("taskId", taskId);//TaskID需要随机 |
| | | // body.put("start", navigateNodeToNyPointNode(NavigatePositionConvert.codeToNode(startCodeNum, device.getHostId())));//起点 |
| | | // body.put("target", navigateNodeToNyPointNode(NavigatePositionConvert.codeToNode(distCodeNum, device.getHostId())));//终点 |
| | | body.put("path", path); |
| | |
| | | command.setBody(JSON.toJSONString(httpStandard)); |
| | | command.setMode(ShuttleCommandModeType.MOVE.id); |
| | | command.setTargetLocNo(loc.getLocNo()); |
| | | command.setTaskNo(taskId); |
| | | return command; |
| | | } |
| | | |
| | |
| | | NyShuttleHttpCommand httpStandard = getHttpStandard(Integer.parseInt(device.getDeviceNo()), taskNo); |
| | | NyShuttleHttpCommand.NyRequest request = httpStandard.getRequest(); |
| | | |
| | | Integer taskId = getTaskId();//TaskID需要随机 |
| | | HashMap<String, Object> body = new HashMap<>(); |
| | | body.put("requestType", lift ? "liftUp" : "liftDown");//顶升或下降命令 |
| | | body.put("taskId", getTaskId());//TaskID需要随机 |
| | | body.put("taskId", taskId); |
| | | request.setBody(body); |
| | | |
| | | httpStandard.setRequest(request); |
| | |
| | | command.setShuttleNo(Integer.parseInt(this.device.getDeviceNo())); |
| | | command.setBody(JSON.toJSONString(httpStandard)); |
| | | command.setMode(lift ? ShuttleCommandModeType.PALLET_LIFT.id : ShuttleCommandModeType.PALLET_DOWN.id); |
| | | command.setTaskNo(taskId); |
| | | return command; |
| | | } |
| | | |
| | |
| | | NyShuttleHttpCommand httpStandard = getHttpStandard(Integer.parseInt(device.getDeviceNo()), taskNo); |
| | | NyShuttleHttpCommand.NyRequest request = httpStandard.getRequest(); |
| | | |
| | | Integer taskId = getTaskId();//TaskID需要随机 |
| | | HashMap<String, Object> body = new HashMap<>(); |
| | | body.put("requestType", charge ? "charge" : "stopCharge");//充电或停止充电 |
| | | body.put("taskId", getTaskId());//TaskID需要随机 |
| | | body.put("taskId", taskId); |
| | | request.setBody(body); |
| | | |
| | | httpStandard.setRequest(request); |
| | |
| | | command.setShuttleNo(Integer.parseInt(this.device.getDeviceNo())); |
| | | command.setBody(JSON.toJSONString(httpStandard)); |
| | | command.setMode(charge ? ShuttleCommandModeType.CHARGE_OPEN.id : ShuttleCommandModeType.CHARGE_CLOSE.id); |
| | | command.setTaskNo(taskId); |
| | | return command; |
| | | } |
| | | |
| | |
| | | command.setShuttleNo(Integer.parseInt(this.device.getDeviceNo())); |
| | | command.setBody(JSON.toJSONString(httpStandard)); |
| | | command.setMode(ShuttleCommandModeType.UPDATE_LOCATION.id); |
| | | command.setTaskNo(taskNo); |
| | | return command; |
| | | } |
| | | |
| | |
| | | command.setShuttleNo(Integer.parseInt(this.device.getDeviceNo())); |
| | | command.setBody(JSON.toJSONString(httpStandard)); |
| | | command.setMode(ShuttleCommandModeType.RESET.id); |
| | | command.setTaskNo(taskNo); |
| | | return command; |
| | | } |
| | | |
| | |
| | | } catch (Exception e) { |
| | | e.printStackTrace(); |
| | | } |
| | | }else { |
| | | break; |
| | | } |
| | | break; |
| | | } |
| | | return result;//返回Body结果集 |
| | | } |