SystemBackgroundService.cs
10.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
using HHECS.RobotTool.Common.Communications;
using HHECS.RobotTool.Common.Utils;
using HHECS.RobotTool.DataAccess;
using HHECS.RobotTool.Dto;
using HHECS.RobotTool.Model;
using HHECS.RobotTool.Services.Analysis;
using HslCommunication.Profinet.Siemens;
using Microsoft.EntityFrameworkCore;
using System.Net;
using System.Net.Sockets;
using System.Text;
using System.Xml.Serialization;
namespace HHECS.RobotTool.Services
{
public class SystemBackgroundService : BackgroundService
{
private readonly SystemLog _logger = SystemLog.Instance;
private readonly GrooveService _grooveService;
private readonly IDbContextFactory<DataContext> _dbContextFactory;
private readonly DataCacheService _dataCacheService;
private readonly IAnalysis _analyse;
private readonly TcpListener _tcpServer;
private List<ICommunication> _communications = new List<ICommunication>();
public SystemBackgroundService(GrooveService grooveService, IDbContextFactory<DataContext> dbContextFactory, DataCacheService dataCacheService, IAnalysis analyse)
{
_tcpServer = new TcpListener(IPAddress.Any, 59152);
_tcpServer.Start();
_grooveService = grooveService;
_dbContextFactory = dbContextFactory;
_dataCacheService = dataCacheService;
_analyse = analyse;
}
protected override async Task ExecuteAsync(CancellationToken stoppingToken)
{
_tcpServer.BeginAcceptTcpClient(DoAcceptTcpClient, _tcpServer);
using var context = _dbContextFactory.CreateDbContext();
var configs = context.CommunicationConfigs.Where(x => x.Enable).ToList();
_communications = InitialCommunications(configs);
foreach (var item in _communications)
{
_ = Task.Run(async () =>
{
while (!stoppingToken.IsCancellationRequested)
{
var cacheData = _dataCacheService.Equipments.Where(x => x.CommunicationId.Equals(item.CommunicationId)).SelectMany(x => x.EquipmentProperties).ToList();
item.Read(cacheData);
await Task.Delay(1000);
}
}, stoppingToken);
}
while (!stoppingToken.IsCancellationRequested)
{
foreach (var communication in _communications)
{
var equipments = _dataCacheService.Equipments.Where(x => x.CommunicationId.Equals(communication.CommunicationId)).ToList();
_analyse.Execute(communication, equipments);
}
await Task.Delay(1000, stoppingToken);
}
}
private List<ICommunication> InitialCommunications(IEnumerable<CommunicationConfig> communicationConfigs)
{
var result = new List<ICommunication>();
try
{
foreach (var item in communicationConfigs)
{
ICommunication communication;
switch (item.CommunicationType)
{
case CommunicationTypeConst.None:
break;
//case CommunicationTypeConst.KukaVarProxy:
// communication = new KukaAvarProxyCommunication(item.Id, item.IpAddress, item.Port);
// result.Add(communication);
// break;
case CommunicationTypeConst.Siemens_S1200:
communication = new SiemensS7Communication(item.Id, SiemensPLCS.S1200, item.IpAddress);
result.Add(communication);
break;
case CommunicationTypeConst.Siemens_S1500:
communication = new SiemensS7Communication(item.Id, SiemensPLCS.S1500, item.IpAddress);
result.Add(communication);
break;
case CommunicationTypeConst.TcpClient:
break;
default:
break;
}
}
}
catch (Exception ex)
{
_logger.LogError($"设备通讯初始化异常:{ex.Message}");
}
return result;
}
private void DoAcceptTcpClient(IAsyncResult result)
{
var server = (TcpListener)result.AsyncState!;
var tcpClient = server.EndAcceptTcpClient(result);
_logger.LogInfo($"[客户端[{tcpClient.Client.RemoteEndPoint}]已成功建立连接");
Receive(tcpClient);
server.BeginAcceptTcpClient(DoAcceptTcpClient, server);
}
private void Receive(TcpClient tcpClient)
{
Task.Run(() =>
{
var remoteEndPoint = tcpClient.Client.RemoteEndPoint;
while (tcpClient.Connected)
{
try
{
var buffer = new byte[8192];
var stream = tcpClient.GetStream();
//接收客户端数据
stream.Read(buffer, 0, buffer.Length);
var bufferString = Encoding.Default.GetString(buffer).TrimEnd('\0');
if (string.IsNullOrWhiteSpace(bufferString)) continue;
_logger.LogInfo($"接收到客户端[{remoteEndPoint}]报文:{bufferString}");
const string kukaAckFlag1 = "<Robot>";
const string kukaAckFlag2 = "</Robot>";
if (bufferString.StartsWith(kukaAckFlag1, StringComparison.OrdinalIgnoreCase) && bufferString.EndsWith(kukaAckFlag2))
{
KukaTcpHandle(bufferString, stream, remoteEndPoint);
}
}
catch (Exception ex)
{
_logger.LogError($"客户端[{remoteEndPoint}]:{ex.InnerException?.Message ?? ex.Message}");
}
}
});
}
/// <summary>
/// Kuka Tcp交互处理
/// </summary>
/// <param name="bufferString"></param>
/// <param name="stream"></param>
/// <param name="remoteEndPoint"></param>
private void KukaTcpHandle(string bufferString, NetworkStream stream, EndPoint? remoteEndPoint)
{
//var str = $"<Ext><Msg>{Random.Shared.Next(100000, 999999)}</Msg></Ext>";
//stream.Write(Encoding.Default.GetBytes(str));
//_logger.LogSuccess($"响应[{remoteEndPoint}]报文:{str}");
//continue;
var inputXmlSerializer = new XmlSerializer(typeof(KukaRequestDto));
var outputXmlSerializer = new XmlSerializer(typeof(KukaResponseDto));
using var ms = new MemoryStream();
var writer = new StreamWriter(ms);
writer.Write(bufferString.Trim());
writer.Flush();
ms.Position = 0;
var reader = new StreamReader(ms);
try
{
var request = (KukaRequestDto)inputXmlSerializer.Deserialize(reader)!;
//默认值
var inputParameter = new InputParameter
{
WeldingWire = 1.2,
ReservedGapForGroove = 0,
SizeOfTheBluntEdgeOfTheGroove = 2,
WeldLength = 1000,
AdditionalWidthRequiredOnOneSideAfterCovering = 1.5,
WeldReinforcementRequiredAfterCovering = 2
};
inputParameter.GrooveWidth = request.GrooveWidth;
inputParameter.GrooveDepth = request.GrooveDepth;
var (outputParameter, _) = _grooveService.GetExcelData(inputParameter);
var resultData = new KukaResponseDto
{
Weld_Num = outputParameter.Weld_Num,
WeldHeightAfterWelding = outputParameter.WeldHeightAfterWelding,
WeldWidthAfterWelding = outputParameter.WeldWidthAfterWelding,
GrooveCrossSectionalArea = outputParameter.GrooveCrossSectionalArea,
OneLayerWireFeedingSpeed = outputParameter.OneLayerWireFeedingSpeed,
OneLayerCurrent = outputParameter.OneLayerCurrent,
CoverWireFeedingSpeed = outputParameter.CoverWireFeedingSpeed,
CoverWireFeedingCurrent = outputParameter.CoverWireFeedingCurrent,
WeldingWireCrossSectionalArea = outputParameter.WeldingWireCrossSectionalArea,
Layers = outputParameter.Layers,
TotalDepositionAmount = outputParameter.TotalDepositionAmount,
WeldingWireLengthAndUsage = outputParameter.WeldingWireLengthAndUsage,
TotalDepositionTime = outputParameter.TotalDepositionTime,
WeldingWire = inputParameter.WeldingWire,
ReservedGapForGroove = inputParameter.ReservedGapForGroove,
SizeOfTheBluntEdgeOfTheGroove = inputParameter.SizeOfTheBluntEdgeOfTheGroove,
WeldLength = inputParameter.WeldLength,
AdditionalWidthRequiredOnOneSideAfterCovering = inputParameter.AdditionalWidthRequiredOnOneSideAfterCovering,
WeldReinforcementRequiredAfterCovering = inputParameter.WeldReinforcementRequiredAfterCovering
};
using var sw = new StringWriter();
outputXmlSerializer.Serialize(sw, resultData);
var response = sw.ToString();
stream.Write(Encoding.Default.GetBytes(response));
_logger.LogSuccess($"响应客户端[{remoteEndPoint}]请求成功,报文:{response}");
}
catch (Exception ex)
{
_logger.LogError($"响应客户端[{remoteEndPoint}]请求失败:{ex.Message}");
}
}
}
}