MainVM.cs
15.2 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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
using System.Collections.ObjectModel;
using System.Configuration;
using System.Diagnostics;
using System.Windows;
using System.Windows.Controls;
using CommunityToolkit.Mvvm.ComponentModel;
using CommunityToolkit.Mvvm.Input;
using HHECS.DAQClient.Common;
using HHECS.DAQClient.Common.Enums;
using HHECS.DAQClient.DataAccess;
using HHECS.DAQClient.Model;
using HHECS.DAQClient.Services;
using HHECS.DAQClient.View.CommunicationView;
using HHECS.DAQClient.View.EquipmentView;
using HHECS.EquipmentModel;
using MessageBox = HandyControl.Controls.MessageBox;
namespace HHECS.DAQClient.ViewModel
{
internal partial class MainVM : ObservableObject
{
[ObservableProperty]
private bool btnStartEnabled = true;
[ObservableProperty]
private bool btnStopEnabled = false;
[ObservableProperty]
private ObservableCollection<LogModel> logModels = new();
[ObservableProperty]
private Page communicationPage = new CommunicationPage();
[ObservableProperty]
private Page equipmentPage = new EquipmentPage();
[ObservableProperty]
private Page equipmentDataQueuePage = new EquipmentDataQueuePage();
/// <summary>
/// 自动上传数据
/// </summary>
[ObservableProperty]
private bool autoCommit = true;
/// <summary>
/// 每次提交的数据量
/// </summary>
private int _commitCount = 30;
private readonly SystemLog _log = SystemLog.GetInstance();
private readonly CenterService _centerService;
private readonly HttpService _httpService;
private readonly DataContext _context;
public MainVM(DataContext context, CenterService centerService, HttpService httpService)
{
_centerService = centerService;
_httpService = httpService;
_context = context;
Initial();
}
private void Initial()
{
var stationCodeArea1 = new List<string>
{
"P1001",
"P1002",
"P1004",
"P1005",
"P1007",
"P1008",
"P1009",
"P1010",
"P1011",
"P1012",
"P1013",
"P1014",
"P1015",
"P1016",
"P1017",
"P1018",
};
var stationCodeArea2 = new List<string>
{
"P1001",
"P1002",
"P1004",
"P1006",
"P1007",
};
var stationCodeArea3 = new List<string>
{
"P1001",
"P1002",
"P1003",
"P1004",
"P1005",
"P1006",
"P1007",
"P1008",
"P1009",
"P1010",
"P1011",
"P1012",
"P1013",
"P1014",
"P1015",
"P10161",
"P10162",
};
//GenerateStationMonitorEquipment(stationCodeArea1, "192.168.10.103", "1");
//GenerateStationMonitorEquipment(stationCodeArea2, "192.168.10.10", "2");
//GenerateStationMonitorEquipment(stationCodeArea3, "192.168.10.50", "3");
var commitCountConfig = ConfigurationManager.AppSettings["CommitCount"];
_ = int.TryParse(commitCountConfig, out _commitCount);
if (_commitCount <= 0)
{
//未配置,则默认30
_commitCount = 30;
}
RefreshLog();
UploadEquipmentDataToCloudByMemoryQueue();
UploadEquipmentDataToCloudByDatabase();
}
[RelayCommand]
public void Start()
{
BtnStartEnabled = false;
BtnStopEnabled = true;
_centerService.Start();
}
[RelayCommand]
public void Stop()
{
BtnStartEnabled = true;
BtnStopEnabled = false;
_centerService.Stop();
}
private void RefreshLog()
{
Task.Run(() =>
{
Application.Current.Dispatcher.Invoke(async () =>
{
do
{
while (!_log.IsEmpty)
{
var log = _log.GetLog();
if (log == null)
{
await Task.Delay(100);
continue;
}
var oldItem = LogModels.Where(x => x.Messages.Equals(log.Messages)).FirstOrDefault();
if (oldItem != null)
{
oldItem.CreateTime = log.CreateTime;
LogModels = new ObservableCollection<LogModel>(LogModels.OrderByDescending(x => x.CreateTime));
}
else
{
LogModels.Insert(0, new LogModel()
{
LogType = log.LogType,
Messages = log.Messages,
CreateTime = log.CreateTime
});
}
if (LogModels.Count > 50)
{
LogModels.Remove(LogModels.Last());
}
}
await Task.Delay(100);
} while (true);
});
});
}
/// <summary>
/// 上传数据至IOTCloud
/// </summary>
/// <remarks>从队列获取数据,1秒上传一次,上传失败,则保存至数据库</remarks>
private void UploadEquipmentDataToCloudByMemoryQueue(int millisecondsTimeout = 1000)
{
Task.Run(() =>
{
while (true)
{
try
{
Thread.Sleep(millisecondsTimeout);
if (_centerService.EquipmentDataQueues.IsEmpty)
{
//数据为空
continue;
}
var temps = new List<EquipmentDataQueue>();
var commitFailureRecord = new List<EquipmentDataQueue>();
for (int i = 0; i < _commitCount; i++)
{
var result = _centerService.EquipmentDataQueues.TryDequeue(out var item);
if (result && item != null)
{
temps.Add(item);
}
}
//自动上传启用,且数据库无未上传的数据,则直接推送
if (AutoCommit && !_context.EquipmentDataQueue.Where(x => true).Any())
{
Stopwatch stopwatch = Stopwatch.StartNew();
foreach (var item in temps.GroupBy(x => x.EquipmentCode))
{
stopwatch.Restart();
var records = item.ToList();
var result = _httpService.SendEquipmentData(records);
stopwatch.Stop();
if (!result.Success)
{
commitFailureRecord.AddRange(records);
_log.LogError($"推送设备[{item.Key}]数据失败,{result.Msg},耗时:{stopwatch.ElapsedMilliseconds}ms");
continue;
}
_log.LogSuccess($"成功推送{records.Count}条设备[{item.Key}]数据,耗时:{stopwatch.ElapsedMilliseconds}ms");
}
}
//自动上传关闭或数据库存在未上传的记录,则直接存入数据库
else
{
commitFailureRecord.AddRange(temps);
}
//将上传失败的数据存入数据库
if (commitFailureRecord.Count > 0)
{
_context.EquipmentDataQueue.AddRange(commitFailureRecord);
_context.SaveChanges();
_log.LogInfo($"新增{commitFailureRecord.Count}条数据记录");
}
}
catch (Exception ex)
{
_log.LogError($"[LocalQueue]数据上传线程异常:{ex.Message}");
}
}
});
}
/// <summary>
/// 上传数据至IOTCloud
/// </summary>
/// <remarks>从数据库获取数据,默认5秒上传一次</remarks>
private void UploadEquipmentDataToCloudByDatabase(int millisecondsTimeout = 5000)
{
Task.Run(() =>
{
while (true)
{
try
{
if (!AutoCommit)
{
//自动上传关闭,则不上传数据
Thread.Sleep(millisecondsTimeout);
continue;
}
var equipmentCodes = _context.EquipmentDataQueue.Where(x => true).Distinct().ToList(x => x.EquipmentCode);
var queues = new List<EquipmentDataQueue>();
Stopwatch stopwatch = Stopwatch.StartNew();
foreach (var equipmentCode in equipmentCodes)
{
stopwatch.Restart();
var temps = _context.EquipmentDataQueue.Where(x => x.EquipmentCode.Equals(equipmentCode) && !x.IsCommit).OrderByDescending(x => x.Created).OrderBy(x => x.SourceTimestamp).Take(_commitCount).ToList();
var result = _httpService.SendEquipmentData(temps);
stopwatch.Stop();
if (!result.Success)
{
_log.LogError($"推送设备[{equipmentCode}]数据失败,{result.Msg},耗时:{stopwatch.ElapsedMilliseconds}ms");
continue;
}
queues.AddRange(temps);
_log.LogSuccess($"成功推送{temps.Count}条设备[{equipmentCode}]数据,耗时:{stopwatch.ElapsedMilliseconds}ms");
}
if (queues.Count > 0)
{
_context.EquipmentDataQueue.RemoveRange(queues);
_context.SaveChanges();
}
}
catch (Exception ex)
{
_log.LogError($"[DataBase]数据上传线程异常:{ex.Message}");
}
Thread.Sleep(millisecondsTimeout);
}
});
}
private void GenerateStationMonitorEquipment(IEnumerable<string> stationCode, string ip, string destinationArea)
{
try
{
var equipmentType = _context.EquipmentType.Where(x => x.Code == EquipmentTypeConst.StationMonitor.ToString()).First();
var equipmentPropTemps = _context.EquipmentTypePropTemplate.Where(x => x.EquipmentTypeId == equipmentType.Id).ToList();
var equipmentTemps = new List<Equipment>();
foreach (var station in stationCode)
{
var equipment = new Equipment
{
Code = station,
Name = "站台监控",
EquipmentTypeId = equipmentType.Id,
IP = ip,
Created = DateTime.Now,
DestinationArea = destinationArea,
Description = station,
ConnectName = station
};
equipmentTemps.Add(equipment);
}
_context.Equipment.AddRange(equipmentTemps);
_context.SaveChanges();
var dbStart1 = 0;
var dbStart2 = 0;
var equipmentProps = new List<EquipmentProp>();
foreach (var equipment in equipmentTemps)
{
var equipmentId = _context.Equipment.Where(x => x.ConnectName == equipment.ConnectName && x.IP == x.IP && x.DestinationArea == destinationArea).First(x => x.Id);
foreach (var item in equipmentPropTemps)
{
_ = Enum.TryParse<StationMonitorProp>(item.Code, out var StationMonitorCode);
var address = StationMonitorCode switch
{
StationMonitorProp.StationMonitorBarcode => $"DB3002.{dbStart1},20",
StationMonitorProp.StationMonitorAutomation => $"DB3002.{dbStart1 + 20}",
StationMonitorProp.StationMonitorOccupied => $"DB3002.{dbStart1 + 22}",
StationMonitorProp.StationError => $"DB3002.{dbStart1 + 24}",
StationMonitorProp.StationDestination => $"DB3002.{dbStart1 + 26}",
StationMonitorProp.StationBackup => $"DB3002.{dbStart1 + 28}",
StationMonitorProp.StationCorotation => $"DB3200.{dbStart2 / 8}.{dbStart2 % 8}",
StationMonitorProp.StationReverse => $"DB3200.{dbStart2 / 8}.{dbStart2 % 8 + 1}",
StationMonitorProp.StationHighSpeed => $"DB3200.{dbStart2 / 8}.{dbStart2 % 8 + 2}",
_ => string.Empty,
};
var prop = new EquipmentProp
{
EquipmentId = equipmentId,
EquipmentTypePropTemplateId = item.Id,
EquipmentTypePropTemplateCode = item.Code,
Address = address,
Remark = item.Name,
ServerHandle = 0,
Created = DateTime.Now,
};
equipmentProps.Add(prop);
}
dbStart1 += 30;
dbStart2 += 3;
}
_context.EquipmentProp.AddRange(equipmentProps);
_context.SaveChanges();
}
catch (Exception ex)
{
_log.LogError(ex.Message);
}
}
}
}