BOXManager.cs
17.6 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
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
using log4net;
using SmartShelf.Common;
using SmartShelf.LoadCSVLibrary;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Windows.Forms;
namespace SmartShelf.DeviceLibrary
{
public partial class BOXManager
{
public static string BoxName = " Shelf ";
public static string CID = "";
private static System.Timers.Timer timersTimer;
private static System.Timers.Timer serverConTimer;
private static bool isInit = false;
public static string WarnMsg = "";
public static Dictionary<string, BoxPosition> PositionMap = null;
public static int BoxCount = 1;
private static Dictionary<string, string> PosIdColorMap = new Dictionary<string, string>();
/// <summary>
/// 指示灯颜色记录,key= IP_DmxID, value=颜色
/// </summary>
private static Dictionary<string, string> StatusLedColorMap = new Dictionary<string, string>();
public static bool IsRun = false;
public static string GetPosIdColor(string posId)
{
if (PosIdColorMap.ContainsKey(posId))
{
return PosIdColorMap[posId];
}
return "";
}
public static void UpdatePosIdColor(string posId, string color = "")
{
if (PosIdColorMap.ContainsKey(posId))
{
PosIdColorMap[posId] = color;
}
else
{
PosIdColorMap.Add(posId, color);
}
}
public static bool StartInit()
{
try
{
BoxCount = ConfigAppSettings.GetIntValue(Setting_Init.BoxCount);
string appPath = Application.StartupPath;
//加载位置
string positionConfigFile = appPath + ConfigAppSettings.GetValue(Setting_Init.Store_Position_Config);
if (BoxCount > 1)
{
string fileSub = System.IO.Path.GetExtension(positionConfigFile);
for (int i = 1; i <= BoxCount; i++)
{
string fileName = positionConfigFile.Substring(0, positionConfigFile.Length - fileSub.Length) + "_" + i + fileSub;
CSVPositionReader<BoxPosition>.AddCSVFile(fileName);
}
}
else
{
CSVPositionReader<BoxPosition>.AddCSVFile(positionConfigFile);
}
PositionMap = CSVPositionReader<BoxPosition>.allPositionMap;
if (PositionMap == null || PositionMap.Count <= 0)
{
return false;
}
CID = ConfigAppSettings.GetValue(Setting_Init.Store_CID);
LEDManager.Init();
LEDManager.deviceMap = new Dictionary<string, LEDBaseModule>();
PosIdColorMap = new Dictionary<string, string>();
StatusLedColorMap = new Dictionary<string, string>();
foreach (BoxPosition box in PositionMap.Values)
{
if (!LEDManager.deviceMap.ContainsKey(box.DeviceIp))
{
LEDManager.deviceMap.Add(box.DeviceIp, LEDBaseModule.GetModule(box.DeviceIp));
foreach (int dmx in LEDManager.StatusLedDmx)
{
string ledStr = box.DeviceIp + "_" + dmx;
if (!StatusLedColorMap.ContainsKey(ledStr))
{
StatusLedColorMap.Add(ledStr, "");
}
}
}
PosIdColorMap.Add(box.PositionNum, "");
if (box.GetStatusLedDmxId() >= 0)
{
string ledStr = box.DeviceIp + "_" + box.GetStatusLedDmxId();
if (!StatusLedColorMap.ContainsKey(ledStr))
{
StatusLedColorMap.Add(ledStr, "");
}
}
}
LogUtil.info(BoxName + "加载完成!");
Init();
return true;
}
catch (Exception ex)
{
LogUtil.error(BoxName + "加载配置出错:" + ex.ToString());
}
return false;
}
protected static void Init()
{
if (!isInit)
{
timersTimer = new System.Timers.Timer();
timersTimer.Enabled = false;
timersTimer.Interval = 1500;
timersTimer.Elapsed += timersTimer_Elapsed;
timersTimer.AutoReset = true;
serverConTimer = new System.Timers.Timer();
serverConTimer.Enabled = false;
serverConTimer.Interval = 1000;
serverConTimer.Elapsed += server_connect_timer;
serverConTimer.AutoReset = true;
isInit = true;
}
}
public static bool StartRun()
{
LogUtil.info(BoxName + "开始启动:" + DateTime.Now.ToString() + "!");
timersTimer.Enabled = true;
IsRun = true;
OpenStatusLights();
ServerPort = ConfigAppSettings.GetIntValue(Setting_Init.ServerPort);
string host = ConfigAppSettings.GetValue(Setting_Init.HttpServerAddr);
if (ServerPort > 0)
{
PosId_SpiltChar = ';';
PosId_Color_SpiltChar = '@';
HttpServer.Start(ServerOnReceived, ServerPort);
LogUtil.info("启动HttpServer接口服务完成,[ " + PosId_SpiltChar + "][" + PosId_Color_SpiltChar + "],端口号【" + ServerPort + "】");
}
else if (!String.IsNullOrEmpty(host))
{
PosId_SpiltChar = '|';
PosId_Color_SpiltChar = '=';
serverConTimer.Start();
LogUtil.info("启动与服务器连接定时器完成,[ " + PosId_SpiltChar + "][" + PosId_Color_SpiltChar + "],地址 【" + host + "】");
}
else
{
LogUtil.info("未配置 ServerPort 或 HttpServerAddr");
}
return true;
}
public static void StopRun()
{
//关闭串口
timersTimer.Enabled = false;
foreach (LEDBaseModule led in LEDManager.deviceMap.Values)
{
led.AllLightOff();
}
//LEDManager.CloseStatusLights(new List<string>(StatusLedColorMap.Keys));
CloseStatusLights();
HttpServer.Stop();
serverConTimer.Stop();
IsRun = false;
LogUtil.info(BoxName + "停止运行,时间" + DateTime.Now.ToShortTimeString() + "!");
}
private static bool InProcess = false;
private static Stopwatch stopwatch = new Stopwatch();
protected static void timersTimer_Elapsed(object sender, System.Timers.ElapsedEventArgs e)
{
if (InProcess)
{
//TimeSpan span = DateTime.Now - preProcessTime;
if (stopwatch.Elapsed.TotalMinutes < 1)
{
return;
}
else
{
LogUtil.error("主定时器:InProcess已等待" + stopwatch.Elapsed.ToString() + "重新处理");
}
}
try
{
InProcess = true;
//判断是否需要亮黄灯
List<string> openLeds = new List<string>();
List<string> shanShuoLed = new List<string>();
foreach (string key in PosIdColorMap.Keys)
{
string color = GetPosIdColor(key);
if (!String.IsNullOrEmpty(color))
{
openLeds.Add(key);
if (PositionMap.ContainsKey(key))
{
BoxPosition box = PositionMap[key];
if (box.GetStatusLedDmxId() >= 0)
{
string statusStr = box.DeviceIp + "_" + box.GetStatusLedDmxId();
if (!shanShuoLed.Contains(statusStr))
{
shanShuoLed.Add(statusStr);
}
}
}
//break;
}
}
List<string> keys = new List<string>(StatusLedColorMap.Keys);
foreach(string key in keys)
{
if (shanShuoLed.Contains(key))
{
if (StatusLedColorMap[key].EndsWith("yellow"))
{
StatusLedColorMap[key] = "";
}
else
{
StatusLedColorMap[key] = "yellow";
}
}
else
{
StatusLedColorMap[key] = "green";
}
}
LEDManager.UpdateStatusLights(StatusLedColorMap);
}
catch (Exception ex)
{
LogUtil.error("timersTimer_Elapsed出错:" + ex.ToString());
}
InProcess = false ;
}
public static string StrMsg = "";
public static bool ProcessOpenAll(string proMsg = "Revice ", string ip = "")
{
LogUtil.info(BoxName + proMsg + " closeAll命令:");
List<string> posIdList = new List<string>(PositionMap.Keys);
foreach (LEDBaseModule led in LEDManager.deviceMap.Values)
{
if (String.IsNullOrEmpty(ip) || led.ModuleIP.Equals(ip))
{
led.AllLightOn();
}
}
foreach (string key in posIdList)
{
string pIP = "";
if (PositionMap.ContainsKey(key))
{
pIP = PositionMap[key].DeviceIp;
}
if (String.IsNullOrEmpty(ip) || pIP.Equals(ip))
{
UpdatePosIdColor(key, Light.defaultColor);
}
}
return true;
}
public static bool ProcessCloseAll(string proMsg = "Revice ", string ip = "")
{
LogUtil.info(BoxName + proMsg + " closeAll命令:");
List<string> posIdList = new List<string>(PositionMap.Keys);
foreach (LEDBaseModule led in LEDManager.deviceMap.Values)
{
if (String.IsNullOrEmpty(ip) || led.ModuleIP.Equals(ip))
{
led.AllLightOff();
}
}
foreach (string key in posIdList)
{
string pIP = "";
if (PositionMap.ContainsKey(key))
{
pIP = PositionMap[key].DeviceIp;
}
if (String.IsNullOrEmpty(ip) || pIP.Equals(ip))
{
UpdatePosIdColor(key);
}
}
return true;
}
public static bool ProcessCloseByParam(string color, string shelf, string proMsg = "Revice ", string ip = "")
{
LogUtil.info(BoxName + proMsg + " ProcessCloseByColor 命令:" + color);
List<string> posIdList = new List<string>(PositionMap.Keys);
Dictionary<string, List<Light>> lightsMap = new Dictionary<string, List<Light>>();
foreach (string key in posIdList)
{
string shelfStr = shelf + "_";
if (String.IsNullOrEmpty(shelf) || key.StartsWith(shelfStr))
{
string status = GetPosIdColor(key);
if (String.IsNullOrEmpty(status))
{
continue;
}
if (String.IsNullOrEmpty(color) || status.ToLower().Equals(color.ToLower()))
{
BoxPosition position = PositionMap[key];
Light[] lightArray = Light.GetLights(position.DmxId, position.GetLedList(), 0);
LEDManager.SaveLightToMap(lightsMap, position.DeviceIp, lightArray);
// LEDManager.GetLedModule(position.DeviceIp).LightOff(Light.GetLights(position.DmxId, position.GetLedList(), 0));
UpdatePosIdColor(key);
}
}
}
foreach (string dip in lightsMap.Keys)
{
List<Light> lights = lightsMap[dip];
if (lights.Count > 0)
{
LEDManager.GetLedModule(dip).LightOff(lights.ToArray());
}
}
return true;
}
public static bool ProcessOpenLed(string posids, string proMsg = "Revice ")
{
LogUtil.info(BoxName + proMsg + " open命令:" + posids);
string[] posArray = posids.Split(PosId_SpiltChar);
Dictionary<string, List<Light>> lightsMap = new Dictionary<string, List<Light>>();
foreach (string posStr in posArray)
{
if (String.IsNullOrEmpty(posStr))
{
continue;
}
string posid = posStr;
string color = Light.defaultColor;
if (posStr.Contains(PosId_Color_SpiltChar))
{
string[] posInfos = posStr.Split(PosId_Color_SpiltChar);
posid = posInfos[0];
color = posInfos[1];
}
color = color.ToLower();
if (PositionMap.ContainsKey(posid))
{
BoxPosition position = PositionMap[posid];
Light[] lightArray = Light.GetLights(position.DmxId, color, position.GetLedList().ToArray());
LEDManager.SaveLightToMap(lightsMap, position.DeviceIp, lightArray);
// LEDManager.GetLedModule(position.DeviceIp).LightOn(lights);
UpdatePosIdColor(posid, color);
}
else
{
if (posid.ToLower().Equals("statuslight"))
{
LogUtil.info("状态灯指令:" + posid + "=" + color);
}
else
{
LogUtil.error(BoxName + "打开灯失败,未找到库位号:" + posid);
}
}
}
LEDManager.UpdateLightMap(lightsMap);
//foreach (string dip in lightsMap.Keys)
//{
// List<Light> lights = lightsMap[dip];
// if (lights.Count > 0)
// {
// LEDManager.GetLedModule(dip).LightOn(lights.ToArray());
// }
//}
return true;
}
public static bool ProcessCloseLed(string posids, string proMsg = "Revice ")
{
LogUtil.info(BoxName + proMsg + " close命令:" + posids);
string[] posArray = posids.Split(PosId_SpiltChar);
Dictionary<string, List<Light>> lightsMap = new Dictionary<string, List<Light>>();
foreach (string posid in posArray)
{
string posName = posid;
if (posid.Contains(PosId_Color_SpiltChar))
{
posName = posid.Split(PosId_Color_SpiltChar)[0];
}
if (PositionMap.ContainsKey(posName))
{
BoxPosition position = PositionMap[posName];
Light[] lightArray = Light.GetLights(position.DmxId, position.GetLedList());
LEDManager.SaveLightToMap(lightsMap, position.DeviceIp, lightArray);
// LEDManager.GetLedModule(position.DeviceIp).LightOff(Light.GetLights(position.DmxId, position.GetLedList(), 0));
UpdatePosIdColor(posName);
}
else
{
LogUtil.error(BoxName + "关闭灯败,未找到库位号:" + posName);
}
}
LEDManager.UpdateLightMap(lightsMap);
//foreach (string dip in lightsMap.Keys)
//{
// List<Light> lights = lightsMap[dip];
// if (lights.Count > 0)
// {
// LEDManager.GetLedModule(dip).LightOff(lights.ToArray());
// }
//}
return true;
}
public static void OpenStatusLights(string color="green")
{
List<string> keys = new List<string>(StatusLedColorMap.Keys);
foreach(string key in keys)
{
StatusLedColorMap[key] = color;
}
LEDManager.UpdateStatusLights(StatusLedColorMap);
}
public static void CloseStatusLights()
{
List<string> keys = new List<string>(StatusLedColorMap.Keys);
foreach (string key in keys)
{
StatusLedColorMap[key] = "";
}
LEDManager.UpdateStatusLights(StatusLedColorMap);
}
}
}