add:自动门

This commit is contained in:
2024-12-12 09:00:16 +08:00
parent 151519821b
commit f69d595cfd
10 changed files with 649 additions and 192 deletions

View File

@@ -55,5 +55,19 @@ public class XianGongAgvController {
return new ResponseEntity<>(agvService.releaseBlockGroup(requestParam), HttpStatus.OK);
}
@PostMapping ("/controlDoor")
@Log("请求开/关自动门")
@ApiOperation("请求开/关自动门")
public ResponseEntity<JSONObject> controlDoor(@RequestBody JSONObject requestParam) {
return new ResponseEntity<>(agvService.controlDoor(requestParam), HttpStatus.OK);
}
@PostMapping ("/doorStateList")
@Log("查询自动门状态")
@ApiOperation("查询自动门状态")
public ResponseEntity<JSONObject> doorStateList(@RequestBody JSONObject requestParam) {
return new ResponseEntity<>(agvService.doorStateList(requestParam), HttpStatus.OK);
}
}

View File

@@ -174,4 +174,36 @@ public interface XianGongAgvService {
*/
public <T> UnifiedResponse<T> sendOrderStopToXZ(JSONObject requestParam);
/**
* 请求开/关自动门
* @param requestParam {
* doorName: 自动门id,
* state: 0-关门1-开门
* }
* @return JSONObject{
* result:0-成功,
* message: 操作成功
* }
*/
public JSONObject controlDoor(JSONObject requestParam);
/**
* 查询门状态
* @param requestParam: {
* doorNameList:["自动门id"]
* }
* @return JSONObject: {
* result: 0
* message: 操作成功
* data : [
* {
* doorName: 设备id
* state: 门状态2-门完全打开 3-门正在打开中
* msg: 状态异常时提示
* timestamp时间戳
* }
* ]
* }
*/
public JSONObject doorStateList(JSONObject requestParam);
}

View File

