You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

256 lines
8.1 KiB

5 months ago
using HslCommunication;
using HslCommunication.Core;
6 months ago
using HslCommunication.ModBus;
using HybirdFrameworkCore.Utils;
using log4net;
namespace HybirdFrameworkDriver.ModbusTcpMaster;
6 months ago
public class ModbusTcpMaster
{
5 months ago
public delegate void MyReadAction(ModbusTcpMaster str);
private static readonly ILog Log = LogManager.GetLogger(typeof(ModbusTcpMaster));
5 months ago
private ModbusTcpNet ModbusTcpNet;
5 months ago
public string Ip { get; set; } = "127.0.0.1";
6 months ago
public int Port { get; set; } = 502;
public static DataFormat DataFormat { get; set; } = DataFormat.ABCD;
6 months ago
public int Duration { get; set; } = 1000;
5 months ago
public bool Connected { get; set; }
6 months ago
5 months ago
public string connectId { get; set; }
public MyReadAction? ReadAction { get; set; }
6 months ago
5 months ago
private bool StopFlag { get; set; }
6 months ago
5 months ago
private ILog GetLog()
{
return Log;
}
public bool Connect()
{
6 months ago
GetLog().Info($"begin to connect {Ip}:{Port}");
try
{
if (ModbusTcpNet == null)
{
ModbusTcpNet = new ModbusTcpNet(Ip, Port);
ModbusTcpNet.DataFormat = DataFormat;
5 months ago
var result = ModbusTcpNet.ConnectServer();
5 months ago
connectId = ModbusTcpNet.ConnectionId;
6 months ago
if (result.IsSuccess)
{
Connected = true;
GetLog().Info($"connect {Ip}:{Port} success");
StartListen();
}
else
{
GetLog().Info($"connect {Ip}:{Port} failed {result.Message}");
}
}
}
catch (Exception e)
{
GetLog().Error($"connect {Ip}:{Port} exception {e.Message}");
}
return Connected;
}
6 months ago
public void StartListen()
{
StopListen();
StopFlag = false;
5 months ago
var readThread = new Thread(ReadFunc)
6 months ago
{
IsBackground = true,
Name = $"{Ip}:{Port}-reader-thread"
};
readThread.Start();
}
public void StopListen()
{
StopFlag = true;
Thread.Sleep(500);
}
private void ReadFunc()
{
if (ReadAction != null)
while (!StopFlag)
try
{
5 months ago
ReadAction(this);
Thread.Sleep(Duration);
}
catch (Exception e)
{
Log.Error(e);
}
6 months ago
GetLog().Info("stop listen");
}
public byte[]? ReadRegister(int registerNo, int start, int length)
{
start = start % 16 == 0 ? start / 16 : start / 16 + 1;
length = length % 8 == 0 ? length / 8 : length / 8 + 1;
OperateResult<byte[]> result = ModbusTcpNet.Read("x=3;" + (registerNo + start), (ushort)length);
5 months ago
if (result.IsSuccess) return result.Content;
6 months ago
return null;
}
6 months ago
public byte[]? BatchRead(int registerNo, int length)
{
OperateResult<byte[]> result = ModbusTcpNet.Read("x=3;" + registerNo, (ushort)length);
5 months ago
if (result.IsSuccess) return result.Content;
6 months ago
return null;
}
6 months ago
public bool WriteValue<T>(ModbusProperty<T> property)
{
5 months ago
var value = property.Value;
6 months ago
if (value == null)
{
GetLog().Warn($"write property{property.RegisterNo} null value");
return false;
}
5 months ago
var result = false;
var dataType = property.Type;
var start = property.Start;
var length = property.Length;
var registerNo = property.RegisterNo - 40000;
var setValue = BitUtls.Value2Bytes(value, property.Scale, property.Offset);
OperateResult operateResult;
6 months ago
switch (dataType)
{
case ModbusDataType.Register:
if (setValue.Length < length * 2)
6 months ago
{
//byte 需要读取寄存器中的内容
if (typeof(T) == typeof(byte))
6 months ago
{
5 months ago
OperateResult<byte[]> readResultRegister = ModbusTcpNet.Read("x=3;" + registerNo, 1);
if (readResultRegister.IsSuccess)
{
switch (DataFormat)
{
case DataFormat.ABCD:
readResultRegister.Content[1] = setValue[0];
break;
case DataFormat.BADC:
readResultRegister.Content[0] = setValue[0];
break;
}
5 months ago
operateResult = ModbusTcpNet.Write("x=16;" + registerNo, readResultRegister.Content);
result = operateResult.IsSuccess;
}
6 months ago
}
//其他类型 String 占用几个寄存器 直接补0
else
{
5 months ago
var preWriteCont = new byte[length * 2];
6 months ago
switch (DataFormat)
{
case DataFormat.ABCD:
5 months ago
for (var i = 0; i < setValue.Length; i++)
if (i % 2 == 0)
preWriteCont[i + 1] = setValue[i];
else
preWriteCont[i - 1] = setValue[i];
5 months ago
break;
case DataFormat.BADC:
Array.Copy(setValue, preWriteCont, setValue.Length);
break;
}
5 months ago
5 months ago
operateResult = ModbusTcpNet.Write("x=16;" + registerNo, preWriteCont);
result = operateResult.IsSuccess;
}
6 months ago
}
else if (setValue.Length == length * 2)
{
5 months ago
var preWriteCont = new byte[setValue.Length];
6 months ago
switch (DataFormat)
{
case DataFormat.ABCD:
5 months ago
for (var i = 0; i < setValue.Length; i++)
if (i % 2 == 0)
preWriteCont[i + 1] = setValue[i];
else
preWriteCont[i - 1] = setValue[i];
5 months ago
break;
case DataFormat.BADC:
//Array.Copy(setValue, preWriteCont, setValue.Length);
break;
}
5 months ago
5 months ago
operateResult = ModbusTcpNet.Write("x=16;" + registerNo, preWriteCont);
result = operateResult.IsSuccess;
}
5 months ago
break;
case ModbusDataType.Bit:
result = WriteRegisterOneBit(registerNo, start, Convert.ToBoolean(value));
6 months ago
break;
}
5 months ago
6 months ago
return result;
}
5 months ago
/// <summary>
5 months ago
/// 写寄存器中的一个bit
/// </summary>
/// <param name="addr"></param>
/// <param name="location"></param>
/// <param name="boolResult"></param>
/// <returns></returns>
public bool WriteRegisterOneBit(int addr, int location, bool boolResult)
{
if (!Connected) return false;
5 months ago
var result = false;
ushort registerValue1 = 0x1234;
ushort mask = 0x1234;
5 months ago
OperateResult<byte[]> readResult = ModbusTcpNet.Read("x=3;" + addr, 1);
if (readResult.IsSuccess)
if (location >= 0 && location <= 15)
{
registerValue1 = ModbusTcpNet.ByteTransform.TransUInt16(readResult.Content, 0);
if (boolResult)
{
mask = (ushort)(1 << location);
registerValue1 |= mask;
}
else
{
5 months ago
mask = (ushort)~(1 << location);
registerValue1 &= mask;
}
5 months ago
5 months ago
var writeResult = ModbusTcpNet.Write("x=6;" + addr, registerValue1);
if (writeResult.IsSuccess) result = true;
}
5 months ago
return result;
}
}