|
|
@ -12,6 +12,8 @@ import net.sf.json.JSONObject; |
|
|
|
import org.nl.acs.agv.server.AgvService; |
|
|
|
import org.nl.acs.agv.server.AgvWaitUtil; |
|
|
|
import org.nl.acs.agv.server.dto.AgvDto; |
|
|
|
import org.nl.acs.angle.service.AcsPointAngleService; |
|
|
|
import org.nl.acs.angle.service.dto.AcsPointAngleDto; |
|
|
|
import org.nl.acs.config.AcsConfig; |
|
|
|
import org.nl.acs.config.server.AcsConfigService; |
|
|
|
import org.nl.acs.device.service.DeviceService; |
|
|
@ -47,10 +49,14 @@ import org.nl.start.auto.run.NDCSocketConnectionAutoRun; |
|
|
|
import org.nl.utils.SpringContextHolder; |
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
import org.springframework.beans.factory.annotation.Value; |
|
|
|
import org.springframework.context.annotation.Lazy; |
|
|
|
import org.springframework.http.HttpStatus; |
|
|
|
import org.springframework.stereotype.Service; |
|
|
|
|
|
|
|
import java.math.BigDecimal; |
|
|
|
import java.math.RoundingMode; |
|
|
|
import java.text.DateFormat; |
|
|
|
import java.text.DecimalFormat; |
|
|
|
import java.text.SimpleDateFormat; |
|
|
|
import java.util.*; |
|
|
|
import java.util.function.Function; |
|
|
@ -62,10 +68,13 @@ import java.util.stream.Stream; |
|
|
|
@RequiredArgsConstructor |
|
|
|
public class AgvServiceImpl implements AgvService { |
|
|
|
|
|
|
|
|
|
|
|
protected BusinessLogger execute_log; |
|
|
|
|
|
|
|
@Autowired |
|
|
|
DeviceAppService deviceAppService; |
|
|
|
|
|
|
|
@Lazy |
|
|
|
@Autowired |
|
|
|
TaskService taskService; |
|
|
|
@Autowired |
|
|
@ -78,6 +87,8 @@ public class AgvServiceImpl implements AgvService { |
|
|
|
AcsToWmsService acsToWmsService; |
|
|
|
@Autowired |
|
|
|
DeviceService deviceService; |
|
|
|
@Autowired |
|
|
|
private static AcsPointAngleService acsPointAngleService; |
|
|
|
|
|
|
|
private final LogServer logServer; |
|
|
|
|
|
|
@ -220,7 +231,7 @@ public class AgvServiceImpl implements AgvService { |
|
|
|
* demo:destination("cz14", "JackUnload", "3", "") |
|
|
|
* @return |
|
|
|
*/ |
|
|
|
public static JSONObject destination2(String locationName, String operation, String propertiesType, String pro) { |
|
|
|
public static JSONObject destination2(String locationName, String operation, String propertiesType, String pro,Instruction dto) { |
|
|
|
//新增业务订单
|
|
|
|
JSONObject destinationOrder = new JSONObject(); |
|
|
|
//目标工作站
|
|
|
@ -235,10 +246,16 @@ public class AgvServiceImpl implements AgvService { |
|
|
|
properties.add(pro2); |
|
|
|
destinationOrder.put("properties", properties); |
|
|
|
} else if (propertiesType.equals("2")) {//Spin转动
|
|
|
|
AcsPointAngleDto acsPointAngleDto = new AcsPointAngleDto(); |
|
|
|
acsPointAngleDto = getAcsPointAngleDto(dto); |
|
|
|
if (ObjectUtil.isEmpty(acsPointAngleDto)){ |
|
|
|
throw new RuntimeException("沒有找到内容,无法下发"); |
|
|
|
} |
|
|
|
BigDecimal next_point_angle = acsPointAngleDto.getNext_point_angle(); |
|
|
|
JSONArray properties = new JSONArray(); |
|
|
|
JSONObject pro1 = new JSONObject(); |
|
|
|
pro1.put("key", "global_spin_angle");//坐标系类型,global_spin_angle为全局坐标系
|
|
|
|
pro1.put("value", pro);//弧度值,如3.14
|
|
|
|
pro1.put("value", next_point_angle);//弧度值,如3.14
|
|
|
|
properties.add(pro1); |
|
|
|
JSONObject pro2 = new JSONObject(); |
|
|
|
pro2.put("key", "spin_direction");//固定值
|
|
|
@ -272,6 +289,21 @@ public class AgvServiceImpl implements AgvService { |
|
|
|
return destinationOrder; |
|
|
|
} |
|
|
|
|
|
|
|
private static AcsPointAngleDto getAcsPointAngleDto(Instruction dto) { |
|
|
|
List<AcsPointAngleDto> list = acsPointAngleService.queryAll(new HashMap()); |
|
|
|
AcsPointAngleDto acsPointAngleDto = new AcsPointAngleDto(); |
|
|
|
for (int i = 0; i < list.size(); i++) { |
|
|
|
acsPointAngleDto = list.get(i); |
|
|
|
String start_device_code = acsPointAngleDto.getStart_device_code(); |
|
|
|
String next_device_code = acsPointAngleDto.getNext_device_code(); |
|
|
|
String is_active = acsPointAngleDto.getIs_active(); |
|
|
|
if (!(dto.getStart_device_code().equals(start_device_code) && dto.getNext_device_code().equals(next_device_code) && is_active == "1")) { |
|
|
|
break; |
|
|
|
} |
|
|
|
} |
|
|
|
return acsPointAngleDto; |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public HttpResponse sendAgvInstToMagic(Instruction inst) throws Exception { |
|
|
|
JSONArray ja = new JSONArray(); |
|
|
@ -539,14 +571,16 @@ public class AgvServiceImpl implements AgvService { |
|
|
|
String positionAngle = jo.getString("positionAngle"); |
|
|
|
String positionX = jo.getString("positionX"); |
|
|
|
String positionY = jo.getString("positionY"); |
|
|
|
String current_map = jo.getString("current_map"); |
|
|
|
AgvDto dto = new AgvDto(); |
|
|
|
dto.setName(name); |
|
|
|
dto.setEnergyLevel(energyLevel); |
|
|
|
dto.setState(state); |
|
|
|
dto.setPositionAngle(positionAngle); |
|
|
|
dto.setPositionX(positionX); |
|
|
|
dto.setPositionY(positionY); |
|
|
|
// dto.setPositionAngle(positionAngle);
|
|
|
|
// dto.setPositionX(positionX);
|
|
|
|
// dto.setPositionY(positionY);
|
|
|
|
dto.setTransportOrder(transportOrder); |
|
|
|
dto.setCurrent_map(current_map); |
|
|
|
|
|
|
|
if (AGVDeviceStatus.containsKey(name)) { |
|
|
|
AGVDeviceStatus.remove(name); |
|
|
@ -599,52 +633,61 @@ public class AgvServiceImpl implements AgvService { |
|
|
|
@Override |
|
|
|
public HttpResponse queryXZAgvDeviceStatus() { |
|
|
|
|
|
|
|
if (StrUtil.equals(acsConfigService.findConfigFromCache().get(AcsConfig.FORKAGV).toString(), "1")) { |
|
|
|
String agvurl = acsConfigService.findConfigFromCache().get(AcsConfig.AGVURL); |
|
|
|
String agvport = acsConfigService.findConfigFromCache().get(AcsConfig.AGVPORT); |
|
|
|
|
|
|
|
if (StrUtil.equals(acsConfigService.findByCode(AcsConfig.FORKAGV).getValue().toString(), "1")) { |
|
|
|
String agvurl = acsConfigService.findByCode(AcsConfig.AGVURL).getValue(); |
|
|
|
String agvport = acsConfigService.findByCode(AcsConfig.AGVPORT).getValue(); |
|
|
|
|
|
|
|
String agvurl1 = agvurl + ":" + agvport + "/api/route/vehicles"; |
|
|
|
String agvurl2 = agvurl + ":" + agvport + "/api/route/vehicleDetails"; |
|
|
|
agvurl = agvurl + ":" + agvport + "/robotsStatus"; |
|
|
|
|
|
|
|
HttpResponse result = HttpRequest.get(agvurl1) |
|
|
|
.timeout(20000)//超时,毫秒
|
|
|
|
.execute(); |
|
|
|
|
|
|
|
|
|
|
|
HttpResponse result2 = HttpRequest.get(agvurl2) |
|
|
|
HttpResponse result = HttpRequest.get(agvurl) |
|
|
|
.timeout(20000)//超时,毫秒
|
|
|
|
.execute(); |
|
|
|
|
|
|
|
System.out.println("查询agv状态数据:" + result.body()); |
|
|
|
if (result.getStatus() == 200) { |
|
|
|
com.alibaba.fastjson.JSONArray ja = (com.alibaba.fastjson.JSONArray) com.alibaba.fastjson.JSONArray.parse(result.body()); |
|
|
|
|
|
|
|
com.alibaba.fastjson.JSONObject body = com.alibaba.fastjson.JSONObject.parseObject(result.body()); |
|
|
|
com.alibaba.fastjson.JSONArray ja = body.getJSONArray("report"); |
|
|
|
for (int i = 0; i < ja.size(); i++) { |
|
|
|
com.alibaba.fastjson.JSONObject jo = (com.alibaba.fastjson.JSONObject) ja.get(i); |
|
|
|
String name = jo.getString("name"); |
|
|
|
String state = jo.getString("state"); |
|
|
|
String energyLevel = jo.getString("energyLevel"); |
|
|
|
String transportOrder = jo.getString("transportOrder"); |
|
|
|
com.alibaba.fastjson.JSONObject detailjo = (com.alibaba.fastjson.JSONObject) com.alibaba.fastjson.JSONObject.parse(result2.body()); |
|
|
|
com.alibaba.fastjson.JSONObject item = (com.alibaba.fastjson.JSONObject) detailjo.get(name); |
|
|
|
String x = item.getString("x"); |
|
|
|
String y = item.getString("y"); |
|
|
|
String angle = item.getString("angle"); |
|
|
|
com.alibaba.fastjson.JSONObject jo = ja.getJSONObject(i); |
|
|
|
//机器人编码
|
|
|
|
String agv_code = jo.getString("uuid"); |
|
|
|
//机器人详细状态信息
|
|
|
|
com.alibaba.fastjson.JSONObject rbk_report = jo.getJSONObject("rbk_report"); |
|
|
|
//是否正在充电
|
|
|
|
Boolean charging = rbk_report.getBoolean("charging"); |
|
|
|
//电池电量
|
|
|
|
float battery_level = rbk_report.getFloatValue("battery_level"); |
|
|
|
//当前地图
|
|
|
|
String current_map = rbk_report.getString("current_map"); |
|
|
|
//角度
|
|
|
|
float angle = rbk_report.getFloatValue("angle"); |
|
|
|
//执行运单信息
|
|
|
|
com.alibaba.fastjson.JSONObject current_order = jo.getJSONObject("current_order"); |
|
|
|
Integer connectionStatus = jo.getInteger("connection_status"); |
|
|
|
String inst_code = current_order.getString("id"); |
|
|
|
String taskNo= "0"; |
|
|
|
if (StrUtil.isNotEmpty(inst_code)) { |
|
|
|
Instruction inst = instructionService.findByCodeFromCache(inst_code); |
|
|
|
if (ObjectUtil.isNotEmpty(inst)) { |
|
|
|
//任务号
|
|
|
|
taskNo = inst.getTask_code(); |
|
|
|
} |
|
|
|
} |
|
|
|
//x坐标
|
|
|
|
float x = rbk_report.getFloatValue("x"); |
|
|
|
//y坐标
|
|
|
|
float y = rbk_report.getFloatValue("y"); |
|
|
|
AgvDto dto = new AgvDto(); |
|
|
|
dto.setName(name); |
|
|
|
dto.setEnergyLevel(energyLevel); |
|
|
|
dto.setState(state); |
|
|
|
dto.setTransportOrder(transportOrder); |
|
|
|
dto.setPositionAngle(angle); |
|
|
|
dto.setName(agv_code); |
|
|
|
dto.setCurrent_map(current_map); |
|
|
|
dto.setCharging(charging); |
|
|
|
dto.setBattery_level(battery_level); |
|
|
|
dto.setTransportOrder(taskNo); |
|
|
|
dto.setPositionX(x); |
|
|
|
dto.setPositionY(y); |
|
|
|
if (AGVDeviceStatus.containsKey(name)) { |
|
|
|
AGVDeviceStatus.remove(name); |
|
|
|
AGVDeviceStatus.put(name, dto); |
|
|
|
} else { |
|
|
|
AGVDeviceStatus.put(name, dto); |
|
|
|
} |
|
|
|
dto.setPositionAngle(angle); |
|
|
|
dto.setConnection_status(connectionStatus); |
|
|
|
AGVDeviceStatus.put(agv_code, dto); |
|
|
|
} |
|
|
|
} |
|
|
|
return result; |
|
|
@ -1773,18 +1816,18 @@ public class AgvServiceImpl implements AgvService { |
|
|
|
MachinesSiteDeviceDriver machinesSiteDeviceDriver; |
|
|
|
if (device.getDeviceDriver() instanceof MachinesSiteDeviceDriver) { |
|
|
|
ja.add(destination2(device_code + "IN", "Wait", "1", device_code + "IN" |
|
|
|
+ "-" + inst_code + "-" + "01")); |
|
|
|
+ "-" + inst_code + "-" + "01",inst)); |
|
|
|
ja.add(destination2(device_code, "Wait", "1", device_code |
|
|
|
+ "-" + inst_code + "-" + "01")); |
|
|
|
+ "-" + inst_code + "-" + "01",inst)); |
|
|
|
ja.add(destination2(device_code + "OUT", "Wait", "1", device_code + "OUT" |
|
|
|
+ "-" + inst_code + "-" + "01")); |
|
|
|
+ "-" + inst_code + "-" + "01",inst)); |
|
|
|
|
|
|
|
} else { |
|
|
|
ja.add(destination2(device_code, "Wait", "1", device_code + "-" + inst_code + "-" + "01")); |
|
|
|
ja.add(destination2(device_code, "Wait", "1", device_code + "-" + inst_code + "-" + "01",inst)); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
ja.add(destination2(inst.getNext_point_code(), "Wait", "1", inst.getNext_point_code() + "-" + inst_code + "-" + "01")); |
|
|
|
ja.add(destination2(inst.getNext_point_code(), "Wait", "1", inst.getNext_point_code() + "-" + inst_code + "-" + "01",inst)); |
|
|
|
|
|
|
|
} else { |
|
|
|
String startAddress = inst.getStart_device_code(); |
|
|
@ -1795,25 +1838,25 @@ public class AgvServiceImpl implements AgvService { |
|
|
|
MachinesSiteDeviceDriver machinesSiteDeviceDriver; |
|
|
|
if (device.getDeviceDriver() instanceof MachinesSiteDeviceDriver) { |
|
|
|
ja.add(destination2(startAddress, "Wait", "5", startAddress |
|
|
|
+ "-" + inst_code + "-" + "01")); |
|
|
|
+ "-" + inst_code + "-" + "01",inst)); |
|
|
|
ja.add(destination2(nextAddress + "IN", "Wait", "1", nextAddress + "IN" |
|
|
|
+ "-" + inst_code + "-" + "01")); |
|
|
|
+ "-" + inst_code + "-" + "01",inst)); |
|
|
|
ja.add(destination2(nextAddress, "Wait", "1", nextAddress |
|
|
|
+ "-" + inst_code + "-" + "01")); |
|
|
|
+ "-" + inst_code + "-" + "01",inst)); |
|
|
|
ja.add(destination2(nextAddress + "OUT", "Wait", "1", nextAddress + "OUT" |
|
|
|
+ "-" + inst_code + "-" + "01")); |
|
|
|
+ "-" + inst_code + "-" + "01",inst)); |
|
|
|
} else { |
|
|
|
ja.add(destination2(startAddress, "Wait", "1", startAddress |
|
|
|
+ "-" + inst_code + "-" + "01")); |
|
|
|
+ "-" + inst_code + "-" + "01",inst)); |
|
|
|
ja.add(destination2(nextAddress, "Wait", "1", nextAddress |
|
|
|
+ "-" + inst_code + "-" + "01")); |
|
|
|
+ "-" + inst_code + "-" + "01",inst)); |
|
|
|
} |
|
|
|
|
|
|
|
} else { |
|
|
|
ja.add(destination2(startAddress, "Wait", "1", startAddress |
|
|
|
+ "-" + inst_code + "-" + "01")); |
|
|
|
+ "-" + inst_code + "-" + "01",inst)); |
|
|
|
ja.add(destination2(nextAddress, "Wait", "1", nextAddress |
|
|
|
+ "-" + inst_code + "-" + "01")); |
|
|
|
+ "-" + inst_code + "-" + "01",inst)); |
|
|
|
} |
|
|
|
} |
|
|
|
break; |
|
|
@ -1830,33 +1873,33 @@ public class AgvServiceImpl implements AgvService { |
|
|
|
if (ObjectUtil.equal(standardManipulatorInspectSiteDeviceDriver.getExtraValue().get("is_pickup_spin"), "true") && |
|
|
|
ObjectUtil.isNotEmpty(standardManipulatorInspectSiteDeviceDriver.getExtraValue().get("pickup_spin"))) { |
|
|
|
ja.add(destination2(startAddress + "IQ", "Spin", "2", |
|
|
|
standardManipulatorInspectSiteDeviceDriver.getExtraValue().get("pickup_spin").toString())); |
|
|
|
standardManipulatorInspectSiteDeviceDriver.getExtraValue().get("pickup_spin").toString(),inst)); |
|
|
|
} |
|
|
|
ja.add(destination2(startAddress + "IQ", "Wait", "1", startAddress + "IQ" |
|
|
|
+ "-" + inst_code + "-" + "07")); |
|
|
|
+ "-" + inst_code + "-" + "07",inst)); |
|
|
|
ja.add(destination2(startAddress + "IN", "Wait", "1", startAddress + "IN" |
|
|
|
+ "-" + inst_code + "-" + "01")); |
|
|
|
+ "-" + inst_code + "-" + "01",inst)); |
|
|
|
ja.add(destination2(startAddress, "JackLoad", "3", startAddress |
|
|
|
+ "-" + inst_code + "-" + "02")); |
|
|
|
+ "-" + inst_code + "-" + "02",inst)); |
|
|
|
ja.add(destination2(startAddress + "OUT", "Wait", "1", startAddress + "OUT" |
|
|
|
+ "-" + inst_code + "-" + "05")); |
|
|
|
+ "-" + inst_code + "-" + "05",inst)); |
|
|
|
ja.add(destination2(startAddress + "OQ", "Wait", "1", startAddress + "OQ" |
|
|
|
+ "-" + inst_code + "-" + "08")); |
|
|
|
+ "-" + inst_code + "-" + "08",inst)); |
|
|
|
|
|
|
|
} else if (startdevice.getDeviceDriver() instanceof StandardInspectSiteDeviceDriver) { |
|
|
|
|
|
|
|
ja.add(destination2(startAddress + "IN", "Wait", "1", startAddress + "IN" |
|
|
|
+ "-" + inst_code + "-" + "01")); |
|
|
|
+ "-" + inst_code + "-" + "01",inst)); |
|
|
|
ja.add(destination2(startAddress, "JackLoad", "3", startAddress |
|
|
|
+ "-" + inst_code + "-" + "02")); |
|
|
|
+ "-" + inst_code + "-" + "02",inst)); |
|
|
|
ja.add(destination2(startAddress + "OUT", "Wait", "1", startAddress + "OUT" |
|
|
|
+ "-" + inst_code + "-" + "05")); |
|
|
|
+ "-" + inst_code + "-" + "05",inst)); |
|
|
|
|
|
|
|
} else { |
|
|
|
ja.add(destination2(nextAddress, "Wait", "1", startAddress |
|
|
|
+ "-" + inst_code + "-" + "01")); |
|
|
|
+ "-" + inst_code + "-" + "01",inst)); |
|
|
|
ja.add(destination2(startAddress, "JackLoad", "3", startAddress |
|
|
|
+ "-" + inst_code + "-" + "01")); |
|
|
|
+ "-" + inst_code + "-" + "01",inst)); |
|
|
|
} |
|
|
|
|
|
|
|
//终点
|
|
|
@ -1865,31 +1908,31 @@ public class AgvServiceImpl implements AgvService { |
|
|
|
if (ObjectUtil.equal(standardManipulatorInspectSiteDeviceDriver.getExtraValue().get("is_release_spin"), "true") && |
|
|
|
ObjectUtil.isNotEmpty(standardManipulatorInspectSiteDeviceDriver.getExtraValue().get("release_spin"))) { |
|
|
|
ja.add(destination2(nextAddress + "IQ", "Spin", "2", |
|
|
|
standardManipulatorInspectSiteDeviceDriver.getExtraValue().get("release_spin").toString())); |
|
|
|
standardManipulatorInspectSiteDeviceDriver.getExtraValue().get("release_spin").toString(),inst)); |
|
|
|
} |
|
|
|
ja.add(destination2(nextAddress + "IQ", "Wait", "1", nextAddress + "IQ" |
|
|
|
+ "-" + inst_code + "-" + "07")); |
|
|
|
+ "-" + inst_code + "-" + "07",inst)); |
|
|
|
ja.add(destination2(nextAddress + "IN", "Wait", "1", nextAddress + "IN" |
|
|
|
+ "-" + inst_code + "-" + "03")); |
|
|
|
+ "-" + inst_code + "-" + "03",inst)); |
|
|
|
|
|
|
|
ja.add(destination2(nextAddress, "JackUnload", "3", nextAddress |
|
|
|
+ "-" + inst_code + "-" + "04")); |
|
|
|
+ "-" + inst_code + "-" + "04",inst)); |
|
|
|
ja.add(destination2(nextAddress + "OUT", "Wait", "1", nextAddress + "OUT" |
|
|
|
+ "-" + inst_code + "-" + "06")); |
|
|
|
+ "-" + inst_code + "-" + "06",inst)); |
|
|
|
ja.add(destination2(nextAddress + "OQ", "Wait", "1", nextAddress + "OQ" |
|
|
|
+ "-" + inst_code + "-" + "08")); |
|
|
|
+ "-" + inst_code + "-" + "08",inst)); |
|
|
|
} else if (nextdevice.getDeviceDriver() instanceof StandardInspectSiteDeviceDriver) { |
|
|
|
ja.add(destination2(nextAddress + "IN", "Wait", "1", nextAddress + "IN" |
|
|
|
+ "-" + inst_code + "-" + "03")); |
|
|
|
+ "-" + inst_code + "-" + "03",inst)); |
|
|
|
ja.add(destination2(nextAddress, "JackUnload", "3", nextAddress |
|
|
|
+ "-" + inst_code + "-" + "04")); |
|
|
|
+ "-" + inst_code + "-" + "04",inst)); |
|
|
|
ja.add(destination2(nextAddress + "OUT", "Wait", "1", nextAddress + "OUT" |
|
|
|
+ "-" + inst_code + "-" + "06")); |
|
|
|
+ "-" + inst_code + "-" + "06",inst)); |
|
|
|
} else { |
|
|
|
ja.add(destination2(nextAddress, "Wait", "1", nextAddress |
|
|
|
+ "-" + inst_code + "-" + "01")); |
|
|
|
+ "-" + inst_code + "-" + "01",inst)); |
|
|
|
ja.add(destination2(nextAddress, "JackUnload", "3", nextAddress |
|
|
|
+ "-" + inst_code + "-" + "01")); |
|
|
|
+ "-" + inst_code + "-" + "01",inst)); |
|
|
|
} |
|
|
|
break; |
|
|
|
} |
|
|
|