@@ -14,6 +14,7 @@ import org.nl.acs.agv.server.AgvWaitUtil;
import org.nl.acs.agv.server.XianGongAgvService;
import org.nl.acs.agv.server.dto.AgvDto;
import org.nl.acs.config.AcsConfig;
import org.nl.acs.device_driver.basedriver.standard_autodoor.StandardAutodoorDeviceDriver;
import org.nl.acs.device_driver.basedriver.standard_conveyor_control.StandardCoveyorControlDeviceDriver;
import org.nl.acs.device_driver.basedriver.standard_storage.StandardStorageDeviceDriver;
import org.nl.acs.device_driver.lamp_three_color.LampThreecolorDeviceDriver;
@@ -984,6 +985,95 @@ public class XianGongAgvServiceImpl implements XianGongAgvService {
return xgHttpUtil.sendPostRequest(path, json);
}
@Override
public JSONObject controlDoor(JSONObject requestParam) {
log.info("仙工AGV请求开/关自动门,请求参数 - {}", requestParam);
JSONObject result = new JSONObject();
String doorName = requestParam.getString("doorName");
Device device = deviceAppService.findDeviceByCode(doorName);
if (ObjectUtil.isEmpty(device)) {
throw new BadRequestException("设备号 " + doorName + " 不存在!");
}
// 0-关门1-开门
String state = requestParam.getString("state");
StandardAutodoorDeviceDriver driver = (StandardAutodoorDeviceDriver) device.getDeviceDriver();
if (state.equals("1")) {
// 给自动门写开门
String[] key = {"toOpen"};
Integer[] value = {1};
driver.writing(Arrays.asList(key),Arrays.asList(value));
// 判断是否在打开
if (driver.getToOpen() == 1) {
result.put("result", 0);
result.put("message", "操作成功");
} else {
result.put("result", -1);
result.put("message", "操作失败:电气信号未改变!");
}
} else if (state.equals("0")) {
// 给自动门写关门
String[] key = {"toClose"};
Integer[] value = {1};
driver.writing(Arrays.asList(key),Arrays.asList(value));
// 判断是否在打开
if (driver.getToClose() == 1) {
result.put("result", 0);
result.put("message", "操作成功");
} else {
result.put("result", -1);
result.put("message", "操作失败:电气信号未改变!");
}
} else {
result.put("result", -1);
result.put("message", "操作失败:下发参数有误!");
}
log.info("仙工AGV请求开/关自动门,返回参数 - {}", result);
return result;
}
@Override
public JSONObject doorStateList(JSONObject requestParam) {
log.info("仙工AGV查询门状态请求参数 - {}", requestParam);
JSONObject result = new JSONObject();
String[] doorNameLists = requestParam.getJSONArray("doorNameList").getString(0).split(",");
JSONArray data = new JSONArray();
for (String name : doorNameLists) {
JSONObject jsonDevice = new JSONObject();
jsonDevice.put("doorName", name);
jsonDevice.put("msg", "");
jsonDevice.put("timestamp", "");
// 查询设备
Device device = deviceAppService.findDeviceByCode(name);
if (ObjectUtil.isEmpty(device)) {
throw new BadRequestException("设备号 " + name + " 不存在!");
}
// 查询驱动判断状态
StandardAutodoorDeviceDriver driver = (StandardAutodoorDeviceDriver) device.getDeviceDriver();
// 判断门是否完全打开
if (driver.getOpen() == 1 && driver.getClose() == 0 && driver.getToOpen() == 0 && driver.getToClose() == 0) {
jsonDevice.put("state", "2");
} else {
jsonDevice.put("state", "3");
}
data.add(jsonDevice);
}
result.put("result", 0);
result.put("message", "操作成功!");
result.put("data", data);
log.info("仙工AGV查询门状态返回参数 - {}", result);
return result;
}
/**
* 叉车运单动作块
*

View File

@@ -16,7 +16,8 @@ public enum DriverTypeEnum {
RGV_DEVICE_DRIVER(5, "rgv_station", "RGV", "rgv"),
ELEVATOR_DRIVER(6, "standard_elevator", "电梯", "elevator"),
CONVEYOR_CONTROL(7, "standard_conveyor_control", "标准版-输送线", "conveyor"),
CONVEYOR_COLOR(8, "lamp_three_color", "标准版-三色灯", "color");
CONVEYOR_COLOR(8, "lamp_three_color", "标准版-三色灯", "color"),
CONVEYOR_AUTODOOR(9, "standard_autodoor", "标准版-自动门", "autodoor");
//驱动索引
private int index;
//驱动编码

View File

@@ -1,72 +1,58 @@
package org.nl.acs.device_driver.basedriver.standard_autodoor;
import lombok.extern.slf4j.Slf4j;
import org.nl.acs.device.device_driver.standard_inspect.ItemDTO;
import org.nl.acs.device_driver.DeviceDriverBaseReader;
import java.util.ArrayList;
import java.util.List;
@Slf4j
public class ItemProtocol {
public static String item_heartbeat = "heartbeat";
public static String item_mode = "mode";
public static String item_action = "action";
public static String item_error = "error";
public static String item_to_command = "to_command";
public enum ItemProtocol implements DeviceDriverBaseReader.KeyProvider {
OPEN("open", "打开到位", "DB600.B0"),
CLOSE("close", "关闭到位", "DB600.B1"),
TO_OPEN("toOpen", "下发打开", "DB601.W1"),
TO_CLOSE("toClose", "下发关闭", "DB601.W2");
private final String key;
private final String description;
private final String address;
private StandardAutodoorDeviceDriver driver;
public ItemProtocol(StandardAutodoorDeviceDriver driver) {
this.driver = driver;
ItemProtocol(String key, String description, String address) {
this.key = key;
this.description = description;
this.address = address;
}
public int getHeartbeat() {
return this.getOpcIntegerValue(item_heartbeat);
@Override
public String getKey() {
return this.key;
}
public int getMode() {
return this.getOpcIntegerValue(item_mode);
public String getDescription() {
return description;
}
public int getAction() {
return this.getOpcIntegerValue(item_action);
}
public int getError() {
return this.getOpcIntegerValue(item_error);
}
public int getToCommand() {
return this.getOpcIntegerValue(item_to_command);
}
public int getOpcIntegerValue(String protocol) {
Integer value = this.driver.getIntegeregerValue(protocol);
if (value == null) {
log.error("读取错误!");
} else {
return value;
}
return 0;
public String getAddress() {
return address;
}
public static List<ItemDTO> getReadableItemDtos() {
ArrayList list = new ArrayList();
list.add(new ItemDTO(item_heartbeat, "心跳", "DB51.B0"));
list.add(new ItemDTO(item_mode, "工作模式", "DB51.B1", Boolean.valueOf(true)));
list.add(new ItemDTO(item_action, "动作信号", "DB51.B2"));
list.add(new ItemDTO(item_error, "报警信号", "DB51.B4"));
List<ItemDTO> list = new ArrayList<>();
for (ItemProtocol prop : values()) {
if (!prop.getKey().startsWith("to")) {
list.add(new ItemDTO(prop.getKey(), prop.getDescription(), prop.getAddress()));
}
}
return list;
}
public static List<ItemDTO> getWriteableItemDtos() {
ArrayList list = new ArrayList();
list.add(new ItemDTO(item_to_command, "作业命令", "DB52.W2", Boolean.valueOf(true)));
List<ItemDTO> list = new ArrayList<>();
for (ItemProtocol prop : values()) {
if (prop.getKey().startsWith("to")) {
list.add(new ItemDTO(prop.getKey(), prop.getDescription(), prop.getAddress()));
}
}
return list;
}
}

View File

@@ -7,13 +7,9 @@ import org.nl.acs.opc.Device;
import org.nl.acs.opc.DeviceType;
import org.springframework.stereotype.Service;
import java.util.ArrayList;
import java.util.LinkedList;
import java.util.List;
/**
* 自动门驱动定义
*/
@Service
public class StandardAutodoorDefinition implements OpcDeviceDriverDefinition {
@Override
@@ -34,7 +30,6 @@ public class StandardAutodoorDefinition implements OpcDeviceDriverDefinition {
@Override
public DeviceDriver getDriverInstance(Device device) {
return (new StandardAutodoorDeviceDriver()).setDevice(device).setDriverDefinition(this);
}
@Override
@@ -51,21 +46,11 @@ public class StandardAutodoorDefinition implements OpcDeviceDriverDefinition {
@Override
public List<ItemDTO> getReadableItemDTOs() {
return getReadableItemDtos2();
}
public static List<ItemDTO> getReadableItemDtos2() {
List<ItemDTO> list = new ArrayList();
list.add(new ItemDTO(ItemProtocol.item_heartbeat, "心跳", "DB600.B0"));
list.add(new ItemDTO(ItemProtocol.item_mode, "工作模式", "DB600.B1", true));
list.add(new ItemDTO(ItemProtocol.item_action, "动作信号", "DB600.B2"));
list.add(new ItemDTO(ItemProtocol.item_error, "报警信号", "DB600.B4"));
return list;
return ItemProtocol.getReadableItemDtos();
}
@Override
public List<ItemDTO> getWriteableItemDTOs() {
return ItemProtocol.getWriteableItemDtos();
}
}

View File

@@ -2,164 +2,122 @@ package org.nl.acs.device_driver.basedriver.standard_autodoor;
import com.alibaba.fastjson.JSONObject;
import lombok.Getter;
import lombok.Setter;
import lombok.RequiredArgsConstructor;
import lombok.Setter;
import lombok.extern.slf4j.Slf4j;
import org.nl.acs.device.device_driver.standard_inspect.ReadUtil;
import org.nl.acs.device.service.DeviceService;
import org.nl.acs.device_driver.DeviceDriver;
import org.nl.acs.device_driver.DeviceDriverBaseReader;
import org.nl.acs.device_driver.RouteableDeviceDriver;
import org.nl.acs.device_driver.StandardRequestMethod;
import org.nl.acs.device_driver.driver.AbstractOpcDeviceDriver;
import org.nl.acs.device_driver.driver.ExecutableDeviceDriver;
import org.nl.acs.instruction.service.InstructionService;
import org.nl.acs.monitor.DeviceStageMonitor;
import org.nl.acs.opc.Device;
import org.nl.acs.route.service.RouteLineService;
import org.nl.acs.task.service.TaskService;
import org.nl.modules.lucene.service.LuceneExecuteLogService;
import org.nl.modules.lucene.service.dto.LuceneLogDto;
import org.nl.modules.wql.util.SpringContextHolder;
import org.openscada.opc.lib.da.Server;
import java.util.Date;
import java.util.HashMap;
import java.util.Map;
/**
* 自动门驱动
*/
@Slf4j
@Getter
@Setter
@RequiredArgsConstructor
public class StandardAutodoorDeviceDriver extends AbstractOpcDeviceDriver implements DeviceDriver, ExecutableDeviceDriver {
protected ItemProtocol itemProtocol = new ItemProtocol(this);
public class StandardAutodoorDeviceDriver extends AbstractOpcDeviceDriver implements
DeviceDriver,
ExecutableDeviceDriver,
RouteableDeviceDriver,
DeviceStageMonitor,
StandardRequestMethod,
DeviceDriverBaseReader {
InstructionService instructionService = SpringContextHolder.getBean("instructionServiceImpl");
private final LuceneExecuteLogService logService = SpringContextHolder.getBean(LuceneExecuteLogService.class);
DeviceService deviceservice = SpringContextHolder.getBean("deviceServiceImpl");
/**
* 读取
*/
private int open;
private int close;
/**
* 下发命令
*/
private int toOpen = 0;
private int toClose = 0;
/**
* 当前设备编号
*/
private String currentDeviceCode;
RouteLineService routelineserver = SpringContextHolder.getBean("routeLineServiceImpl");
/**
* 消息
*/
private String message;
TaskService taskserver = SpringContextHolder.getBean("taskServiceImpl");
String container;
String container_type_desc;
String last_container_type_desc;
String last_container;
//放货准备锁
String putReadyLock = null;
//有货标记
protected boolean has_goods_tag = false;
String devicecode;
int mode = 0;
int action = 0;
int error = 0;
Boolean iserror = false;
/**
* 请求标记
*/
boolean requireSuccess = false;
int move = 0;
int task = 0;
int last_action = 0;
int last_mode = 0;
int last_error = 0;
int last_move = 0;
int last_task = 0;
/**
* 请求时间
*/
private long requireTime = System.currentTimeMillis();
boolean hasVehicle = false;
boolean isReady = false;
protected int instruction_num = 0;
protected int instruction_num_truth = 0;
protected boolean hasGoods = false;
boolean isFold = false;
private String assemble_check_tag;
private Boolean sampleMode0;
private Boolean sampleMode3;
private Integer sampleError;
private Boolean sampleOnline;
protected String displayMessage = null;
public int display_message_time_out = 30000;
public Date display_message_time;
protected String current_stage_instruction_message;
protected String last_stage_instruction_message;
Integer heartbeat_tag;
private Date instruction_require_time = new Date();
private Date instruction_finished_time = new Date();
/**
* 请求间隔时间
*/
private long requireTimeOut = 3000L;
private int instruction_require_time_out;
boolean requireSucess = false;
private int instruction_finished_time_out;
int branchProtocol = 0;
/**
* 设备异常标记
*/
private boolean isError = false;
@Override
public Device getDevice() {
return this.device;
}
@Override
public <E extends Enum<E> & KeyProvider, T> T getOpcValue(E item, Class<T> fieldClassType) {
return (T) this.getValue(item.getKey());
}
@Override
public void setLog(String key, Object newValue, Object oldValue) {
logService.deviceExecuteLog(new LuceneLogDto(this.currentDeviceCode, "自动线程读取信号:" + key + ",由" + oldValue + "->" + newValue));
}
@Override
public void execute() {
String message = null;
String device_code = this.getDevice().getDevice_code();
mode = this.itemProtocol.getMode();
action = this.itemProtocol.getAction();
error = this.itemProtocol.getError();
if (mode != last_mode) {
}
if (action != last_action) {
}
if (error != last_error) {
//this.execute_log.setContainer("");
}
last_action = action;
last_mode = mode;
last_error = error;
//message = StringFormatUtl.format("设备报警:{}", new Object[]{});
// String manual_create_task = this.getDevice().getExtraValue().get("manual_create_task").toString();
this.currentDeviceCode = this.getDevice().getDevice_code();
this.loadAssignData(currentDeviceCode, ItemProtocol.class);
}
public synchronized String getStatus() {
@Override
public void executeLogic() {
if (!this.online) {
this.message = "设备离线";
} else {
this.isError = false;
this.message = "";
//编写业务逻辑方法
}
}
@Override
public JSONObject getDeviceStatusName() throws Exception {
JSONObject jo = new JSONObject();
if (action == 1) {
jo.put("name", this.getDevice().getDevice_code());
jo.put("status", "OPEN");
} else if (action == 2) {
jo.put("name", this.getDevice().getDevice_code());
jo.put("status", "CLOSE");
} else {
jo.put("name", this.getDevice().getDevice_code());
jo.put("status", "ERROR");
}
return jo.toString();
jo.put("device_code", this.currentDeviceCode);
jo.put("device_name", this.getDevice().getDevice_name());
jo.put("driver_type", "standard_autodoor");
jo.put("is_click", false);
jo.put("message", this.message);
jo.put("isOnline", this.online);
jo.put("isError", this.isError);
return jo;
}
public void writeing(int command) {
String to_command = this.getDevice().getOpc_server_code() + "." + this.getDevice().getOpc_plc_code() + "." + this.getDevice().getDevice_code()
+ "." + ItemProtocol.item_to_command;
String opcservcerid = this.getDevice().getOpc_server_id();
Server server = ReadUtil.getServer(opcservcerid);
Map<String, Object> itemMap = new HashMap<String, Object>();
itemMap.put(to_command, command);
ReadUtil.write(itemMap, server);
ReadUtil.write(itemMap, server);
server.disconnect();
log.info("下发PLC信号{},{}", to_command, command);
System.out.println("设备:" + devicecode + ",下发PLC信号" + to_command + ",value" + command);
}
public synchronized void OpenOrClose(String type) {
//开门
if ("1".equals(type)) {
writeing(1);
} else {
writeing(2);
}
@Override
public void setDeviceStatus(JSONObject data) {
}

View File

@@ -228,7 +228,7 @@ public class StageServiceImpl implements StageService {
jo.put("message", standardCoveyorControlDeviceDriver.getMessage());
} else if (device.getDeviceDriver() instanceof StandardAutodoorDeviceDriver) {
standardAutodoorDeviceDriver = (StandardAutodoorDeviceDriver) device.getDeviceDriver();
if (standardAutodoorDeviceDriver.getMode() == 0) {
/* if (standardAutodoorDeviceDriver.getMode() == 0) {
mode = "未联机";
} else if (standardAutodoorDeviceDriver.getMode() == 1) {
mode = "单机";
@@ -241,13 +241,13 @@ public class StageServiceImpl implements StageService {
action = "开到位";
} else if (standardAutodoorDeviceDriver.getAction() == 2) {
action = "关到位";
}
}*/
obj.put("device_name", standardAutodoorDeviceDriver.getDevice().getDevice_name());
jo.put("mode", mode);
jo.put("action", action);
jo.put("isOnline", true);
jo.put("error", standardAutodoorDeviceDriver.getError());
jo.put("isError", standardAutodoorDeviceDriver.getIserror());
// jo.put("error", standardAutodoorDeviceDriver.getError());
// jo.put("isError", standardAutodoorDeviceDriver.getIserror());
}
//检测站点
else if (device.getDeviceDriver() instanceof StandardInspectSiteDeviceDriver) {