|
|
@ -22,6 +22,7 @@ import org.nl.acs.opc.DeviceAppService; |
|
|
|
import org.nl.acs.route.service.RouteLineService; |
|
|
|
import org.nl.acs.task.service.TaskService; |
|
|
|
import org.nl.acs.task.service.dto.TaskDto; |
|
|
|
import org.nl.modules.common.exception.BadRequestException; |
|
|
|
import org.nl.modules.logging.DeviceCodeDir; |
|
|
|
import org.nl.modules.lucence.service.LuceneExecuteLogService; |
|
|
|
import org.nl.modules.lucence.service.dto.LuceneLogDto; |
|
|
@ -30,10 +31,7 @@ import org.openscada.opc.lib.da.Server; |
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
|
|
|
|
import java.io.IOException; |
|
|
|
import java.util.Date; |
|
|
|
import java.util.HashMap; |
|
|
|
import java.util.List; |
|
|
|
import java.util.Map; |
|
|
|
import java.util.*; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
@ -74,6 +72,7 @@ public class XgagvDeviceDriver extends AbstractOpcDeviceDriver implements Device |
|
|
|
int DO0 = 0; |
|
|
|
int DO1 = 0; |
|
|
|
int DO2 = 0; |
|
|
|
int DO8 = 0; |
|
|
|
Float x = 0f; |
|
|
|
Float y = 0f; |
|
|
|
Float angle = 0f; |
|
|
@ -103,6 +102,7 @@ public class XgagvDeviceDriver extends AbstractOpcDeviceDriver implements Device |
|
|
|
int last_DO0 = 0; |
|
|
|
int last_DO1 = 0; |
|
|
|
int last_DO2 = 0; |
|
|
|
int last_DO8 = 0; |
|
|
|
Float last_x = 0f; |
|
|
|
Float last_y = 0f; |
|
|
|
Float last_angle = 0f; |
|
|
@ -133,7 +133,12 @@ public class XgagvDeviceDriver extends AbstractOpcDeviceDriver implements Device |
|
|
|
//休息点
|
|
|
|
int relax_point = 0; |
|
|
|
//充电点
|
|
|
|
int charge_point =0; |
|
|
|
int charge_point = 0; |
|
|
|
//0.关机 1.有任务 2.空闲 3.充电
|
|
|
|
int flag = 0; |
|
|
|
//任务号
|
|
|
|
String order = ""; |
|
|
|
|
|
|
|
@Override |
|
|
|
public Device getDevice() { |
|
|
|
return this.device; |
|
|
@ -154,6 +159,7 @@ public class XgagvDeviceDriver extends AbstractOpcDeviceDriver implements Device |
|
|
|
DO0 = this.itemProtocol.getDO0(); |
|
|
|
DO1 = this.itemProtocol.getDO1(); |
|
|
|
DO2 = this.itemProtocol.getDO2(); |
|
|
|
DO8 = this.itemProtocol.getDO8(); |
|
|
|
x = this.itemProtocol.getX(); |
|
|
|
y = this.itemProtocol.getY(); |
|
|
|
navigation_address = this.itemProtocol.getNavigation_address(); |
|
|
@ -170,6 +176,7 @@ public class XgagvDeviceDriver extends AbstractOpcDeviceDriver implements Device |
|
|
|
cancle_navigation = this.itemProtocol.getCancle_navigation(); |
|
|
|
drum_run_status = this.itemProtocol.getDrum_run_status(); |
|
|
|
stop = this.itemProtocol.getStop(); |
|
|
|
angle = this.itemProtocol.getAngle(); |
|
|
|
|
|
|
|
if (home_relocation != last_home_relocation) { |
|
|
|
// LuceneLogDto logDto = LuceneLogDto.builder()
|
|
|
@ -178,7 +185,7 @@ public class XgagvDeviceDriver extends AbstractOpcDeviceDriver implements Device |
|
|
|
// .build();
|
|
|
|
// luceneExecuteLogService.deviceExecuteLog(logDto);
|
|
|
|
luceneExecuteLogService.deviceExecuteLog( |
|
|
|
new LuceneLogDto(this.getDevice().getOpc_server_code(),this.getDevice().getOpc_plc_code(),this.device_code,ItemProtocol.to_home_relocation,this.last_home_relocation,this.home_relocation)); |
|
|
|
new LuceneLogDto(this.getDevice().getOpc_server_code(), this.getDevice().getOpc_plc_code(), this.device_code, ItemProtocol.to_home_relocation, this.last_home_relocation, this.home_relocation)); |
|
|
|
} |
|
|
|
|
|
|
|
if (stop != last_stop) { |
|
|
@ -192,7 +199,7 @@ public class XgagvDeviceDriver extends AbstractOpcDeviceDriver implements Device |
|
|
|
if (address != last_address) { |
|
|
|
LuceneLogDto logDto = LuceneLogDto.builder() |
|
|
|
.device_code(device_code) |
|
|
|
.content("信号" + this.getDevice().getOpc_server_code() + "." + this.getDevice().getOpc_plc_code() + "." + this.device_code + "." + ItemProtocol.address + this.last_address + "->" + this.address) |
|
|
|
.content("信号" + this.getDevice().getOpc_server_code() + "." + this.getDevice().getOpc_plc_code() + "." + this.device_code + "." + ItemProtocol.address + this.last_address + "->" + this.address) |
|
|
|
.build(); |
|
|
|
luceneExecuteLogService.deviceExecuteLog(logDto); |
|
|
|
} |
|
|
@ -200,7 +207,7 @@ public class XgagvDeviceDriver extends AbstractOpcDeviceDriver implements Device |
|
|
|
if (electricity != last_electricity) { |
|
|
|
LuceneLogDto logDto = LuceneLogDto.builder() |
|
|
|
.device_code(device_code) |
|
|
|
.content("信号" + this.getDevice().getOpc_server_code() + "." + this.getDevice().getOpc_plc_code() + "." + this.device_code + "." + ItemProtocol.electricity + this.last_electricity + "->" + this.electricity) |
|
|
|
.content("信号" + this.getDevice().getOpc_server_code() + "." + this.getDevice().getOpc_plc_code() + "." + this.device_code + "." + ItemProtocol.electricity + this.last_electricity + "->" + this.electricity) |
|
|
|
.build(); |
|
|
|
luceneExecuteLogService.deviceExecuteLog(logDto); |
|
|
|
} |
|
|
@ -238,83 +245,114 @@ public class XgagvDeviceDriver extends AbstractOpcDeviceDriver implements Device |
|
|
|
Device charge_point_device = deviceAppService.findDeviceByCode((String) this.getDevice().getExtraValue().get("charge_point")); |
|
|
|
charge_point = Integer.parseInt(charge_point_device.getAddress()); |
|
|
|
List<Instruction> instList = instructionService.findAllInstFromCache(); |
|
|
|
|
|
|
|
if (instList.size() > 0) { |
|
|
|
if (ObjectUtil.isNotEmpty(instList)) { |
|
|
|
for (int i = 0; i < instList.size(); i++) { |
|
|
|
instList = this.sortTask(instList); |
|
|
|
inst = instList.get(i); |
|
|
|
if (ObjectUtil.equal(inst.getInstruction_type(), "1")) { |
|
|
|
if (!ObjectUtil.equal(inst.getInstruction_type(), "1")) { |
|
|
|
inst = null; |
|
|
|
continue; |
|
|
|
} |
|
|
|
} |
|
|
|
if (ObjectUtil.isEmpty(inst)) { |
|
|
|
message = "未找到对应指令"; |
|
|
|
return; |
|
|
|
if (ObjectUtil.isNotEmpty(inst)) break; |
|
|
|
} |
|
|
|
} |
|
|
|
//先判断当前有无指令
|
|
|
|
if (ObjectUtil.isEmpty(inst)) { |
|
|
|
this.flag = 2; |
|
|
|
if (electricity != 0 && electricity < min_electric && address != charge_point && (navigation_status == 0 || navigation_status == 4)) { |
|
|
|
log.info("下发充电:{}", charge_point); |
|
|
|
feedAgvTaskStatus(inst, "5"); |
|
|
|
feedAgvTaskStatus(inst, "7"); |
|
|
|
} |
|
|
|
if (electricity != 0 && electricity > cancle_electric && address == charge_point && (navigation_status == 0 || navigation_status == 4)) { |
|
|
|
log.info("下发回休息点:{}", relax_point); |
|
|
|
|
|
|
|
writing("to_address", 1); |
|
|
|
} |
|
|
|
} else { |
|
|
|
order = inst.getTask_code(); |
|
|
|
TaskDto task = taskserver.findByCodeFromCache(inst.getTask_code()); |
|
|
|
Device start_device = deviceAppService.findDeviceByCode(inst.getStart_device_code()); |
|
|
|
Device next_device = deviceAppService.findDeviceByCode(inst.getNext_device_code()); |
|
|
|
int start_device_code = Integer.parseInt(start_device.getAddress()); |
|
|
|
int next_device_code = Integer.parseInt(next_device.getAddress()); |
|
|
|
|
|
|
|
|
|
|
|
StandardInspectSiteDeviceDriver standardInspectSiteDeviceDriver; |
|
|
|
//指令状态就绪
|
|
|
|
if (StrUtil.equals("0", inst.getInstruction_status())) { |
|
|
|
this.flag = 1; |
|
|
|
log.info("下发指令号{},起点{}", inst.getInstruction_code(), start_device); |
|
|
|
//判断指令起点与任务起点是否相同
|
|
|
|
String start_addr = start_device.getExtraValue().get("address").toString(); |
|
|
|
String next_addr = next_device.getExtraValue().get("address").toString(); |
|
|
|
String line_code = start_addr + next_addr; |
|
|
|
int to_line_code = Integer.parseInt(line_code); |
|
|
|
inst.setInstruction_status("1"); |
|
|
|
if ("A4".equals(inst.getStart_device_code())) { |
|
|
|
inst.setExecute_status("1"); |
|
|
|
} else { |
|
|
|
inst.setExecute_status("3"); |
|
|
|
} |
|
|
|
instructionService.update(inst); |
|
|
|
writing("to_locate_correct", 1); |
|
|
|
writing("to_reclaim_control", 1); |
|
|
|
writing("to_line", to_line_code); |
|
|
|
} |
|
|
|
//判断起点终点是否配置电气值
|
|
|
|
Device startDevice = deviceAppService.findDeviceByCode(inst.getStart_device_code()); |
|
|
|
Device nextDevice = deviceAppService.findDeviceByCode(inst.getNext_device_code()); |
|
|
|
if (ObjectUtil.isEmpty(startDevice.getExtraValue().get("address"))) { |
|
|
|
throw new BadRequestException("设备:" + startDevice.getDevice_code() + "未设置电气调度号!"); |
|
|
|
} |
|
|
|
if (ObjectUtil.isEmpty(nextDevice.getExtraValue().get("address"))) { |
|
|
|
throw new BadRequestException("设备:" + nextDevice.getDevice_code() + "未设置电气调度号!"); |
|
|
|
} |
|
|
|
String start_addr = startDevice.getExtraValue().get("address").toString(); |
|
|
|
String next_addr = nextDevice.getExtraValue().get("address").toString(); |
|
|
|
|
|
|
|
//申请取货
|
|
|
|
if (StrUtil.equals("1", inst.getInstruction_status()) && next_addr.equals(String.valueOf(address)) && stop == 1 && StrUtil.equals(inst.getExecute_status(), "1")) { |
|
|
|
//请求wms是否允许取货
|
|
|
|
feedAgvTaskStatus(inst, "1"); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
//取货完成请求离开
|
|
|
|
if (StrUtil.equals("1", inst.getInstruction_status()) && address == 5 && stop == 1 && StrUtil.equals(inst.getExecute_status(),"1")) { |
|
|
|
//请求wms是否允许从取货点离开
|
|
|
|
feedAgvTaskStatus(inst, "2"); |
|
|
|
} |
|
|
|
// if (StrUtil.equals("1", inst.getInstruction_status()) && start_addr.equals(String.valueOf(address)) && stop == 1 && StrUtil.equals(inst.getExecute_status(), "1")) {
|
|
|
|
// //请求wms是否允许从取货点离开
|
|
|
|
// feedAgvTaskStatus(inst, "2");
|
|
|
|
// }
|
|
|
|
|
|
|
|
//请求放货
|
|
|
|
if (StrUtil.equals("1", inst.getInstruction_status()) && address == 2 && stop == 1 && StrUtil.equals(inst.getExecute_status(),"2")) { |
|
|
|
if (StrUtil.equals("1", inst.getInstruction_status()) && next_addr.equals(String.valueOf(address)) && stop == 1 && StrUtil.equals(inst.getExecute_status(), "3")) { |
|
|
|
//请求wms是否允许进入放货
|
|
|
|
feedAgvTaskStatus(inst, "3"); |
|
|
|
|
|
|
|
} |
|
|
|
//放货完成 完成任务回休息点
|
|
|
|
if (StrUtil.equals("1", inst.getInstruction_status()) && address == 1 && stop == 1 && StrUtil.equals(inst.getExecute_status(),"3")) { |
|
|
|
feedAgvTaskStatus(inst, "4"); |
|
|
|
} |
|
|
|
// if (StrUtil.equals("1", inst.getInstruction_status()) && next_addr.equals(String.valueOf(address)) && stop == 1 && StrUtil.equals(inst.getExecute_status(), "3")) {
|
|
|
|
// feedAgvTaskStatus(inst, "4");
|
|
|
|
// }
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
//请求开门
|
|
|
|
if ( (address == 3 || address == 11 ) && stop == 1 ) { |
|
|
|
if ((address == 6 || address == 2) && stop == 1 && DO8 == 1) { |
|
|
|
feedAgvAction("5"); |
|
|
|
} |
|
|
|
|
|
|
|
//请求关门
|
|
|
|
if ( (address == 9 || address == 10 ) && stop == 1 ) { |
|
|
|
if ((address == 6 || address == 2) && stop == 1 && DO8 == 0) { |
|
|
|
feedAgvAction("6"); |
|
|
|
} |
|
|
|
|
|
|
|
//请求充电
|
|
|
|
if ( address == 4 && stop == 1 ) { |
|
|
|
feedAgvAction( "7"); |
|
|
|
} |
|
|
|
|
|
|
|
last_home_relocation = home_relocation; |
|
|
|
last_address = address; |
|
|
|
last_next_address = next_address; |
|
|
|
last_electricity = electricity; |
|
|
|
last_stop = stop; |
|
|
|
last_angle = angle; |
|
|
|
last_x = x; |
|
|
|
last_y = y; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
@ -327,7 +365,7 @@ public class XgagvDeviceDriver extends AbstractOpcDeviceDriver implements Device |
|
|
|
itemMap.put(to_command, value); |
|
|
|
LuceneLogDto resplogDto = LuceneLogDto.builder() |
|
|
|
.device_code(device_code) |
|
|
|
.content("下发信号"+ this.getDevice().getOpc_server_code() + "." + this.getDevice().getOpc_plc_code() + "." + this.device_code + "." + key + "value:"+ value ) |
|
|
|
.content("下发信号" + this.getDevice().getOpc_server_code() + "." + this.getDevice().getOpc_plc_code() + "." + this.device_code + "." + key + "value:" + value) |
|
|
|
.build(); |
|
|
|
|
|
|
|
ReadUtil.write(itemMap, server); |
|
|
@ -354,6 +392,23 @@ public class XgagvDeviceDriver extends AbstractOpcDeviceDriver implements Device |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
public List<Instruction> sortTask(List<Instruction> instructions) { |
|
|
|
Collections.sort(instructions, new Comparator<Instruction>() { |
|
|
|
@Override |
|
|
|
public int compare(Instruction t1, Instruction t2) { |
|
|
|
//优先级从大到小
|
|
|
|
int i = t2.getPriority().compareTo(t1.getPriority()); |
|
|
|
//如果优先级相等
|
|
|
|
if (i == 0) { |
|
|
|
//时间从早到晚
|
|
|
|
i = t1.getCreate_time().compareTo(t2.getCreate_time()); |
|
|
|
} |
|
|
|
return i; |
|
|
|
} |
|
|
|
}); |
|
|
|
return instructions; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* 反馈wms动作状态 |
|
|
|
* |
|
|
@ -369,43 +424,38 @@ public class XgagvDeviceDriver extends AbstractOpcDeviceDriver implements Device |
|
|
|
|
|
|
|
//请求WMS允许取货
|
|
|
|
if (StrUtil.equals(type, "1")) { |
|
|
|
Device start_device = deviceAppService.findDeviceByCode(inst.getStart_device_code()); |
|
|
|
Device next_device = deviceAppService.findDeviceByCode(inst.getNext_device_code()); |
|
|
|
int start_device_code = Integer.parseInt(start_device.getAddress()); |
|
|
|
int next_device_code = Integer.parseInt(next_device.getAddress()); |
|
|
|
JSONArray ja = new JSONArray(); |
|
|
|
JSONObject jo = new JSONObject(); |
|
|
|
jo.put("vehicle_code", inst.getVehicle_code()); |
|
|
|
jo.put("status", "1"); |
|
|
|
jo.put("device_code", this.device_code); |
|
|
|
jo.put("status", "4"); |
|
|
|
jo.put("device_code", inst.getNext_device_code()); |
|
|
|
jo.put("task_code", inst.getTask_code()); |
|
|
|
ja.add(jo); |
|
|
|
LuceneLogDto reqlogDto = LuceneLogDto.builder() |
|
|
|
.device_code(device_code) |
|
|
|
.content("请求参数:"+jo) |
|
|
|
.requestparam("请求参数:"+jo) |
|
|
|
.content("请求参数:" + jo) |
|
|
|
.requestparam("请求参数:" + jo) |
|
|
|
.method("feedAgvTaskStatus") |
|
|
|
.build(); |
|
|
|
luceneExecuteLogService.deviceExecuteLog(reqlogDto); |
|
|
|
HttpResponse resp = acsToWmsService.feedAgvTaskStatus(ja); |
|
|
|
LuceneLogDto resplogDto = LuceneLogDto.builder() |
|
|
|
.device_code(device_code) |
|
|
|
.content("返回参数:"+resp.body()) |
|
|
|
.responseparam("返回参数:"+resp.body()) |
|
|
|
.content("返回参数:" + resp.body()) |
|
|
|
.responseparam("返回参数:" + resp.body()) |
|
|
|
.method("feedAgvTaskStatus") |
|
|
|
.status_code(String.valueOf(resp.getStatus())) |
|
|
|
.build(); |
|
|
|
luceneExecuteLogService.deviceExecuteLog(resplogDto); |
|
|
|
|
|
|
|
if (resp.getStatus() ==200) { |
|
|
|
|
|
|
|
if (resp.getStatus() == 200) { |
|
|
|
inst.setInstruction_status("1"); |
|
|
|
inst.setExecute_status("1"); |
|
|
|
inst.setExecute_status("2"); |
|
|
|
instructionService.update(inst); |
|
|
|
writing("to_line", 1); |
|
|
|
|
|
|
|
//结束任务
|
|
|
|
finish_instruction(inst); |
|
|
|
} else { |
|
|
|
writing("to_line", 1); |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
//取货完成请求离开
|
|
|
@ -423,21 +473,21 @@ public class XgagvDeviceDriver extends AbstractOpcDeviceDriver implements Device |
|
|
|
ja.add(jo); |
|
|
|
LuceneLogDto reqlogDto = LuceneLogDto.builder() |
|
|
|
.device_code(device_code) |
|
|
|
.content("请求参数:"+jo) |
|
|
|
.requestparam("请求参数:"+jo) |
|
|
|
.content("请求参数:" + jo) |
|
|
|
.requestparam("请求参数:" + jo) |
|
|
|
.method("feedAgvTaskStatus") |
|
|
|
.build(); |
|
|
|
luceneExecuteLogService.deviceExecuteLog(reqlogDto); |
|
|
|
HttpResponse resp = acsToWmsService.feedAgvTaskStatus(ja); |
|
|
|
LuceneLogDto resplogDto = LuceneLogDto.builder() |
|
|
|
.device_code(device_code) |
|
|
|
.content("返回参数:"+resp.body()) |
|
|
|
.responseparam("返回参数:"+resp.body()) |
|
|
|
.content("返回参数:" + resp.body()) |
|
|
|
.responseparam("返回参数:" + resp.body()) |
|
|
|
.method("feedAgvTaskStatus") |
|
|
|
.status_code(String.valueOf(resp.getStatus())) |
|
|
|
.build(); |
|
|
|
luceneExecuteLogService.deviceExecuteLog(resplogDto); |
|
|
|
if (resp.getStatus() ==200) { |
|
|
|
if (resp.getStatus() == 200) { |
|
|
|
|
|
|
|
inst.setInstruction_status("1"); |
|
|
|
inst.setExecute_status("2"); |
|
|
@ -446,7 +496,7 @@ public class XgagvDeviceDriver extends AbstractOpcDeviceDriver implements Device |
|
|
|
|
|
|
|
} |
|
|
|
//请求放货
|
|
|
|
} else if (StrUtil.equals(type, "3")) { |
|
|
|
} else if (StrUtil.equals(type, "3")) { |
|
|
|
Device start_device = deviceAppService.findDeviceByCode(inst.getStart_device_code()); |
|
|
|
Device next_device = deviceAppService.findDeviceByCode(inst.getNext_device_code()); |
|
|
|
int start_device_code = Integer.parseInt(start_device.getAddress()); |
|
|
@ -454,38 +504,45 @@ public class XgagvDeviceDriver extends AbstractOpcDeviceDriver implements Device |
|
|
|
JSONArray ja = new JSONArray(); |
|
|
|
JSONObject jo = new JSONObject(); |
|
|
|
jo.put("vehicle_code", inst.getVehicle_code()); |
|
|
|
jo.put("status", "3"); |
|
|
|
jo.put("device_code", this.device_code); |
|
|
|
jo.put("status", "4"); |
|
|
|
jo.put("device_code", inst.getNext_device_code()); |
|
|
|
jo.put("task_code", inst.getTask_code()); |
|
|
|
ja.add(jo); |
|
|
|
LuceneLogDto reqlogDto = LuceneLogDto.builder() |
|
|
|
.device_code(device_code) |
|
|
|
.content("请求参数:"+jo) |
|
|
|
.requestparam("请求参数:"+jo) |
|
|
|
.content("请求参数:" + jo) |
|
|
|
.requestparam("请求参数:" + jo) |
|
|
|
.method("feedAgvTaskStatus") |
|
|
|
.build(); |
|
|
|
luceneExecuteLogService.deviceExecuteLog(reqlogDto); |
|
|
|
HttpResponse resp = acsToWmsService.feedAgvTaskStatus(ja); |
|
|
|
LuceneLogDto resplogDto = LuceneLogDto.builder() |
|
|
|
.device_code(device_code) |
|
|
|
.content("返回参数:"+resp.body()) |
|
|
|
.responseparam("返回参数:"+resp.body()) |
|
|
|
.content("返回参数:" + resp.body()) |
|
|
|
.responseparam("返回参数:" + resp.body()) |
|
|
|
.method("feedAgvTaskStatus") |
|
|
|
.status_code(String.valueOf(resp.getStatus())) |
|
|
|
.build(); |
|
|
|
luceneExecuteLogService.deviceExecuteLog(resplogDto); |
|
|
|
if (resp.getStatus() ==200) { |
|
|
|
if (resp.getStatus() == 200) { |
|
|
|
// inst.setInstruction_status("1");
|
|
|
|
// inst.setExecute_status("4");
|
|
|
|
// instructionService.update(inst);
|
|
|
|
inst.setInstruction_status("1"); |
|
|
|
inst.setExecute_status("3"); |
|
|
|
inst.setExecute_status("4"); |
|
|
|
instructionService.update(inst); |
|
|
|
//结束任务
|
|
|
|
finish_instruction(inst); |
|
|
|
} else { |
|
|
|
|
|
|
|
} |
|
|
|
} else if (StrUtil.equals(type, "4")) { |
|
|
|
Device start_device = deviceAppService.findDeviceByCode(inst.getStart_device_code()); |
|
|
|
Device next_device = deviceAppService.findDeviceByCode(inst.getNext_device_code()); |
|
|
|
int start_device_code = Integer.parseInt(start_device.getAddress()); |
|
|
|
int next_device_code = Integer.parseInt(next_device.getAddress()); |
|
|
|
String start_addr = start_device.getExtraValue().get("address").toString(); |
|
|
|
String next_addr = next_device.getExtraValue().get("address").toString(); |
|
|
|
String line_code = next_addr + start_addr; |
|
|
|
int to_line_code = Integer.parseInt(line_code); |
|
|
|
JSONArray ja = new JSONArray(); |
|
|
|
JSONObject jo = new JSONObject(); |
|
|
|
jo.put("vehicle_code", inst.getVehicle_code()); |
|
|
@ -495,22 +552,23 @@ public class XgagvDeviceDriver extends AbstractOpcDeviceDriver implements Device |
|
|
|
ja.add(jo); |
|
|
|
LuceneLogDto reqlogDto = LuceneLogDto.builder() |
|
|
|
.device_code(device_code) |
|
|
|
.content("请求参数:"+jo) |
|
|
|
.requestparam("请求参数:"+jo) |
|
|
|
.content("请求参数:" + jo) |
|
|
|
.requestparam("请求参数:" + jo) |
|
|
|
.method("feedAgvTaskStatus") |
|
|
|
.build(); |
|
|
|
luceneExecuteLogService.deviceExecuteLog(reqlogDto); |
|
|
|
HttpResponse resp = acsToWmsService.feedAgvTaskStatus(ja); |
|
|
|
LuceneLogDto resplogDto = LuceneLogDto.builder() |
|
|
|
.device_code(device_code) |
|
|
|
.content("返回参数:"+resp.body()) |
|
|
|
.responseparam("返回参数:"+resp.body()) |
|
|
|
.content("返回参数:" + resp.body()) |
|
|
|
.responseparam("返回参数:" + resp.body()) |
|
|
|
.method("feedAgvTaskStatus") |
|
|
|
.status_code(String.valueOf(resp.getStatus())) |
|
|
|
.build(); |
|
|
|
luceneExecuteLogService.deviceExecuteLog(resplogDto); |
|
|
|
if (resp.getStatus() ==200) { |
|
|
|
writing("to_line", 2); |
|
|
|
if (resp.getStatus() == 200) { |
|
|
|
writing("to_locate_correct", 1); |
|
|
|
writing("to_line", to_line_code); |
|
|
|
inst.setInstruction_status("2"); |
|
|
|
inst.setExecute_status("4"); |
|
|
|
instructionService.finish(inst); |
|
|
@ -525,27 +583,26 @@ public class XgagvDeviceDriver extends AbstractOpcDeviceDriver implements Device |
|
|
|
ja.add(jo); |
|
|
|
LuceneLogDto reqlogDto = LuceneLogDto.builder() |
|
|
|
.device_code(device_code) |
|
|
|
.content("请求参数:"+jo) |
|
|
|
.requestparam("请求参数:"+jo) |
|
|
|
.content("请求参数:" + jo) |
|
|
|
.requestparam("请求参数:" + jo) |
|
|
|
.method("feedAgvTaskStatus") |
|
|
|
.build(); |
|
|
|
luceneExecuteLogService.deviceExecuteLog(reqlogDto); |
|
|
|
HttpResponse resp = acsToWmsService.feedAgvTaskStatus(ja); |
|
|
|
LuceneLogDto resplogDto = LuceneLogDto.builder() |
|
|
|
.device_code(device_code) |
|
|
|
.content("返回参数:"+resp.body()) |
|
|
|
.responseparam("返回参数:"+resp.body()) |
|
|
|
.content("返回参数:" + resp.body()) |
|
|
|
.responseparam("返回参数:" + resp.body()) |
|
|
|
.method("feedAgvTaskStatus") |
|
|
|
.status_code(String.valueOf(resp.getStatus())) |
|
|
|
.build(); |
|
|
|
luceneExecuteLogService.deviceExecuteLog(resplogDto); |
|
|
|
if (resp.getStatus() == 200) { |
|
|
|
writing("to_di_low", 0); |
|
|
|
writing("to_di_height", 0); |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
} |
|
|
|
} else if (StrUtil.equals(type, "6")) { |
|
|
|
} else if (StrUtil.equals(type, "6")) { |
|
|
|
JSONArray ja = new JSONArray(); |
|
|
|
JSONObject jo = new JSONObject(); |
|
|
|
jo.put("status", "6"); |
|
|
@ -558,15 +615,18 @@ public class XgagvDeviceDriver extends AbstractOpcDeviceDriver implements Device |
|
|
|
} else { |
|
|
|
|
|
|
|
} |
|
|
|
} else if (StrUtil.equals(type, "7")) { |
|
|
|
} else if (StrUtil.equals(type, "7")) { |
|
|
|
JSONArray ja = new JSONArray(); |
|
|
|
JSONObject jo = new JSONObject(); |
|
|
|
jo.put("status", "7"); |
|
|
|
jo.put("device_code", this.device_code); |
|
|
|
jo.put("device_code", "CP5"); |
|
|
|
jo.put("vehicle_code", ""); |
|
|
|
jo.put("task_code", ""); |
|
|
|
ja.add(jo); |
|
|
|
HttpResponse resp = acsToWmsService.feedAgvTaskStatus(ja); |
|
|
|
if (resp.getStatus() == 200) { |
|
|
|
writing("to_di_low", 0); |
|
|
|
writing("to_address", 5); |
|
|
|
this.flag = 3; |
|
|
|
} else { |
|
|
|
|
|
|
|
} |
|
|
@ -575,6 +635,11 @@ public class XgagvDeviceDriver extends AbstractOpcDeviceDriver implements Device |
|
|
|
return true; |
|
|
|
} |
|
|
|
|
|
|
|
public synchronized boolean finish_instruction(Instruction inst) throws Exception { |
|
|
|
instructionService.finish(inst); |
|
|
|
return true; |
|
|
|
} |
|
|
|
|
|
|
|
public boolean feedAgvAction(String type) throws Exception { |
|
|
|
Date date = new Date(); |
|
|
|
if (date.getTime() - this.instruction_require_time.getTime() < (long) this.instruction_require_time_out) { |
|
|
@ -585,55 +650,58 @@ public class XgagvDeviceDriver extends AbstractOpcDeviceDriver implements Device |
|
|
|
JSONArray ja = new JSONArray(); |
|
|
|
JSONObject jo = new JSONObject(); |
|
|
|
jo.put("status", "5"); |
|
|
|
jo.put("device_code", "A4"); |
|
|
|
jo.put("device_code", "AD4"); |
|
|
|
jo.put("vehicle_code", ""); |
|
|
|
jo.put("task_code", ""); |
|
|
|
ja.add(jo); |
|
|
|
LuceneLogDto reqlogDto = LuceneLogDto.builder() |
|
|
|
.device_code(device_code) |
|
|
|
.content("请求参数:"+jo) |
|
|
|
.requestparam("请求参数:"+jo) |
|
|
|
.content("请求参数:" + jo) |
|
|
|
.requestparam("请求参数:" + jo) |
|
|
|
.method("feedAgvTaskStatus") |
|
|
|
.build(); |
|
|
|
luceneExecuteLogService.deviceExecuteLog(reqlogDto); |
|
|
|
HttpResponse resp = acsToWmsService.feedAgvTaskStatus(ja); |
|
|
|
LuceneLogDto resplogDto = LuceneLogDto.builder() |
|
|
|
.device_code(device_code) |
|
|
|
.content("返回参数:"+resp.body()) |
|
|
|
.responseparam("返回参数:"+resp.body()) |
|
|
|
.content("返回参数:" + resp.body()) |
|
|
|
.responseparam("返回参数:" + resp.body()) |
|
|
|
.method("feedAgvTaskStatus") |
|
|
|
.status_code(String.valueOf(resp.getStatus())) |
|
|
|
.build(); |
|
|
|
luceneExecuteLogService.deviceExecuteLog(resplogDto); if (resp.getStatus() == 200) { |
|
|
|
writing("to_di_low", 0); |
|
|
|
luceneExecuteLogService.deviceExecuteLog(resplogDto); |
|
|
|
if (resp.getStatus() == 200) { |
|
|
|
writing("to_di_height", 0); |
|
|
|
} else { |
|
|
|
writing("to_di_low", 0); |
|
|
|
writing("to_di_height", 0); |
|
|
|
|
|
|
|
} |
|
|
|
} else if (StrUtil.equals(type, "6")) { |
|
|
|
} else if (StrUtil.equals(type, "6")) { |
|
|
|
JSONArray ja = new JSONArray(); |
|
|
|
JSONObject jo = new JSONObject(); |
|
|
|
jo.put("status", "6"); |
|
|
|
jo.put("device_code", "A4"); |
|
|
|
jo.put("device_code", "AD4"); |
|
|
|
jo.put("vehicle_code", ""); |
|
|
|
jo.put("task_code", ""); |
|
|
|
ja.add(jo); |
|
|
|
HttpResponse resp = acsToWmsService.feedAgvTaskStatus(ja); |
|
|
|
if (resp.getStatus() == 200) { |
|
|
|
writing("to_di_height", 0); |
|
|
|
writing("to_di_low", 0); |
|
|
|
} else { |
|
|
|
writing("to_di_height", 0); |
|
|
|
writing("to_di_low", 0); |
|
|
|
|
|
|
|
} |
|
|
|
} else if (StrUtil.equals(type, "7")) { |
|
|
|
} else if (StrUtil.equals(type, "7")) { |
|
|
|
JSONArray ja = new JSONArray(); |
|
|
|
JSONObject jo = new JSONObject(); |
|
|
|
jo.put("status", "7"); |
|
|
|
jo.put("device_code", "A4"); |
|
|
|
jo.put("vehicle_code", ""); |
|
|
|
jo.put("task_code", ""); |
|
|
|
ja.add(jo); |
|
|
|
HttpResponse resp = acsToWmsService.feedAgvTaskStatus(ja); |
|
|
|
if (resp.getStatus() == 200) { |
|
|
|
writing("to_di_height", 0); |
|
|
|
} else { |
|
|
|
writing("to_di_height", 0); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|