2023-04-12 15:40:00 +00:00
|
|
|
|
using SimpleTCP;
|
|
|
|
|
using PluginInterface;
|
2022-08-06 10:21:00 +00:00
|
|
|
|
using Microsoft.Extensions.Logging;
|
2022-06-05 03:11:57 +00:00
|
|
|
|
|
2023-04-12 15:40:00 +00:00
|
|
|
|
namespace Mock.TcpClient
|
2022-06-05 03:11:57 +00:00
|
|
|
|
{
|
2023-04-12 15:40:00 +00:00
|
|
|
|
[DriverSupported("SimTcpClient")]
|
|
|
|
|
[DriverInfo("SimTcpClient", "V1.0.0", "Copyright iotgateway.net 20230220")]
|
|
|
|
|
public class DeviceTcpClient : IDriver
|
2022-06-05 03:11:57 +00:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// tcp客户端
|
|
|
|
|
/// </summary>
|
2022-08-10 08:53:59 +00:00
|
|
|
|
private SimpleTcpClient? _client;
|
|
|
|
|
|
2022-06-05 03:11:57 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// 缓存最新的服务器返回的原始数据
|
|
|
|
|
/// </summary>
|
2022-08-10 08:53:59 +00:00
|
|
|
|
private byte[]? _latestRcvData;
|
2022-08-06 10:21:00 +00:00
|
|
|
|
public ILogger _logger { get; set; }
|
2022-08-08 07:15:09 +00:00
|
|
|
|
private readonly string _device;
|
2022-08-10 08:53:59 +00:00
|
|
|
|
|
2022-06-05 03:11:57 +00:00
|
|
|
|
#region 配置参数
|
|
|
|
|
|
2022-08-10 08:53:59 +00:00
|
|
|
|
[ConfigParameter("设备Id")] public string DeviceId { get; set; }
|
2022-06-05 03:11:57 +00:00
|
|
|
|
|
2022-08-10 08:53:59 +00:00
|
|
|
|
[ConfigParameter("IP地址")] public string IpAddress { get; set; } = "127.0.0.1";
|
2022-06-05 03:11:57 +00:00
|
|
|
|
|
2022-08-10 08:53:59 +00:00
|
|
|
|
[ConfigParameter("端口号")] public int Port { get; set; } = 6666;
|
2022-06-05 03:11:57 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 为了演示枚举类型在web端的录入,这里没用到 但是你可以拿到
|
|
|
|
|
/// </summary>
|
|
|
|
|
[ConfigParameter("连接类型")]
|
|
|
|
|
public ConnectionType ConnectionType { get; set; } = ConnectionType.Long;
|
|
|
|
|
|
2022-08-10 08:53:59 +00:00
|
|
|
|
[ConfigParameter("超时时间ms")] public int Timeout { get; set; } = 300;
|
2022-06-05 03:11:57 +00:00
|
|
|
|
|
2022-08-10 08:53:59 +00:00
|
|
|
|
[ConfigParameter("最小通讯周期ms")] public uint MinPeriod { get; set; } = 3000;
|
2022-06-05 03:11:57 +00:00
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
2023-04-12 15:40:00 +00:00
|
|
|
|
#region 生命周期
|
|
|
|
|
|
|
|
|
|
public DeviceTcpClient(string device, ILogger logger)
|
2022-06-05 03:11:57 +00:00
|
|
|
|
{
|
2022-08-06 10:21:00 +00:00
|
|
|
|
_device = device;
|
|
|
|
|
_logger = logger;
|
|
|
|
|
|
2022-08-08 07:15:09 +00:00
|
|
|
|
_logger.LogInformation($"Device:[{_device}],Create()");
|
2022-06-05 03:11:57 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 判断连接状态
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool IsConnected
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
//客户端对象不为空并且客户端已连接则返回true
|
2022-08-10 08:53:59 +00:00
|
|
|
|
return _client != null && _client.TcpClient.Connected;
|
2022-06-05 03:11:57 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 进行连接
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>连接是否成功</returns>
|
|
|
|
|
public bool Connect()
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
//进行连接
|
2022-08-10 08:53:59 +00:00
|
|
|
|
_client = new SimpleTcpClient().Connect(IpAddress, Port);
|
|
|
|
|
_client.DataReceived += Client_DataReceived;
|
2022-06-05 03:11:57 +00:00
|
|
|
|
}
|
|
|
|
|
catch (Exception)
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2022-08-10 08:53:59 +00:00
|
|
|
|
|
2022-06-05 03:11:57 +00:00
|
|
|
|
return IsConnected;
|
|
|
|
|
}
|
2022-08-10 08:53:59 +00:00
|
|
|
|
|
2022-06-05 03:11:57 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// 收到服务端数据
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="sender"></param>
|
|
|
|
|
/// <param name="e"></param>
|
|
|
|
|
private void Client_DataReceived(object? sender, Message e)
|
|
|
|
|
{
|
|
|
|
|
//如果收到的数据校验正确,则放在内存中
|
|
|
|
|
if (e.Data.Length == 8 && e.Data[0] == 0x08)
|
2022-08-10 08:53:59 +00:00
|
|
|
|
_latestRcvData = e.Data;
|
2022-06-05 03:11:57 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 断开连接
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>断开是否成功</returns>
|
|
|
|
|
public bool Close()
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
2022-08-10 08:53:59 +00:00
|
|
|
|
if (_client != null)
|
|
|
|
|
{
|
|
|
|
|
_client.DataReceived -= Client_DataReceived;
|
|
|
|
|
//断开连接
|
|
|
|
|
_client?.Disconnect();
|
|
|
|
|
}
|
|
|
|
|
|
2022-06-05 03:11:57 +00:00
|
|
|
|
return !IsConnected;
|
|
|
|
|
}
|
|
|
|
|
catch (Exception)
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 释放
|
|
|
|
|
/// </summary>
|
|
|
|
|
public void Dispose()
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
//释放资源
|
2022-08-10 08:53:59 +00:00
|
|
|
|
_client?.Dispose();
|
2023-04-12 15:40:00 +00:00
|
|
|
|
|
|
|
|
|
// Suppress finalization.
|
|
|
|
|
GC.SuppressFinalize(this);
|
2022-06-05 03:11:57 +00:00
|
|
|
|
}
|
|
|
|
|
catch (Exception)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-04-12 15:40:00 +00:00
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region 读写方法
|
2022-06-05 03:11:57 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 发送数据
|
|
|
|
|
/// </summary>
|
2022-08-10 08:53:59 +00:00
|
|
|
|
private readonly byte[] _sendCmd = { 0x01, 0x02, 0x03, 0x04 };
|
2022-06-05 03:11:57 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 解析并返回
|
|
|
|
|
/// </summary>
|
2023-04-12 15:40:00 +00:00
|
|
|
|
/// <param name="ioArg">ioArg.Address为起始变量字节编号;ioArg.ValueType为类型</param>
|
2022-06-05 03:11:57 +00:00
|
|
|
|
/// <returns></returns>
|
|
|
|
|
[Method("读模拟设备数据", description: "读模拟设备数据,开始字节和长度")]
|
2023-04-12 15:40:00 +00:00
|
|
|
|
public DriverReturnValueModel Read(DriverAddressIoArgModel ioArg)
|
2022-06-05 03:11:57 +00:00
|
|
|
|
{
|
|
|
|
|
var ret = new DriverReturnValueModel { StatusType = VaribaleStatusTypeEnum.Good };
|
|
|
|
|
ushort startIndex;
|
|
|
|
|
//判断地址是否为整数
|
2023-04-12 15:40:00 +00:00
|
|
|
|
if (!ushort.TryParse(ioArg.Address, out startIndex))
|
2022-06-05 03:11:57 +00:00
|
|
|
|
{
|
|
|
|
|
ret.StatusType = VaribaleStatusTypeEnum.Bad;
|
|
|
|
|
ret.Message = "起始字节编号错误";
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
2022-08-10 08:53:59 +00:00
|
|
|
|
|
2022-06-05 03:11:57 +00:00
|
|
|
|
//连接正常则进行读取
|
|
|
|
|
if (IsConnected)
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
//发送请求
|
2022-08-10 08:53:59 +00:00
|
|
|
|
_client?.Write(_sendCmd);
|
2022-06-05 03:11:57 +00:00
|
|
|
|
//等待恢复,这里可以优化
|
|
|
|
|
Thread.Sleep(Timeout);
|
2022-08-10 08:53:59 +00:00
|
|
|
|
if (_latestRcvData == null)
|
2022-06-05 03:11:57 +00:00
|
|
|
|
{
|
|
|
|
|
ret.StatusType = VaribaleStatusTypeEnum.Bad;
|
|
|
|
|
ret.Message = "没有收到数据";
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
//解析数据,并返回
|
2023-04-12 15:40:00 +00:00
|
|
|
|
switch (ioArg.ValueType)
|
2022-06-05 03:11:57 +00:00
|
|
|
|
{
|
|
|
|
|
case DataTypeEnum.UByte:
|
|
|
|
|
case DataTypeEnum.Byte:
|
2022-08-10 08:53:59 +00:00
|
|
|
|
ret.Value = _latestRcvData[startIndex];
|
2022-06-05 03:11:57 +00:00
|
|
|
|
break;
|
|
|
|
|
case DataTypeEnum.Int16:
|
2022-08-10 08:53:59 +00:00
|
|
|
|
var buffer16 = _latestRcvData.Skip(startIndex).Take(2).ToArray();
|
|
|
|
|
ret.Value = BitConverter.ToInt16(new[] { buffer16[0], buffer16[1] }, 0);
|
2022-06-05 03:11:57 +00:00
|
|
|
|
break;
|
|
|
|
|
case DataTypeEnum.Float:
|
|
|
|
|
//拿到有用的数据
|
2022-08-10 08:53:59 +00:00
|
|
|
|
var buffer32 = _latestRcvData.Skip(startIndex).Take(4).ToArray();
|
2022-06-05 03:11:57 +00:00
|
|
|
|
//大小端转换一下
|
2022-08-10 08:53:59 +00:00
|
|
|
|
ret.Value = BitConverter.ToSingle(
|
|
|
|
|
new[] { buffer32[3], buffer32[2], buffer32[1], buffer32[0] }, 0);
|
2022-06-05 03:11:57 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
ret.StatusType = VaribaleStatusTypeEnum.Bad;
|
|
|
|
|
ret.Message = $"读取失败,{ex.Message}";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
ret.StatusType = VaribaleStatusTypeEnum.Bad;
|
|
|
|
|
ret.Message = "连接失败";
|
|
|
|
|
}
|
2022-08-10 08:53:59 +00:00
|
|
|
|
|
2022-06-05 03:11:57 +00:00
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2023-04-12 15:40:00 +00:00
|
|
|
|
public async Task<RpcResponse> WriteAsync(string requestId, string method, DriverAddressIoArgModel ioArg)
|
2022-06-05 03:11:57 +00:00
|
|
|
|
{
|
|
|
|
|
RpcResponse rpcResponse = new() { IsSuccess = false, Description = "设备驱动内未实现写入功能" };
|
2023-04-12 15:40:00 +00:00
|
|
|
|
await Task.CompletedTask;
|
2022-06-05 03:11:57 +00:00
|
|
|
|
return rpcResponse;
|
|
|
|
|
}
|
2023-04-12 15:40:00 +00:00
|
|
|
|
#endregion
|
2022-06-05 03:11:57 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public enum ConnectionType
|
|
|
|
|
{
|
|
|
|
|
Long,
|
|
|
|
|
Short
|
|
|
|
|
}
|
|
|
|
|
}
|