| | |
| | | private ShuttleProtocol shuttleProtocol; |
| | | private Socket socket; |
| | | |
| | | private static final boolean DEBUG = true;//调试模式 |
| | | private static final boolean DEBUG = false;//调试模式 |
| | | |
| | | private List<JSONObject> socketResults = new ArrayList<>(); |
| | | |
| | |
| | | } |
| | | } |
| | | |
| | | public JSONObject getRequestBody(Integer requestId) { |
| | | public JSONObject getRequestBody(String type) { |
| | | try { |
| | | // 获取服务器响应 |
| | | JSONObject result = null; |
| | | if (type.equals("readState")) { |
| | | type = "state"; |
| | | } |
| | | |
| | | for (int i = 0; i < socketResults.size(); i++) { |
| | | JSONObject socketResult = socketResults.get(i); |
| | | if (!socketResult.get("msgType").equals("responseMsg")) {//不是响应内容 |
| | |
| | | } |
| | | |
| | | JSONObject resultResponse = JSON.parseObject(socketResult.get("response").toString()); |
| | | JSONObject resultHeader = JSON.parseObject(resultResponse.get("header").toString()); |
| | | int responseId = Integer.parseInt(resultHeader.get("responseId").toString()); |
| | | if (!DEBUG && responseId != requestId) { |
| | | JSONObject resultBody = JSON.parseObject(resultResponse.get("body").toString()); |
| | | String responseType = resultBody.get("responseType").toString(); |
| | | if (DEBUG) { |
| | | result = socketResult; |
| | | break; |
| | | } |
| | | |
| | | if (!responseType.equals(type)) { |
| | | continue;//响应ID与请求ID不一致,不在调试模式下 |
| | | } |
| | | |
| | |
| | | } |
| | | |
| | | return filterBodyData(result);//返回Body结果集 |
| | | } catch (Exception e) { |
| | | return null; |
| | | } |
| | | } |
| | | |
| | | private void read() { |
| | |
| | | |
| | | private void readStatus() { |
| | | try { |
| | | //----------读取四向穿梭车状态----------- |
| | | NyShuttleHttpCommand readStatusCommand = getReadStatusCommand(Integer.parseInt(device.getDeviceNo())); |
| | | JSONObject data = requestCommand(readStatusCommand); |
| | | if (data == null) { |
| | | shuttleProtocol.setProtocolStatus(ShuttleProtocolStatusType.OFFLINE); |
| | | OutputQueue.SHUTTLE.offer(MessageFormat.format("【{0}】四向穿梭车Socket状态信息失败 ===>> [id:{1}] [ip:{2}] [port:{3}]", DateUtils.convert(new Date()), device.getId(), device.getIp(), device.getPort())); |
| | | }else { |
| | | if (null == shuttleProtocol) { |
| | | shuttleProtocol = new ShuttleProtocol(); |
| | | shuttleProtocol.setShuttleNo(Integer.valueOf(device.getDeviceNo())); |
| | |
| | | } |
| | | |
| | | //----------读取四向穿梭车状态----------- |
| | | NyShuttleHttpCommand readStatusCommand = getReadStatusCommand(Integer.parseInt(device.getDeviceNo())); |
| | | JSONObject data = requestCommand(readStatusCommand); |
| | | if (data == null) { |
| | | // shuttleProtocol.setProtocolStatus(ShuttleProtocolStatusType.OFFLINE); |
| | | OutputQueue.SHUTTLE.offer(MessageFormat.format("【{0}】四向穿梭车Socket状态信息失败 ===>> [id:{1}] [ip:{2}] [port:{3}]", DateUtils.convert(new Date()), device.getId(), device.getIp(), device.getPort())); |
| | | }else { |
| | | |
| | | //----------读取四向穿梭车状态----------- |
| | | //小车设备状态 |
| | | shuttleProtocol.setDeviceStatus(data.getInteger("free")); |
| | | //小车模式 |
| | | shuttleProtocol.setMode(data.getInteger("workingMode")); |
| | | //当前二维码 |
| | | shuttleProtocol.setCurrentCode(data.getString("coord")); |
| | | shuttleProtocol.setCurrentCode(data.getString("point")); |
| | | //电池电量 |
| | | shuttleProtocol.setBatteryPower(data.getString("powerPercent")); |
| | | //电池电压 |
| | |
| | | shuttleProtocol.setLastOnlineTime(System.currentTimeMillis()); |
| | | ///读取四向穿梭车状态-end |
| | | |
| | | //小车处于运行中,将标记置为false |
| | | //小车处于运行中,将标记置为true |
| | | if (shuttleProtocol.getDeviceStatus() == 1) { |
| | | shuttleProtocol.setPakMk(false); |
| | | shuttleProtocol.setPakMk(true); |
| | | } |
| | | |
| | | if (shuttleProtocol.getProtocolStatusType() == null && shuttleProtocol.getDeviceStatus().intValue() == 0) { |
| | |
| | | String requestType = resultBody.getString("requestType"); |
| | | Integer requestId = resultHeader.getInteger("requestId"); |
| | | if (requestType.equals("init")) { |
| | | Integer code = resultBody.getInteger("code"); |
| | | //小车复位请求 |
| | | ShuttleCommand initCommand = getInitCommand(requestId); |
| | | ShuttleCommand initCommand = getInitCommand(requestId, code); |
| | | //发出请求 |
| | | NyShuttleHttpCommand httpCommand = JSON.parseObject(initCommand.getBody(), NyShuttleHttpCommand.class); |
| | | JSONObject requestResult = requestCommand(httpCommand); |
| | |
| | | |
| | | InnerSuhttleExtend extend = (InnerSuhttleExtend) this.shuttleProtocol.getExtend(); |
| | | |
| | | boolean res = this.shuttleProtocol.getDeviceStatus() == 0 |
| | | boolean res = this.shuttleProtocol.getDeviceStatus() == 1 |
| | | && this.shuttleProtocol.getMode() == 1 |
| | | && this.shuttleProtocol.getPakMk() |
| | | && this.shuttleProtocol.getErrorCode().equals("0") |
| | |
| | | |
| | | InnerSuhttleExtend extend = (InnerSuhttleExtend) this.shuttleProtocol.getExtend(); |
| | | |
| | | boolean res = this.shuttleProtocol.getDeviceStatus() == 0 |
| | | boolean res = this.shuttleProtocol.getDeviceStatus() == 1 |
| | | && this.shuttleProtocol.getMode() == 1 |
| | | && this.shuttleProtocol.getPakMk() |
| | | && this.shuttleProtocol.getErrorCode().equals("0") |
| | |
| | | |
| | | InnerSuhttleExtend extend = (InnerSuhttleExtend) this.shuttleProtocol.getExtend(); |
| | | |
| | | boolean res = this.shuttleProtocol.getDeviceStatus() == 0 |
| | | boolean res = this.shuttleProtocol.getDeviceStatus() == 1 |
| | | && this.shuttleProtocol.getMode() == 1 |
| | | && this.shuttleProtocol.getPakMk() |
| | | && this.shuttleProtocol.getErrorCode().equals("0") |
| | |
| | | data.put("z", z); |
| | | data.put("x", mapNode.getXBase()); |
| | | data.put("y", mapNode.getYBase()); |
| | | path.add(data); |
| | | } |
| | | |
| | | |
| | | httpStandard.setRequest(request); |
| | | |
| | |
| | | |
| | | ShuttleCommand command = new ShuttleCommand(); |
| | | command.setShuttleNo(Integer.parseInt(this.device.getDeviceNo())); |
| | | command.setBody(JSON.toJSONString(body)); |
| | | command.setBody(JSON.toJSONString(httpStandard)); |
| | | command.setMode(lift ? ShuttleCommandModeType.PALLET_LIFT.id : ShuttleCommandModeType.PALLET_DOWN.id); |
| | | return command; |
| | | } |
| | |
| | | } |
| | | |
| | | //获取小车复位响应命令 |
| | | public ShuttleCommand getInitCommand(Integer taskNo) { |
| | | public ShuttleCommand getInitCommand(Integer taskNo, Integer code) { |
| | | LocService locService = SpringUtils.getBean(LocService.class); |
| | | NavigateMapData navigateMapData = SpringUtils.getBean(NavigateMapData.class); |
| | | NyShuttleHttpCommand httpStandard = getHttpStandard(Integer.parseInt(device.getDeviceNo()), taskNo); |
| | | NyShuttleHttpCommand.NyRequest request = httpStandard.getRequest(); |
| | | |
| | | //code -> {Integer@13781} 1101101 |
| | | int lev = code % 100; |
| | | int bay = code / 100 % 1000; |
| | | int row = code / 100000; |
| | | |
| | | HashMap<String, Object> map = new HashMap<>(); |
| | | map.put("x", row); |
| | | map.put("y", bay); |
| | | map.put("z", lev); |
| | | |
| | | String mapStr = JSON.toJSONString(map); |
| | | Loc loc = locService.getOne(new LambdaQueryWrapper<Loc>() |
| | | .eq(Loc::getCode, mapStr) |
| | | .eq(Loc::getStatus, 1) |
| | | .eq(Loc::getHostId, this.device.getHostId())); |
| | | if (loc == null) { |
| | | throw new CoolException("地址码不存在"); |
| | | } |
| | | |
| | | navigateMapData.setLev(lev); |
| | | List<List<MapNode>> mapData = navigateMapData.getJsonData(NavigationMapType.NONE.id, null, null); |
| | | List<MapNode> mapNodes = mapData.get(loc.getRow()); |
| | | MapNode mapNode = mapNodes.get(loc.getBay()); |
| | | |
| | | HashMap<String, Object> location = new HashMap<>(); |
| | | location.put("xp", row); |
| | | location.put("yp", bay); |
| | | location.put("z", lev); |
| | | location.put("x", mapNode.getXBase()); |
| | | location.put("y", mapNode.getYBase()); |
| | | |
| | | HashMap<String, Object> body = new HashMap<>(); |
| | | body.put("responseType", "init");//复位 |
| | | body.put("location", new ArrayList<>());//初始化坐标 |
| | | body.put("location", location);//初始化坐标 |
| | | body.put("devicePoints", new ArrayList<>());//提升机点位 |
| | | body.put("specialPoints", new ArrayList<>());//特殊条码坐标 |
| | | request.setBody(body); |
| | |
| | | writer.flush(); |
| | | // System.out.println("Sent message to server: " + JSON.toJSONString(httpCommand)); |
| | | |
| | | String requestType = null; |
| | | try { |
| | | requestType = httpCommand.getRequest().getBody().get("requestType").toString(); |
| | | } catch (Exception e) { |
| | | return null; |
| | | } |
| | | |
| | | // 获取服务器响应 |
| | | // 尝试10次 |
| | | JSONObject result = null; |
| | | for (int i = 0; i < 10; i++) { |
| | | result = getRequestBody(httpCommand.getRequest().getHeader().getRequestId()); |
| | | result = getRequestBody(requestType); |
| | | if (result == null) { |
| | | try { |
| | | Thread.sleep(100); |
| | |
| | | e.printStackTrace(); |
| | | } |
| | | } |
| | | break; |
| | | } |
| | | return result;//返回Body结果集 |
| | | } |
| | |
| | | |
| | | //WCS系统坐标转牛眼坐标 |
| | | private static int[] WCSXyzToNyXyz(int x, int y, int z) { |
| | | //WCS系统Y轴 => 牛眼X轴转换公式 |
| | | int x1 = Math.abs(y - 61) + 11; |
| | | //WCS系统X轴 => 牛眼Y轴转换公式 |
| | | int y1 = x + 10; |
| | | return new int[]{x1, y1, z}; |
| | | // //WCS系统Y轴 => 牛眼X轴转换公式 |
| | | // int x1 = Math.abs(y - 61) + 11; |
| | | // //WCS系统X轴 => 牛眼Y轴转换公式 |
| | | // int y1 = x + 10; |
| | | int x1 = x + 10; |
| | | int y1 = y + 10; |
| | | return new int[]{y1, x1, z}; |
| | | } |
| | | |
| | | @Data |