|
@ -2,6 +2,9 @@ package org.nl.acs.device_driver.basedriver.agv.ndcone; |
|
|
|
|
|
|
|
|
import cn.hutool.core.util.ObjectUtil; |
|
|
import cn.hutool.core.util.ObjectUtil; |
|
|
import cn.hutool.core.util.StrUtil; |
|
|
import cn.hutool.core.util.StrUtil; |
|
|
|
|
|
import cn.hutool.http.HttpResponse; |
|
|
|
|
|
import com.alibaba.fastjson.JSONArray; |
|
|
|
|
|
import com.alibaba.fastjson.JSONObject; |
|
|
import lombok.Data; |
|
|
import lombok.Data; |
|
|
import lombok.RequiredArgsConstructor; |
|
|
import lombok.RequiredArgsConstructor; |
|
|
import lombok.extern.slf4j.Slf4j; |
|
|
import lombok.extern.slf4j.Slf4j; |
|
@ -23,6 +26,8 @@ import org.nl.acs.log.LokiLogType; |
|
|
import org.nl.acs.log.service.DeviceExecuteLogService; |
|
|
import org.nl.acs.log.service.DeviceExecuteLogService; |
|
|
import org.nl.acs.opc.Device; |
|
|
import org.nl.acs.opc.Device; |
|
|
import org.nl.acs.opc.DeviceAppService; |
|
|
import org.nl.acs.opc.DeviceAppService; |
|
|
|
|
|
import org.nl.acs.task.service.TaskService; |
|
|
|
|
|
import org.nl.acs.task.service.impl.TaskServiceImpl; |
|
|
import org.nl.modules.system.service.ParamService; |
|
|
import org.nl.modules.system.service.ParamService; |
|
|
import org.nl.modules.system.service.impl.ParamServiceImpl; |
|
|
import org.nl.modules.system.service.impl.ParamServiceImpl; |
|
|
import org.nl.modules.wql.util.SpringContextHolder; |
|
|
import org.nl.modules.wql.util.SpringContextHolder; |
|
@ -43,6 +48,7 @@ public class AgvNdcOneDeviceDriver extends AbstractDeviceDriver implements Devic |
|
|
ParamService paramService = SpringContextHolder.getBean(ParamServiceImpl.class); |
|
|
ParamService paramService = SpringContextHolder.getBean(ParamServiceImpl.class); |
|
|
InstructionService instructionService = SpringContextHolder.getBean(InstructionServiceImpl.class); |
|
|
InstructionService instructionService = SpringContextHolder.getBean(InstructionServiceImpl.class); |
|
|
AcsToWmsService acsToWmsService = SpringContextHolder.getBean(AcsToWmsServiceImpl.class); |
|
|
AcsToWmsService acsToWmsService = SpringContextHolder.getBean(AcsToWmsServiceImpl.class); |
|
|
|
|
|
TaskService taskService = SpringContextHolder.getBean(TaskServiceImpl.class); |
|
|
NDCAgvService NDCAgvService = SpringContextHolder.getBean(NDCAgvService.class); |
|
|
NDCAgvService NDCAgvService = SpringContextHolder.getBean(NDCAgvService.class); |
|
|
DeviceExecuteLogService logServer = SpringContextHolder.getBean(DeviceExecuteLogService.class); |
|
|
DeviceExecuteLogService logServer = SpringContextHolder.getBean(DeviceExecuteLogService.class); |
|
|
DeviceAppService deviceAppService = SpringContextHolder.getBean(DeviceAppService.class); |
|
|
DeviceAppService deviceAppService = SpringContextHolder.getBean(DeviceAppService.class); |
|
@ -163,27 +169,43 @@ public class AgvNdcOneDeviceDriver extends AbstractDeviceDriver implements Devic |
|
|
return; |
|
|
return; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
if (device.getDeviceDriver() instanceof StandardOrdinarySiteDeviceDriver) { |
|
|
// if (device.getDeviceDriver() instanceof StandardOrdinarySiteDeviceDriver) {
|
|
|
standardOrdinarySiteDeviceDriver = (StandardOrdinarySiteDeviceDriver) device.getDeviceDriver(); |
|
|
// standardOrdinarySiteDeviceDriver = (StandardOrdinarySiteDeviceDriver) device.getDeviceDriver();
|
|
|
standardOrdinarySiteDeviceDriver.setAgvphase(phase); |
|
|
// standardOrdinarySiteDeviceDriver.setAgvphase(phase);
|
|
|
standardOrdinarySiteDeviceDriver.setIndex(index); |
|
|
// standardOrdinarySiteDeviceDriver.setIndex(index);
|
|
|
standardOrdinarySiteDeviceDriver.setInst(inst); |
|
|
// standardOrdinarySiteDeviceDriver.setInst(inst);
|
|
|
} |
|
|
// }
|
|
|
|
|
|
if (StrUtil.equals(inst.getStart_device_code(), device_code)) { |
|
|
if (device.getDeviceDriver() instanceof SiemensConveyorDeviceDriver) { |
|
|
String instruction_type = inst.getInstruction_type(); |
|
|
siemensConveyorDeviceDriver = (SiemensConveyorDeviceDriver) device.getDeviceDriver(); |
|
|
if (StrUtil.equals(instruction_type, "3") |
|
|
if (siemensConveyorDeviceDriver.getMove() == 1) { |
|
|
|| StrUtil.equals(instruction_type, "5") |
|
|
|
|
|
|| StrUtil.equals(instruction_type, "9") |
|
|
|
|
|
|| StrUtil.equals(instruction_type, "11") |
|
|
|
|
|
|| StrUtil.equals(instruction_type, "13")) { |
|
|
|
|
|
JSONArray req = new JSONArray(); |
|
|
|
|
|
JSONObject map = new JSONObject(); |
|
|
|
|
|
map.put("vehicle_code", inst.getVehicle_code()); |
|
|
|
|
|
map.put("status", "1"); |
|
|
|
|
|
map.put("device_code", inst.getStart_point_code()); |
|
|
|
|
|
map.put("task_code", inst.getTask_code()); |
|
|
|
|
|
req.add(map); |
|
|
|
|
|
HttpResponse httpResponse = acsToWmsService.feedAgvTaskStatus(req); |
|
|
|
|
|
if (ObjectUtil.isNotEmpty(httpResponse) && httpResponse.getStatus() == 200) { |
|
|
|
|
|
JSONObject resp = JSONObject.parseObject(httpResponse.body()); |
|
|
|
|
|
if (resp.getInteger("status") == 200) { |
|
|
data = NDCAgvService.sendAgvOneModeInst(phase, index, 0); |
|
|
data = NDCAgvService.sendAgvOneModeInst(phase, index, 0); |
|
|
|
|
|
log.info("指令号:{},acs请求wms取货申请成功,wms允许agv申请取货,已反馈agv允许取货", inst.getInstruction_code()); |
|
|
} else { |
|
|
} else { |
|
|
log.info("请求取货条件不满足待机有货"); |
|
|
log.warn("指令号:{},acs请求wms取货申请成功,wms不允许agv申请取货,未反馈agv允许取货", inst.getInstruction_code()); |
|
|
} |
|
|
} |
|
|
|
|
|
} else { |
|
|
|
|
|
log.warn("指令号:{},acs请求wms取货申请失败,连接被拒绝,未反馈agv允许取货", inst.getInstruction_code()); |
|
|
} |
|
|
} |
|
|
|
|
|
} else { |
|
|
if (device.getDeviceDriver() instanceof StandardStorageDeviceDriver) { |
|
|
|
|
|
data = NDCAgvService.sendAgvOneModeInst(phase, index, 0); |
|
|
data = NDCAgvService.sendAgvOneModeInst(phase, index, 0); |
|
|
|
|
|
log.info("指令号:{},acs不需要请求wms取货申请,已反馈agv允许取货", inst.getInstruction_code()); |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
logServer.deviceExecuteLog(this.device_code, "", "", "agvphase:" + phase + "反馈:" + data); |
|
|
|
|
|
|
|
|
|
|
|
//取货完毕
|
|
|
//取货完毕
|
|
|
//(需要WCS反馈)
|
|
|
//(需要WCS反馈)
|
|
|
} else if (phase == 0x05) { |
|
|
} else if (phase == 0x05) { |
|
@ -223,38 +245,41 @@ public class AgvNdcOneDeviceDriver extends AbstractDeviceDriver implements Devic |
|
|
|
|
|
|
|
|
if (StrUtil.equals(inst.getStart_device_code(), device_code)) { |
|
|
if (StrUtil.equals(inst.getStart_device_code(), device_code)) { |
|
|
|
|
|
|
|
|
if (device.getDeviceDriver() instanceof StandardOrdinarySiteDeviceDriver) { |
|
|
String instruction_type = inst.getInstruction_type(); |
|
|
standardOrdinarySiteDeviceDriver = (StandardOrdinarySiteDeviceDriver) device.getDeviceDriver(); |
|
|
if (StrUtil.equals(instruction_type, "2") |
|
|
standardOrdinarySiteDeviceDriver.setAgvphase(phase); |
|
|
|| StrUtil.equals(instruction_type, "3") |
|
|
standardOrdinarySiteDeviceDriver.setIndex(index); |
|
|
|| StrUtil.equals(instruction_type, "4") |
|
|
standardOrdinarySiteDeviceDriver.setInst(inst); |
|
|
|| StrUtil.equals(instruction_type, "5") |
|
|
} |
|
|
|| StrUtil.equals(instruction_type, "6") |
|
|
|
|
|
|| StrUtil.equals(instruction_type, "8") |
|
|
if (device.getDeviceDriver() instanceof SiemensConveyorDeviceDriver) { |
|
|
|| StrUtil.equals(instruction_type, "9") |
|
|
siemensConveyorDeviceDriver = (SiemensConveyorDeviceDriver) device.getDeviceDriver(); |
|
|
|| StrUtil.equals(instruction_type, "10") |
|
|
if(siemensConveyorDeviceDriver.getTo_command() == 2){ |
|
|
|| StrUtil.equals(instruction_type, "11") |
|
|
log.info("取货完成请求离开,当前输送to_command:"+siemensConveyorDeviceDriver.getTo_command()); |
|
|
|| StrUtil.equals(instruction_type, "13")) { |
|
|
|
|
|
JSONArray req = new JSONArray(); |
|
|
|
|
|
JSONObject map = new JSONObject(); |
|
|
|
|
|
map.put("vehicle_code", inst.getVehicle_code()); |
|
|
|
|
|
map.put("status", "2"); |
|
|
|
|
|
map.put("device_code", inst.getStart_point_code()); |
|
|
|
|
|
map.put("task_code", inst.getTask_code()); |
|
|
|
|
|
req.add(map); |
|
|
|
|
|
HttpResponse httpResponse = acsToWmsService.feedAgvTaskStatus(req); |
|
|
|
|
|
if (ObjectUtil.isNotEmpty(httpResponse) && httpResponse.getStatus() == 200) { |
|
|
|
|
|
JSONObject resp = JSONObject.parseObject(httpResponse.body()); |
|
|
|
|
|
if (resp.getInteger("status") == 200) { |
|
|
data = NDCAgvService.sendAgvOneModeInst(phase, index, 0); |
|
|
data = NDCAgvService.sendAgvOneModeInst(phase, index, 0); |
|
|
|
|
|
log.info("指令号:{},acs反馈wms取货完成成功,wms允许agv取货完成,已反馈agv取货完成", inst.getInstruction_code()); |
|
|
} else { |
|
|
} else { |
|
|
log.info("取货完成请求离开下发输送信号,当前输送to_command:"+siemensConveyorDeviceDriver.getTo_command()); |
|
|
log.warn("指令号:{},acs反馈wms取货完成成功,wms不允许agv取货完成,未反馈agv取货完成", inst.getInstruction_code()); |
|
|
List list = new ArrayList(); |
|
|
|
|
|
Map map = new HashMap(); |
|
|
|
|
|
map.put("code", "to_command"); |
|
|
|
|
|
map.put("value", "2"); |
|
|
|
|
|
list.add(map); |
|
|
|
|
|
siemensConveyorDeviceDriver.writing(list); |
|
|
|
|
|
siemensConveyorDeviceDriver.writing(list); |
|
|
|
|
|
} |
|
|
} |
|
|
|
|
|
} else { |
|
|
|
|
|
log.warn("指令号:{},acs反馈wms取货完成失败,连接被拒绝,未反馈agv取货完成", inst.getInstruction_code()); |
|
|
} |
|
|
} |
|
|
|
|
|
} else { |
|
|
if (device.getDeviceDriver() instanceof StandardStorageDeviceDriver) { |
|
|
|
|
|
standardStorageDeviceDriver = (StandardStorageDeviceDriver) device.getDeviceDriver(); |
|
|
|
|
|
data = NDCAgvService.sendAgvOneModeInst(phase, index, 0); |
|
|
data = NDCAgvService.sendAgvOneModeInst(phase, index, 0); |
|
|
|
|
|
log.info("指令号:{},acs不需要反馈wms取货完成,已反馈agv取货完成", inst.getInstruction_code()); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
} |
|
|
} |
|
|
logServer.deviceExecuteLog(this.device_code, "", "", "agvphase:" + phase + "反馈:" + data); |
|
|
|
|
|
|
|
|
|
|
|
//到达放货点
|
|
|
//到达放货点
|
|
|
//(需要WCS反馈)
|
|
|
//(需要WCS反馈)
|
|
|
} else if (phase == 0x07) { |
|
|
} else if (phase == 0x07) { |
|
@ -289,22 +314,34 @@ public class AgvNdcOneDeviceDriver extends AbstractDeviceDriver implements Devic |
|
|
return; |
|
|
return; |
|
|
} |
|
|
} |
|
|
if (StrUtil.equals(inst.getNext_device_code(), device_code)) { |
|
|
if (StrUtil.equals(inst.getNext_device_code(), device_code)) { |
|
|
|
|
|
String instruction_type = inst.getInstruction_type(); |
|
|
if (device.getDeviceDriver() instanceof StandardOrdinarySiteDeviceDriver) { |
|
|
if (StrUtil.equals(instruction_type, "2") |
|
|
standardOrdinarySiteDeviceDriver = (StandardOrdinarySiteDeviceDriver) device.getDeviceDriver(); |
|
|
|| StrUtil.equals(instruction_type, "4") |
|
|
// standardOrdinarySiteDeviceDriver.setAgvphase(phase);
|
|
|
|| StrUtil.equals(instruction_type, "8")) { |
|
|
// standardOrdinarySiteDeviceDriver.setIndex(index);
|
|
|
JSONArray req = new JSONArray(); |
|
|
// standardOrdinarySiteDeviceDriver.setInst(inst);
|
|
|
JSONObject map = new JSONObject(); |
|
|
|
|
|
map.put("vehicle_code", inst.getVehicle_code()); |
|
|
|
|
|
map.put("status", "3"); |
|
|
|
|
|
map.put("device_code", inst.getStart_point_code()); |
|
|
|
|
|
map.put("task_code", inst.getTask_code()); |
|
|
|
|
|
req.add(map); |
|
|
|
|
|
HttpResponse httpResponse = acsToWmsService.feedAgvTaskStatus(req); |
|
|
|
|
|
if (ObjectUtil.isNotEmpty(httpResponse) && httpResponse.getStatus() == 200) { |
|
|
|
|
|
JSONObject resp = JSONObject.parseObject(httpResponse.body()); |
|
|
|
|
|
if (resp.getInteger("status") == 200) { |
|
|
data = NDCAgvService.sendAgvOneModeInst(phase, index, 0); |
|
|
data = NDCAgvService.sendAgvOneModeInst(phase, index, 0); |
|
|
|
|
|
log.info("指令号:{},acs请求wms放货申请成功,wms允许agv申请放货,已反馈agv允许放货", inst.getInstruction_code()); |
|
|
|
|
|
} else { |
|
|
|
|
|
log.warn("指令号:{},acs请求wms放货申请成功,wms不允许agv申请放货,未反馈agv允许放货", inst.getInstruction_code()); |
|
|
} |
|
|
} |
|
|
|
|
|
} else { |
|
|
if (device.getDeviceDriver() instanceof StandardStorageDeviceDriver) { |
|
|
log.warn("指令号:{},acs请求wms放货申请失败,连接被拒绝,未反馈agv允许放货", inst.getInstruction_code()); |
|
|
standardStorageDeviceDriver = (StandardStorageDeviceDriver) device.getDeviceDriver(); |
|
|
} |
|
|
|
|
|
} else { |
|
|
data = NDCAgvService.sendAgvOneModeInst(phase, index, 0); |
|
|
data = NDCAgvService.sendAgvOneModeInst(phase, index, 0); |
|
|
|
|
|
log.info("指令号:{},acs不需要请求wms放货申请,已反馈agv允许放货", inst.getInstruction_code()); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
} |
|
|
} |
|
|
logServer.deviceExecuteLog(this.device_code, "", "", "agvphase:" + phase + "反馈:" + data); |
|
|
|
|
|
|
|
|
|
|
|
//放货完毕
|
|
|
//放货完毕
|
|
|
//(需要WCS反馈)
|
|
|
//(需要WCS反馈)
|
|
@ -341,23 +378,8 @@ public class AgvNdcOneDeviceDriver extends AbstractDeviceDriver implements Devic |
|
|
return; |
|
|
return; |
|
|
} |
|
|
} |
|
|
if (StrUtil.equals(inst.getNext_device_code(), device_code)) { |
|
|
if (StrUtil.equals(inst.getNext_device_code(), device_code)) { |
|
|
|
|
|
|
|
|
if (device.getDeviceDriver() instanceof StandardStorageDeviceDriver) { |
|
|
|
|
|
standardStorageDeviceDriver = (StandardStorageDeviceDriver) device.getDeviceDriver(); |
|
|
|
|
|
data = NDCAgvService.sendAgvOneModeInst(phase, index, 0); |
|
|
data = NDCAgvService.sendAgvOneModeInst(phase, index, 0); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
if (device.getDeviceDriver() instanceof StandardOrdinarySiteDeviceDriver) { |
|
|
|
|
|
standardOrdinarySiteDeviceDriver = (StandardOrdinarySiteDeviceDriver) device.getDeviceDriver(); |
|
|
|
|
|
// standardOrdinarySiteDeviceDriver.setAgvphase(phase);
|
|
|
|
|
|
// standardOrdinarySiteDeviceDriver.setIndex(index);
|
|
|
|
|
|
// standardOrdinarySiteDeviceDriver.setInst(inst);
|
|
|
|
|
|
data = NDCAgvService.sendAgvOneModeInst(phase, index, 0); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
logServer.deviceExecuteLog(this.device_code, "", "", "agvphase:" + phase + "反馈:" + data); |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
} |
|
|
//到达位置点
|
|
|
//到达位置点
|
|
|
//(需要WCS反馈)
|
|
|
//(需要WCS反馈)
|
|
|