|
|
@ -2,18 +2,15 @@ package com.nlteck.plc.customer.base; |
|
|
|
|
|
|
|
import com.nlteck.plc.common.util.CommonUtil; |
|
|
|
import com.nlteck.plc.common.util.GsonUtil; |
|
|
|
import com.nlteck.plc.customer.common.ATLPlcDefine; |
|
|
|
import com.nlteck.plc.common.util.LogUtil; |
|
|
|
import com.nlteck.plc.finsUdp.BytesUtil; |
|
|
|
import com.nlteck.plc.finsUdp.FinsUdpModel; |
|
|
|
import com.nlteck.plc.finsUdp.FinsUdpProtocol; |
|
|
|
import com.nlteck.plc.finsUdp.FinsUdpProtocol.DataArea; |
|
|
|
import com.nlteck.plc.finsUdp.UDPSocket; |
|
|
|
|
|
|
|
import com.nltecklib.utils.BaseUtil; |
|
|
|
import org.apache.log4j.Logger; |
|
|
|
|
|
|
|
import java.nio.ByteBuffer; |
|
|
|
import java.util.ArrayList; |
|
|
|
import java.util.List; |
|
|
|
|
|
|
|
import static com.nlteck.plc.customer.common.CommonConstant.LOG_BASE_PATH; |
|
|
@ -23,7 +20,7 @@ import static com.nlteck.plc.customer.common.CommonConstant.LOG_BASE_PATH; |
|
|
|
*/ |
|
|
|
public class BaseReadAndWriteUtilForUdpProtocol { |
|
|
|
|
|
|
|
private static Logger logger = Logger.getLogger(LOG_BASE_PATH + "BaseReadAndWriteUtil"); |
|
|
|
private static final Logger logger = LogUtil.getLogger(LOG_BASE_PATH + "BaseReadAndWriteUtil"); |
|
|
|
|
|
|
|
protected static boolean writeBoolValue(String address, boolean value, UDPSocket udpSocket) throws Exception { |
|
|
|
if (udpSocket == null) { |
|
|
@ -31,10 +28,10 @@ public class BaseReadAndWriteUtilForUdpProtocol { |
|
|
|
} |
|
|
|
|
|
|
|
// "W33.01"
|
|
|
|
boolean rst = false; |
|
|
|
String oriAdress = address; |
|
|
|
boolean rst; |
|
|
|
String oriAddress = address; |
|
|
|
DataArea area = DataArea.DW; |
|
|
|
int endIndex = oriAdress.indexOf("."); |
|
|
|
int endIndex = oriAddress.indexOf("."); |
|
|
|
int offset = 0; |
|
|
|
if (address.startsWith("D")) { |
|
|
|
|
|
|
@ -42,97 +39,107 @@ public class BaseReadAndWriteUtilForUdpProtocol { |
|
|
|
area = DataArea.WB; |
|
|
|
} |
|
|
|
if (endIndex < 0) { |
|
|
|
address = oriAdress.substring(1); |
|
|
|
address = oriAddress.substring(1); |
|
|
|
} else { |
|
|
|
address = oriAdress.substring(1, endIndex); |
|
|
|
offset = Integer.parseInt(oriAdress.substring(endIndex)); |
|
|
|
address = oriAddress.substring(1, endIndex); |
|
|
|
offset = Integer.parseInt(oriAddress.substring(endIndex)); |
|
|
|
} |
|
|
|
FinsUdpProtocol finsUdpProtocol = new FinsUdpProtocol(0, 222); |
|
|
|
// W200.05
|
|
|
|
FinsUdpModel.writeBit(udpSocket, finsUdpProtocol, area, Integer.parseInt(address), offset, value); |
|
|
|
|
|
|
|
logger.info("writeBoolValue - "+oriAdress + "写入值:" + value); |
|
|
|
logger.info("writeBoolValue - " + oriAddress + "写入值:" + value); |
|
|
|
rst = true; |
|
|
|
return rst; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
protected static boolean writeByteValue(String address, int value, UDPSocket udpSocket) throws Exception { |
|
|
|
protected static void writeByteValue(String address, int value, UDPSocket udpSocket) { |
|
|
|
if (udpSocket == null) { |
|
|
|
throw new RuntimeException("udpSocket对象不能为空,请检查!"); |
|
|
|
} |
|
|
|
|
|
|
|
// "W33.01"
|
|
|
|
boolean rst = false; |
|
|
|
String oriAdress = address; |
|
|
|
String oriAddress = address; |
|
|
|
DataArea area = DataArea.DW; |
|
|
|
int endIndex = oriAdress.indexOf("."); |
|
|
|
int offset = 0; |
|
|
|
if (address.startsWith("D")) { |
|
|
|
|
|
|
|
} else if (address.startsWith("W")) { |
|
|
|
int endIndex = oriAddress.indexOf("."); |
|
|
|
if (address.startsWith("W")) { |
|
|
|
area = DataArea.WB; |
|
|
|
} |
|
|
|
if (endIndex < 0) { |
|
|
|
address = oriAdress.substring(1); |
|
|
|
address = oriAddress.substring(1); |
|
|
|
} else { |
|
|
|
address = oriAdress.substring(1, endIndex); |
|
|
|
offset = Integer.parseInt(oriAdress.substring(endIndex)); |
|
|
|
address = oriAddress.substring(1, endIndex); |
|
|
|
} |
|
|
|
FinsUdpProtocol finsUdpProtocol = new FinsUdpProtocol(0, 192); |
|
|
|
|
|
|
|
int[] data = new int[]{value}; |
|
|
|
|
|
|
|
List<Byte> datas = finsUdpProtocol.writeEncode(FinsUdpModel.write(data, area, Integer.parseInt(address))); |
|
|
|
byte[] result = null; |
|
|
|
List<Byte> datum = finsUdpProtocol.writeEncode(FinsUdpModel.write(data, area, Integer.parseInt(address))); |
|
|
|
byte[] result; |
|
|
|
|
|
|
|
try { |
|
|
|
|
|
|
|
result = udpSocket.sendMsg(BytesUtil.convertArray(datas)); |
|
|
|
|
|
|
|
result = udpSocket.sendMsg(BytesUtil.convertArray(datum)); |
|
|
|
int wCode = finsUdpProtocol.decodeWrite(result).getWriteResult(); |
|
|
|
|
|
|
|
logger.info("设定压力读取int[],结果:" + wCode); |
|
|
|
logger.info("写入读取int[],结果:" + wCode); |
|
|
|
} catch (Exception e) { |
|
|
|
logger.info(CommonUtil.getThrowableException(e)); |
|
|
|
} |
|
|
|
|
|
|
|
logger.info("writeByteValue."+oriAdress + "写入值:" + value); |
|
|
|
rst = true; |
|
|
|
return rst; |
|
|
|
logger.info("writeByteValue." + oriAddress + "写入值:" + value); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// Function to read a single BIT value from the PLC
|
|
|
|
|
|
|
|
// Function to read a single BYTE value from the PLC
|
|
|
|
protected static byte readByteValue(String address, UDPSocket udpSocket) throws Exception { |
|
|
|
if (udpSocket == null) { |
|
|
|
throw new RuntimeException("udpSocket对象不能为空,请检查!"); |
|
|
|
} |
|
|
|
|
|
|
|
boolean rst = false; |
|
|
|
String oriAdress = address; |
|
|
|
String oriAddress = address; |
|
|
|
DataArea area = DataArea.DW; |
|
|
|
int endIndex = oriAdress.indexOf("."); |
|
|
|
int offset = 0; |
|
|
|
if (address.startsWith("D")) { |
|
|
|
|
|
|
|
} else if (address.startsWith("W")) { |
|
|
|
int endIndex = oriAddress.indexOf("."); |
|
|
|
if (address.startsWith("W")) { |
|
|
|
area = DataArea.WB; |
|
|
|
} |
|
|
|
if (endIndex < 0) { |
|
|
|
address = oriAdress.substring(1); |
|
|
|
address = oriAddress.substring(1); |
|
|
|
} else { |
|
|
|
address = oriAdress.substring(1, endIndex); |
|
|
|
offset = Integer.parseInt(oriAdress.substring(endIndex)); |
|
|
|
address = oriAddress.substring(1, endIndex); |
|
|
|
} |
|
|
|
FinsUdpProtocol finsUdpProtocol = new FinsUdpProtocol(0, 192); |
|
|
|
short info = (short) FinsUdpModel.read(udpSocket, finsUdpProtocol, area, Integer.parseInt(address)); |
|
|
|
logger.info("readByteValue.info:"+ GsonUtil.toJson(info)); |
|
|
|
logger.info("readByteValue.info:" + GsonUtil.toJson(info)); |
|
|
|
return (byte) info; |
|
|
|
} |
|
|
|
|
|
|
|
// Function to read a list of BYTE values from the PLC
|
|
|
|
protected static void writeBatchByteValue(String address, List<Integer> values, UDPSocket udpSocket) { |
|
|
|
if (udpSocket == null) { |
|
|
|
throw new RuntimeException("udpSocket对象不能为空,请检查!"); |
|
|
|
} |
|
|
|
String oriAddress = address; |
|
|
|
DataArea area = DataArea.DW; |
|
|
|
int endIndex = oriAddress.indexOf("."); |
|
|
|
if (address.startsWith("W")) { |
|
|
|
area = DataArea.WB; |
|
|
|
} |
|
|
|
if (endIndex < 0) { |
|
|
|
address = oriAddress.substring(1); |
|
|
|
} else { |
|
|
|
address = oriAddress.substring(1, endIndex); |
|
|
|
} |
|
|
|
FinsUdpProtocol finsUdpProtocol = new FinsUdpProtocol(0, 192); |
|
|
|
|
|
|
|
int[] data = values.stream().mapToInt(Integer::intValue).toArray(); |
|
|
|
|
|
|
|
List<Byte> datum = finsUdpProtocol.writeEncode(FinsUdpModel.write(data, area, Integer.parseInt(address))); |
|
|
|
byte[] result; |
|
|
|
|
|
|
|
try { |
|
|
|
result = udpSocket.sendMsg(BytesUtil.convertArray(datum)); |
|
|
|
int wCode = finsUdpProtocol.decodeWrite(result).getWriteResult(); |
|
|
|
|
|
|
|
logger.info("写入读取int[],结果:" + wCode); |
|
|
|
} catch (Exception e) { |
|
|
|
logger.info(CommonUtil.getThrowableException(e)); |
|
|
|
} |
|
|
|
|
|
|
|
logger.info("writeByteValue." + oriAddress + "写入值:" + values); |
|
|
|
} |
|
|
|
} |
|
|
|