EquipmentManage.cs
68.9 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
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
using RCS.Communication;
using RCS.Model.Comm;
using RCS.Model.Entity;
using RCS.Model.PLC;
using RCS.WinClient.Common;
using SqlSugar;
namespace RCS.WinClient.Service
{
/// <summary>
/// 站台管理
/// </summary>
public class EquipmentManage
{
/// <summary>
/// RCS清除站台信号
/// </summary>
/// <param name="stationName"></param>
/// <returns></returns>
public BllResult ClearRequest(string stationName)
{
try
{
var equipment = App.EquipmentList.FirstOrDefault(t => t.Name == stationName);
if (equipment == null)
{
return BllResult.Error($"RCS处理【清除站台信号】失败,设备【{stationName}】不存在,请检查设备表!");
}
if (!Enum.TryParse(equipment.Type, out EnumPLC.EquipmentType equipmentType))
{
return BllResult.Error($"RCS处理【清除站台信号】失败,设备类型【{equipment.Type}】不支持!");
}
switch (equipmentType)
{
case EnumPLC.EquipmentType.HuaHengStation:
return ClearRequestByHuaheng(equipment);
case EnumPLC.EquipmentType.ShearsIn:
case EnumPLC.EquipmentType.ShearsOut:
return ClearRequestByShears(equipment);
case EnumPLC.EquipmentType.Door:
return ClearRequestByDoor(equipment);
default: return BllResult.Error();
}
}
catch (Exception ex)
{
return BllResult.Error($"RCS处理站台【{stationName}】的【清除站台信号】失败.异常:{ex.Message}");
}
}
#region 站台操作
/// <summary>
/// PLC心跳处理
/// </summary>
/// <param name="equipmentProps"></param>
/// <returns>心跳是否都成功,心跳成功的IP</returns>
public BllResult Heart(Base_EquipmentProp equipmentProp)
{
try
{
if (equipmentProp.Value == EnumPLC.PLCBool.True.ToString())
{
equipmentProp.Value = EnumPLC.PLCBool.False.ToString();
}
else
{
equipmentProp.Value = EnumPLC.PLCBool.True.ToString();
}
var writesResult = PLCHelper.Instance.Writes(equipmentProp);
if (!writesResult.Success)
{
var msg = $"写入PLC心跳失败,原因:{writesResult.Msg}";
App.ExFile.MessagePLC("PLCHelper", msg);
return BllResult.Error(msg);
}
return BllResult.Sucess();
}
catch (Exception ex)
{
var msg = $"写入心跳出现异常:{ex.Message},堆栈:{ex.StackTrace}";
App.ExFile.MessageLog("PLCHelper", msg);
return BllResult.Error(msg);
}
}
/// <summary>
/// PLC心跳
/// </summary>
/// <param name="equipmentProps"></param>
/// <returns>心跳是否都成功,心跳成功的IP</returns>
public BllResult<List<string>> Heart(List<Base_EquipmentProp> equipmentProps)
{
try
{
//var result = PLCHelper.Instance.Reads(equipmentProps);
//if (!result.Success)
//{
// App.ExFile.MessagePLC("PLCHelper", $"心跳处理,读取PLC失败!");
// return;
//}
var result = BllResult<List<string>>.Sucess();
foreach (var equipmentProp in equipmentProps)
{
if (equipmentProp.Value == EnumPLC.PLCBool.True.ToString())
{
equipmentProp.Value = EnumPLC.PLCBool.False.ToString();
}
else
{
equipmentProp.Value = EnumPLC.PLCBool.True.ToString();
}
var writesResult = PLCHelper.Instance.Writes(equipmentProp);
if (writesResult.Success)
{
result.Data.Add(equipmentProp.Equipment.Ip);
}
else
{
var msg = $"写入PLC心跳失败,原因:{writesResult.Msg}";
App.ExFile.MessagePLC("PLCHelper", msg);
result.Success = false;
}
}
return result;
}
catch (Exception ex)
{
var msg = $"写入心跳出现异常:{ex.Message},堆栈:{ex.StackTrace}";
App.ExFile.MessageLog("PLCHelper", msg);
return BllResult<List<string>>.Error(msg);
}
}
/// <summary>
/// RCS请求预占
/// </summary>
/// <param name="stationName"></param>
/// <returns></returns>
public BllResult RequestPlaceholder(string stationName, params object[] requestValues)
{
try
{
string acsPlaceholderValue = requestValues.FirstOrDefault() as string;
var equipment = App.EquipmentList.FirstOrDefault(t => t.Name == stationName);
if (equipment == null)
{
return BllResult.Error($"RCS处理【请求预占】失败,设备【{stationName}】不存在,请检查设备表!");
}
if (!Enum.TryParse(equipment.Type, out EnumPLC.EquipmentType equipmentType))
{
return BllResult.Error($"RCS处理【请求预占】失败,设备类型【{equipment.Type}】不支持!");
}
switch (equipmentType)
{
case EnumPLC.EquipmentType.HuaHengStation:
return RequestPlaceholder(equipment, acsPlaceholderValue);
case EnumPLC.EquipmentType.ShearsIn:
return BllResult.Error($"RCS处理【请求预占】失败,设备【{equipment.Name}】不支持请求预占!");
case EnumPLC.EquipmentType.ShearsOut:
return BllResult.Error($"RCS处理【请求预占】失败,设备【{equipment.Name}】不支持请求预占!");
default: return BllResult.Error();
}
}
catch (Exception ex)
{
return BllResult.Error($"RCS处理站台【{stationName}】的【取货】失败.异常:{ex.Message}");
}
}
/// <summary>
/// RCS取货检查
/// </summary>
/// <param name="stationName"></param>
/// <returns></returns>
public BllResult PickCheck(string stationName)
{
try
{
var equipment = App.EquipmentList.FirstOrDefault(t => t.Name == stationName);
if (equipment == null)
{
return BllResult.Error($"RCS处理【取货检查】失败,设备【{stationName}】不存在,请检查设备表!");
}
if (!Enum.TryParse(equipment.Type, out EnumPLC.EquipmentType equipmentType))
{
return BllResult.Error($"RCS处理【取货检查】失败,设备类型【{equipment.Type}】不支持!");
}
switch (equipmentType)
{
case EnumPLC.EquipmentType.HuaHengStation:
return PickCheckByHuaheng(equipment);
default: return BllResult.Error();
}
}
catch (Exception ex)
{
return BllResult.Error($"RCS处理站台【{stationName}】的【取货检查】失败.异常:{ex.Message}");
}
}
/// <summary>
/// RCS取货请求
/// </summary>
/// <param name="stationName"></param>
/// <returns></returns>
public BllResult RequestPick(string stationName)
{
try
{
var equipment = App.EquipmentList.FirstOrDefault(t => t.Name == stationName);
if (equipment == null)
{
return BllResult.Error($"RCS处理【取货】失败,设备【{stationName}】不存在,请检查设备表!");
}
if (!Enum.TryParse(equipment.Type, out EnumPLC.EquipmentType equipmentType))
{
return BllResult.Error($"RCS处理【取货】失败,设备类型【{equipment.Type}】不支持!");
}
switch (equipmentType)
{
case EnumPLC.EquipmentType.HuaHengStation:
return RequestPickByHuaheng(equipment);
case EnumPLC.EquipmentType.ShearsIn:
return BllResult.Error($"RCS处理【取货】失败,设备【{equipment.Name}】只能放货,不能取货!");
case EnumPLC.EquipmentType.ShearsOut:
return RequestPickByShearsOut(equipment);
default: return BllResult.Error();
}
}
catch (Exception ex)
{
return BllResult.Error($"RCS处理站台【{stationName}】的【取货】失败.异常:{ex.Message}");
}
}
/// <summary>
/// RCS取货完成
/// </summary>
/// <param name="stationName"></param>
/// <returns></returns>
public BllResult CompletePick(string stationName)
{
try
{
var equipment = App.EquipmentList.FirstOrDefault(t => t.Name == stationName);
if (equipment == null)
{
return BllResult.Error($"RCS处理【取货完成】失败,设备【{stationName}】不存在,请检查设备表!");
}
if (!Enum.TryParse(equipment.Type, out EnumPLC.EquipmentType equipmentType))
{
return BllResult.Error($"RCS处理【取货完成】失败,设备类型【{equipment.Type}】不支持!");
}
switch (equipmentType)
{
case EnumPLC.EquipmentType.HuaHengStation:
return CompletePickByHuaheng(equipment);
case EnumPLC.EquipmentType.ShearsIn:
return BllResult.Error($"RCS处理【取货完成】失败,设备【{equipment.Name}】只能放货,不能取货!");
case EnumPLC.EquipmentType.ShearsOut:
return CompletePickByShearsOut(equipment);
default: return BllResult.Error();
}
}
catch (Exception ex)
{
return BllResult.Error($"RCS处理站台【{stationName}】的【取货完成】失败.异常:{ex.Message}");
}
}
/// <summary>
/// RCS放货检查
/// </summary>
/// <param name="stationName"></param>
/// <returns></returns>
public BllResult PutCheck(string stationName)
{
try
{
var equipment = App.EquipmentList.FirstOrDefault(t => t.Name == stationName);
if (equipment == null)
{
return BllResult.Error($"RCS处理【放货检查】失败,设备【{stationName}】不存在,请检查设备表!");
}
if (!Enum.TryParse(equipment.Type, out EnumPLC.EquipmentType equipmentType))
{
return BllResult.Error($"RCS处理【放货检查】失败,设备类型【{equipment.Type}】不支持!");
}
switch (equipmentType)
{
case EnumPLC.EquipmentType.HuaHengStation:
return PutCheckByHuaheng(equipment);
default: return BllResult.Error();
}
}
catch (Exception ex)
{
return BllResult.Error($"RCS处理站台【{stationName}】的【放货检查】失败.异常:{ex.Message}");
}
}
/// <summary>
/// RCS放货请求
/// </summary>
/// <param name="stationName"></param>
/// <returns></returns>
public BllResult RequestPut(string stationName, params object[] requestValues)
{
try
{
string barcodeValue = requestValues.FirstOrDefault() as string;
var equipment = App.EquipmentList.FirstOrDefault(t => t.Name == stationName);
if (equipment == null)
{
return BllResult.Error($"RCS处理【放货】失败,设备【{stationName}】不存在,请检查设备表!");
}
if (!Enum.TryParse(equipment.Type, out EnumPLC.EquipmentType equipmentType))
{
return BllResult.Error($"RCS处理【放货】失败,设备类型【{equipment.Type}】不支持!");
}
switch (equipmentType)
{
case EnumPLC.EquipmentType.HuaHengStation:
return RequestPutByHuaheng(equipment, barcodeValue);
case EnumPLC.EquipmentType.ShearsIn:
return RequestPutByShearsIn(equipment);
case EnumPLC.EquipmentType.ShearsOut:
return BllResult.Error($"RCS处理【放货】失败,设备【{equipment.Name}】只能取货,不能放货!");
default: return BllResult.Error();
}
}
catch (Exception ex)
{
return BllResult.Error($"RCS处理站台【{stationName}】的【放货】失败.异常:{ex.Message}");
}
}
/// <summary>
/// AGV放货完成
/// </summary>
/// <param name="stationName"></param>
/// <param name="barcodeValue"></param>
/// <returns></returns>
public BllResult CompletePut(string stationName)
{
try
{
var equipment = App.EquipmentList.FirstOrDefault(t => t.Name == stationName);
if (equipment == null)
{
return BllResult.Error($"RCS处理【放货完成】失败,设备【{stationName}】不存在,请检查设备表!");
}
if (!Enum.TryParse(equipment.Type, out EnumPLC.EquipmentType equipmentType))
{
return BllResult.Error($"RCS处理【放货完成】失败,设备类型【{equipment.Type}】不支持!");
}
switch (equipmentType)
{
case EnumPLC.EquipmentType.HuaHengStation:
return CompletePutByHuaheng(equipment);
case EnumPLC.EquipmentType.ShearsIn:
return CompletePutByShearsIn(equipment);
case EnumPLC.EquipmentType.ShearsOut:
return BllResult.Error($"RCS处理【放货完成】失败,设备【{equipment.Name}】只能取货,不能放货!");
default: return BllResult.Error();
}
}
catch (Exception ex)
{
return BllResult.Error($"RCS处理站台【{stationName}】的【放货完成】失败.异常:{ex.Message}");
}
}
#endregion
#region 门的操作
/// <summary>
/// 开门请求
/// </summary>
/// <param name="equipmentName">设备编码</param>
/// <returns></returns>
public BllResult OpenDoor(string equipmentName)
{
try
{
var equipment = App.EquipmentList.FirstOrDefault(t => t.Name == equipmentName);
if (equipment == null)
{
return BllResult.Error($"RCS处理【清除站台信号】失败,设备【{equipmentName}】不存在,请检查设备表!");
}
//var result = PLCHelper.Instance.Reads(equipment.EquipmentProps);
//if (!result.Success)
//{
// App.ExFile.MessagePLC("PLCHelper", $"RCS处理站台【{barcode}】的设备【{equipment.Name}】开门请求,读取PLC发生错误:{result.Msg}");
// return BllResult.Error();
//}
return OpenDoor(equipment);
}
catch (Exception ex)
{
return BllResult.Error($"RCS处理站台【{equipmentName}】的【开门请求】失败.异常:{ex.Message}");
}
}
/// <summary>
/// 关门
/// </summary>
/// <param name="equipmentName">设备编码</param>
/// <returns></returns>
public BllResult CloseDoor(string equipmentName)
{
try
{
var equipment = App.EquipmentList.FirstOrDefault(t => t.Name == equipmentName);
if (equipment == null)
{
return BllResult.Error($"RCS处理【关门】失败,设备【{equipmentName}】不存在,请检查设备表!");
}
//var result = PLCHelper.Instance.Reads(equipment.EquipmentProps);
//if (!result.Success)
//{
// App.ExFile.MessagePLC("PLCHelper", $"RCS处理站台【{barcode}】的设备【{equipment.Name}】关门请求,读取PLC发生错误:{result.Msg}");
// return BllResult.Error();
//}
return CloseDoor(equipment);
}
catch (Exception ex)
{
return BllResult.Error($"RCS处理站台【{equipmentName}】的【关门请求】失败.异常:{ex.Message}");
}
}
#endregion
#region 生益门的处理
/// <summary>
/// 开门
/// </summary>
/// <param name="stationName"></param>
/// <returns></returns>
private BllResult OpenDoor(Base_Equipment equipment)
{
try
{
var openDoor = equipment[EnumPLC.PLCDoorProps.OpenDoor.ToString()];
var acsOpenDoor = equipment[EnumPLC.ACSDoorProps.ACSOpenDoor.ToString()];
var acsCloseDoor = equipment[EnumPLC.ACSDoorProps.ACSCloseDoor.ToString()];
#region 开门请求
if (acsCloseDoor.Value == EnumPLC.PLCBool.True.ToString() || acsOpenDoor.Value == EnumPLC.PLCBool.False.ToString())
{
acsOpenDoor.Value = EnumPLC.PLCBool.True.ToString();
acsCloseDoor.Value = EnumPLC.PLCBool.False.ToString();
var result = PLCHelper.Instance.Writes(new List<Base_EquipmentProp> { acsOpenDoor, acsCloseDoor });
if (result.Success)
{
var msg = $"RCS处理设备【{equipment.Name}】写入【开门请求】成功";
App.ExFile.MessageLog("PLCHelper", msg);
return BllResult.Error(msg);
}
else
{
var msg = $"RCS处理设备【{equipment.Name}】写入【开门请求】失败,原因:{result.Msg}";
App.ExFile.MessagePLC("PLCHelper", msg);
return BllResult.Error(msg);
}
}
if (openDoor.Value == EnumPLC.PLCBool.True.ToString())
{
var msg = $"PLC处理设备【{equipment.Name}】开门请求成功,门已经打开";
App.ExFile.MessageLog("PLCHelper", msg);
return BllResult.Sucess(msg);
}
else
{
var msg = $"RCS处理设备【{equipment.Name}】写入【开门】成功,等待门打开";
//App.ExFile.MessageLog("PLCHelperWaiting", msg);
return BllResult.Error(msg);
}
#endregion
#region 旧开门请求
//开门完成才成功,清除开门请求
//if (openDoor.Value == EnumPLC.PLCBool.True.ToString())
//{
// if (acsOpenDoor.Value == EnumPLC.PLCBool.False.ToString())
// {
// return BllResult.Sucess("门已经是开的!");
// }
// acsOpenDoor.Value = EnumPLC.PLCBool.False.ToString();
// var result = PLCHelper.Instance.Writes(acsOpenDoor);
// if (result.Success)
// {
// var msg = $"RCS处理设备【{equipment.Name}】清除【开门请求】成功";
// App.ExFile.MessageLog("PLCHelper", msg);
// return BllResult.Sucess(msg);
// }
// else
// {
// var msg = $"RCS处理设备【{equipment.Name}】清除【开门请求】失败,原因:{result.Msg}";
// App.ExFile.MessagePLC("PLCHelper", msg);
// return BllResult.Error(msg);
// }
//}
//else
//{
// // 先写入开门请求,等待开门
// if (acsOpenDoor.Value == EnumPLC.PLCBool.True.ToString())
// {
// return BllResult.Error("RCS已经向PLC写入【开门请求】信号,等待PLC响应");
// }
// acsCloseDoor.Value = EnumPLC.PLCBool.False.ToString();
// acsOpenDoor.Value = EnumPLC.PLCBool.True.ToString();
// var result = PLCHelper.Instance.Writes(new List<Base_EquipmentProp> { acsCloseDoor, acsOpenDoor});
// if (result.Success)
// {
// var msg = $"RCS处理设备【{equipment.Name}】写入【开门请求】成功";
// App.ExFile.MessageLog("PLCHelper", msg);
// return BllResult.Error(msg);
// }
// else
// {
// var msg = $"RCS处理设备【{equipment.Name}】写入【开门请求】失败,原因:{result.Msg}";
// App.ExFile.MessagePLC("PLCHelper", msg);
// return BllResult.Error(msg);
// }
//}
#endregion
}
catch (Exception ex)
{
var msg = $"RCS处理设备【{equipment.Name}】的【开门请求】发生异常,异常信息:{ex.Message},堆栈:{ex.StackTrace}";
App.ExFile.MessageLog("PLCHelper", msg);
return BllResult.Error(msg);
}
}
/// <summary>
/// 关门
/// </summary>
/// <param name="stationName"></param>
/// <returns></returns>
private BllResult CloseDoor(Base_Equipment equipment)
{
try
{
var closeDoor = equipment[EnumPLC.PLCDoorProps.CloseDoor.ToString()];
var acsCloseDoor = equipment[EnumPLC.ACSDoorProps.ACSCloseDoor.ToString()];
var acsOpenDoor = equipment[EnumPLC.ACSDoorProps.ACSOpenDoor.ToString()];
#region 开门前检查是否还有信号未清除,如果有就清除
//List<Base_EquipmentProp> props = new List<Base_EquipmentProp>();
//var requestCodes = new string[] { EnumPLC.ACSDoorProps.ACSOpenDoor.ToString(), EnumPLC.ACSDoorProps.ACSCloseDoor.ToString() };
//foreach (var item in requestCodes)
//{
// var prop = equipment[item];
// if (prop.Value == EnumPLC.PLCBool.True.ToString())
// {
// prop.Value = EnumPLC.PLCBool.False.ToString();
// props.Add(prop);
// }
//}
//// 如果有请求信号没清除,就全部清除
//if (props.Count > 0)
//{
// // 只要有残留信号,就把请求也清除一遍
// acsOpenDoor.Value = EnumPLC.PLCBool.False.ToString();
// props.Add(acsOpenDoor);
// acsCloseDoor.Value = EnumPLC.PLCBool.False.ToString();
// props.Add(acsCloseDoor);
// var result = PLCHelper.Instance.Writes(props);
// if (result.Success)
// {
// var msg = $"RCS处理设备【{equipment.Name}】清除【开门信号】成功";
// App.ExFile.MessageLog("PLCHelper", msg);
// return BllResult.Error(msg);
// }
// else
// {
// var msg = $"RCS处理设备【{equipment.Name}】清除【开门信号】失败,原因:{result.Msg}";
// App.ExFile.MessagePLC("PLCHelper", msg);
// return BllResult.Error(msg);
// }
//}
#endregion
#region 关门请求
if (acsOpenDoor.Value == EnumPLC.PLCBool.True.ToString() || acsCloseDoor.Value == EnumPLC.PLCBool.False.ToString())
{
acsOpenDoor.Value = EnumPLC.PLCBool.False.ToString();
acsCloseDoor.Value = EnumPLC.PLCBool.True.ToString();
var result = PLCHelper.Instance.Writes(new List<Base_EquipmentProp> { acsOpenDoor, acsCloseDoor });
if (result.Success)
{
var msg = $"RCS处理设备【{equipment.Name}】写入【关门请求】成功";
App.ExFile.MessageLog("PLCHelper", msg);
return BllResult.Error(msg);
}
else
{
var msg = $"RCS处理设备【{equipment.Name}】写入【关门请求】失败,原因:{result.Msg}";
App.ExFile.MessagePLC("PLCHelper", msg);
return BllResult.Error(msg);
}
}
if (closeDoor.Value == EnumPLC.PLCBool.True.ToString())
{
var msg = $"PLC处理设备【{equipment.Name}】关门请求成功,门已经关闭";
App.ExFile.MessageLog("PLCHelper", msg);
return BllResult.Sucess(msg);
}
else
{
var msg = $"RCS处理设备【{equipment.Name}】写入【关门】成功,等待门关闭";
//App.ExFile.MessageLog("PLCHelperWaiting", msg);
return BllResult.Error(msg);
}
#endregion
#region 旧的关门代码
//if (closeDoor.Value == EnumPLC.PLCBool.True.ToString())
//{
// if (acsCloseDoor.Value == EnumPLC.PLCBool.False.ToString())
// {
// return BllResult.Sucess("门已经关闭");
// }
// //开门完成才成功,清除关门请求
// acsCloseDoor.Value = EnumPLC.PLCBool.False.ToString();
// var result = PLCHelper.Instance.Writes(acsCloseDoor);
// if (result.Success)
// {
// var msg = $"RCS处理设备【{equipment.Name}】清除【关门请求】成功";
// App.ExFile.MessageLog("PLCHelper", msg);
// return BllResult.Sucess(msg);
// }
// else
// {
// var msg = $"RCS处理设备【{equipment.Name}】清除【关门请求】失败,原因:{result.Msg}";
// App.ExFile.MessagePLC("PLCHelper", msg);
// return BllResult.Error(msg);
// }
//}
//else
//{
// // 先写入关门请求,等待关门
// if (acsCloseDoor.Value == EnumPLC.PLCBool.True.ToString())
// {
// return BllResult.Error("RCS已经向PLC写入【关门请求】信号,等待PLC响应");
// }
// acsOpenDoor.Value = EnumPLC.PLCBool.False.ToString();
// acsCloseDoor.Value = EnumPLC.PLCBool.True.ToString();
// var result = PLCHelper.Instance.Writes(new List<Base_EquipmentProp> { acsOpenDoor, acsCloseDoor });
// if (result.Success)
// {
// var msg = $"RCS处理设备【{equipment.Name}】写入【关门请求】成功";
// App.ExFile.MessageLog("PLCHelper", msg);
// return BllResult.Error(msg);
// }
// else
// {
// var msg = $"RCS处理设备【{equipment.Name}】写入【关门请求】失败,原因:{result.Msg}";
// App.ExFile.MessagePLC("PLCHelper", msg);
// return BllResult.Error(msg);
// }
//}
#endregion
}
catch (Exception ex)
{
var msg = $"RCS处理设备【{equipment.Name}】的【关门请求】发生异常,异常信息:{ex.Message},堆栈:{ex.StackTrace}";
App.ExFile.MessageLog("PLCHelper", msg);
return BllResult.Error(msg);
}
}
/// <summary>
/// 清空门的信号
/// </summary>
/// <param name="stationName"></param>
/// <returns></returns>
private BllResult ClearRequestByDoor(Base_Equipment equipment)
{
try
{
var equipmentProps = equipment.EquipmentProps.Where(t => t.Code.StartsWith("RCS")).ToList();
//var result = PLCHelper.Instance.Reads(equipmentProps);
//if (!result.Success)
//{
// App.ExFile.MessagePLC("PLCHelper", $"RCS处理设备【{equipment.Name}】清除信号,读取PLC失败!");
// return BllResult.Error();
//}
List<Base_EquipmentProp> props = new List<Base_EquipmentProp>();
foreach (var item in equipmentProps)
{
if (item.Value == EnumPLC.PLCBool.True.ToString())
{
item.Value = EnumPLC.PLCBool.False.ToString();
props.Add(item);
}
}
if (props.Count == 0)
{
var msg = $"RCS处理设备【{equipment.Name}】清除信号成功,没有需要清除的信号!";
App.ExFile.MessageLog("PLCHelper", msg);
return BllResult.Sucess(msg);
}
var result = PLCHelper.Instance.Writes(props);
if (result.Success)
{
var msg = $"RCS处理设备【{equipment.Name}】清除信号成功";
App.ExFile.MessageLog("PLCHelper", msg);
return BllResult.Sucess(msg);
}
else
{
var msg = $"RCS处理设备【{equipment.Name}】清除信号失败,原因:{result.Msg}!";
App.ExFile.MessagePLC("PLCHelper", msg);
return BllResult.Error(msg);
}
}
catch (Exception ex)
{
var msg = $"RCS处理设备【{equipment.Name}】清除信号发生异常,异常信息:{ex.Message},堆栈:{ex.StackTrace}";
App.ExFile.MessageLog("PLCHelper", msg);
return BllResult.Error(msg);
}
}
#endregion
#region 剪床站台处理
/// <summary>
/// AGV【清除信号】
/// </summary>
/// <param name="stationName"></param>
/// <param name="barcodeValue"></param>
/// <returns></returns>
private BllResult ClearRequestByShears(Base_Equipment equipment)
{
try
{
var equipmentProps = App.EquipmentList.Where(t => t.CADCode == equipment.CADCode)
.SelectMany(t => t.EquipmentProps)
.Where(t => t.Code.StartsWith("RCS"))
.ToList();
//var result = PLCHelper.Instance.Reads(equipmentProps);
//if (!result.Success)
//{
// App.ExFile.MessagePLC("PLCHelper", $"RCS处理设备【{equipment.Name}】清除信号,读取PLC失败!");
// return BllResult.Error();
//}
List<Base_EquipmentProp> props = new List<Base_EquipmentProp>();
foreach (var item in equipmentProps)
{
if (item.Value == EnumPLC.PLCBool.True.ToString())
{
item.Value = EnumPLC.PLCBool.False.ToString();
props.Add(item);
}
}
if (props.Count == 0)
{
var msg = $"RCS处理设备【{equipment.Name}】清除信号成功,没有需要清除的信号!";
App.ExFile.MessageLog("PLCHelper", msg);
return BllResult.Sucess(msg);
}
var result = PLCHelper.Instance.Writes(props);
if (result.Success)
{
var msg = $"RCS处理设备【{equipment.Name}】清除信号成功";
App.ExFile.MessageLog("PLCHelper", msg);
return BllResult.Sucess(msg);
}
else
{
var msg = $"RCS处理设备【{equipment.Name}】清除信号失败,原因:{result.Msg}!";
App.ExFile.MessagePLC("PLCHelper", msg);
return BllResult.Error(msg);
}
}
catch (Exception ex)
{
var msg = $"RCS处理设备【{equipment.Name}】清除信号发生异常,异常信息:{ex.Message},堆栈:{ex.StackTrace}";
App.ExFile.MessageLog("PLCHelper", msg);
return BllResult.Error(msg);
}
}
/// <summary>
/// AGV【放货请求】:RCS清除残留信号==>RCS给【放货请求】==>剪床给【允许放货】(交互完成)
/// </summary>
/// <param name="stationName"></param>
/// <param name="barcodeValue"></param>
/// <returns></returns>
private BllResult RequestPutByShearsIn(Base_Equipment equipment)
{
try
{
//var equipmentProps = App.Equipments.Where(t => t.CADCode == equipment.CADCode)
// .SelectMany(t => t.EquipmentProps)
// .Where(t => t.Code.StartsWith("RCS") || t.Code == EnumPLC.PLCShearsProps.ShearsReadyPut.ToString())
// .ToList();
//var result = PLCHelper.Instance.Reads(equipmentProps);
//if (!result.Success)
//{
// App.ExFile.MessagePLC("PLCHelper", $"RCS处理设备【{equipment.Name}】放货请求,读取PLC失败!");
// return BllResult.Error();
//}
List<Base_EquipmentProp> props = new List<Base_EquipmentProp>();
var acsRequestPut = equipment[EnumPLC.ACSShearsProps.ACSRequestPut.ToString()];
var shearsReadyPut = equipment[EnumPLC.PLCShearsProps.ShearsReadyPut.ToString()];
#region 1.检查是否还有未清除的请求信号,如果有就清除
//foreach (var item in equipmentProps.Where(t => t.Code != acsRequestPut.Code))
//{
// if (item.Value == EnumPLC.PLCBool.True.ToString())
// {
// item.Value = EnumPLC.PLCBool.False.ToString();
// props.Add(item);
// }
//}
//// 如果有请求信号没清除,就全部清除
//if (props.Count > 0)
//{
// // 只要有残留信号,就把请求也清除一遍
// acsRequestPut.Value = EnumPLC.PLCBool.False.ToString();
// props.Add(acsRequestPut);
// result = PLCHelper.Instance.Writes(props);
// if (result.Success)
// {
// var msg = $"RCS处理设备【{equipment.Name}】清除【请求信号】成功";
// App.ExFile.MessageLog("PLCHelper", msg);
// return BllResult.Error(msg);
// }
// else
// {
// var msg = $"RCS处理设备【{equipment.Name}】清除【请求信号】失败,{result.Msg}!";
// App.ExFile.MessagePLC("PLCHelper", msg);
// return BllResult.Error(msg);
// }
//}
#endregion
#region 2.判断是否允许放货,如果没有请求放货,就写入放货请求
if (shearsReadyPut.Value == EnumPLC.PLCBool.True.ToString())
{
return BllResult.Sucess();
}
if (acsRequestPut.Value == EnumPLC.PLCBool.True.ToString())
{
return BllResult.Error("RCS已经向PLC写入【放货请求】信号,等待PLC响应");
}
acsRequestPut.Value = EnumPLC.PLCBool.True.ToString();
var result = PLCHelper.Instance.Writes(acsRequestPut);
if (result.Success)
{
var msg = $"RCS处理设备【{equipment.Name}】写入【放货请求】成功";
App.ExFile.MessageLog("PLCHelper", msg);
return BllResult.Error(msg);
}
else
{
var msg = $"RCS处理设备【{equipment.Name}】写入【放货请求】失败,原因:{result.Msg}!";
App.ExFile.MessagePLC("PLCHelper", msg);
return BllResult.Error(msg);
}
#endregion
}
catch (Exception ex)
{
var msg = $"RCS处理设备【{equipment.Name}】的【放货请求】发生异常,异常信息:{ex.Message},堆栈:{ex.StackTrace}";
App.ExFile.MessageLog("PLCHelper", msg);
return BllResult.Error(msg);
}
}
/// <summary>
/// AGV【放货完成】:RCS清除残留信号==>剪床给【允许放货】==>RCS清除【放货请求】(交互完成)
/// </summary>
/// <param name="stationName"></param>
/// <param name="barcodeValue"></param>
/// <returns></returns>
private BllResult CompletePutByShearsIn(Base_Equipment equipment)
{
try
{
//var result = PLCHelper.Instance.Reads(equipment.EquipmentProps);
//if (!result.Success)
//{
// App.ExFile.MessagePLC("PLCHelper", $"RCS处理设备【{equipment.Name}】放货请求,读取PLC失败!");
// return BllResult.Error();
//}
List<Base_EquipmentProp> props = new List<Base_EquipmentProp>();
var acsRequestPut = equipment[EnumPLC.ACSShearsProps.ACSRequestPut.ToString()];
var completePick = equipment[EnumPLC.PLCShearsProps.CompletePick.ToString()];
#region 1.检查是否还有未清除的请求信号,如果有就清除
//var requestCodes = new string[] { EnumPLC.ACSShearsProps.ACSReadyPick.ToString(),
// EnumPLC.ACSShearsProps.ACSCompletePick.ToString()};
//foreach (var item in requestCodes)
//{
// var prop = equipment[item];
// if (prop.Value == EnumPLC.PLCBool.True.ToString())
// {
// prop.Value = EnumPLC.PLCBool.False.ToString();
// props.Add(prop);
// }
//}
//// 如果有请求信号没清除,就全部清除
//if (props.Count > 0)
//{
// // 只要有残留信号,就把请求也清除一遍
// acsRequestPut.Value = EnumPLC.PLCBool.False.ToString();
// props.Add(acsRequestPut);
// result = PLCHelper.Instance.Writes(props);
// if (result.Success)
// {
// var msg = $"RCS处理设备【{equipment.Name}】清除【请求信号】成功";
// App.ExFile.MessageLog("PLCHelper", msg);
// return BllResult.Error(msg);
// }
// else
// {
// var msg = $"RCS处理设备【{equipment.Name}】清除【请求信号】失败,原因:{result.Msg}!";
// App.ExFile.MessagePLC("PLCHelper", msg);
// return BllResult.Error(msg);
// }
//}
#endregion
#region 2.判断是否清除了放货请求,如果没有清除就清除掉
if (acsRequestPut.Value == EnumPLC.PLCBool.False.ToString())
{
return BllResult.Sucess();
}
if (completePick.Value == EnumPLC.PLCBool.False.ToString())
{
return BllResult.Error($"RCS等待剪床给出完成信号!");
}
acsRequestPut.Value = EnumPLC.PLCBool.False.ToString();
var result = PLCHelper.Instance.Writes(acsRequestPut);
if (result.Success)
{
var msg = $"RCS处理设备【{equipment.Name}】清除【放货请求】成功";
App.ExFile.MessageLog("PLCHelper", msg);
return BllResult.Sucess(msg);
}
else
{
var msg = $"RCS处理设备【{equipment.Name}】清除【放货请求】失败,原因:{result.Msg}!";
App.ExFile.MessagePLC("PLCHelper", msg);
return BllResult.Error(msg);
}
#endregion
}
catch (Exception ex)
{
var msg = $"RCS处理设备【{equipment.Name}】的【放货请求】发生异常,异常信息:{ex.Message},堆栈:{ex.StackTrace}";
App.ExFile.MessageLog("PLCHelper", msg);
return BllResult.Error(msg);
}
}
/// <summary>
/// AGV【取货请求】:RCS清除残留信号==>RCS给【取货请求】==>剪床给【允许取货】(交互完成)
/// </summary>
/// <param name="stationName"></param>
/// <param name="barcodeValue"></param>
/// <returns></returns>
private BllResult RequestPickByShearsOut(Base_Equipment equipment)
{
try
{
//var equipmentProps = App.Equipments.Where(t => t.CADCode == equipment.CADCode)
// .SelectMany(t => t.EquipmentProps)
// .Where(t => t.Code.StartsWith("RCS") || t.Code == EnumPLC.PLCShearsProps.ShearsRequestPut.ToString())
// .ToList();
//var result = PLCHelper.Instance.Reads(equipmentProps);
//if (!result.Success)
//{
// App.ExFile.MessagePLC("PLCHelper", $"RCS处理设备【{equipment.Name}】取货请求,读取PLC失败!");
// return BllResult.Error();
//}
List<Base_EquipmentProp> props = new List<Base_EquipmentProp>();
var shearsRequestPut = equipment[EnumPLC.PLCShearsProps.ShearsRequestPut.ToString()];
var acsReadyPick = equipment[EnumPLC.ACSShearsProps.ACSReadyPick.ToString()];
#region 1.检查是否还有未清除的允许信号,如果有就清除
//foreach (var item in equipmentProps.Where(t => t.Code != acsReadyPick.Code))
//{
// if (item.Value == EnumPLC.PLCBool.True.ToString())
// {
// item.Value = EnumPLC.PLCBool.False.ToString();
// props.Add(item);
// }
//}
//// 如果有请求信号没清除,就全部清除
//if (props.Count > 0)
//{
// // 只要有残留信号,就把【允许放货】信号也清除一遍
// acsReadyPick.Value = EnumPLC.PLCBool.False.ToString();
// props.Add(acsReadyPick);
// result = PLCHelper.Instance.Writes(props);
// if (result.Success)
// {
// var msg = $"RCS处理设备【{equipment.Name}】清除【允许放货】信号成功";
// App.ExFile.MessageLog("PLCHelper", msg);
// return BllResult.Error(msg);
// }
// else
// {
// var msg = $"RCS处理设备【{equipment.Name}】清除【允许放货】信号失败,原因:{result.Msg}!";
// App.ExFile.MessagePLC("PLCHelper", msg);
// return BllResult.Error(msg);
// }
//}
#endregion
#region 2.如果剪床请求放货,且RCS没有允许放货,就写入允许信号
if (shearsRequestPut.Value == EnumPLC.PLCBool.True.ToString())
{
acsReadyPick.Value = EnumPLC.PLCBool.True.ToString();
var result = PLCHelper.Instance.Writes(acsReadyPick);
if (result.Success)
{
var msg = $"RCS处理设备【{equipment.Name}】写入【允许放货】成功";
App.ExFile.MessageLog("PLCHelper", msg);
return BllResult.Sucess(msg);
}
else
{
var msg = $"RCS处理设备【{equipment.Name}】写入【允许放货】失败,原因:{result.Msg}!";
App.ExFile.MessagePLC("PLCHelper", msg);
return BllResult.Error(msg);
}
}
else
{
return BllResult.Error($"设备【{equipment.Name}】没有请求放货,AGV等待剪床【请求放货】信号");
}
#endregion
}
catch (Exception ex)
{
var msg = $"RCS处理设备【{equipment.Name}】的【取货请求】发生异常,异常信息:{ex.Message},堆栈:{ex.StackTrace}";
App.ExFile.MessageLog("PLCHelper", msg);
return BllResult.Error(msg);
}
}
/// <summary>
/// AGV【取货完成】:RCS给【取货完成】==>剪床清除【放货请求】==>RCS清除【取货完成】
/// </summary>
/// <param name="stationName"></param>
/// <returns></returns>
private BllResult CompletePickByShearsOut(Base_Equipment equipment)
{
try
{
//var result = PLCHelper.Instance.Reads(equipment.EquipmentProps);
//if (!result.Success)
//{
// App.ExFile.MessagePLC("PLCHelper", $"RCS处理设备【{equipment.Name}】取货完成,读取PLC失败!");
// return BllResult.Error();
//}
BllResult<List<string>> result;
var shearsRequestPut = equipment[EnumPLC.PLCShearsProps.ShearsRequestPut.ToString()];
var acsReadyPick = equipment[EnumPLC.ACSShearsProps.ACSReadyPick.ToString()];
var acsCompletePick = equipment[EnumPLC.ACSShearsProps.ACSCompletePick.ToString()];
List<Base_EquipmentProp> props = new List<Base_EquipmentProp>();
#region 如果剪床还有【放货请求】, RCS没有发出【取货完成】信号就发送,如果已经发送就等待剪床清除【放货请求】
if (shearsRequestPut.Value == EnumPLC.PLCBool.True.ToString())
{
if (acsCompletePick.Value == EnumPLC.PLCBool.False.ToString())
{
acsReadyPick.Value = EnumPLC.PLCBool.False.ToString();
acsCompletePick.Value = EnumPLC.PLCBool.True.ToString();
props.Add(acsReadyPick);
props.Add(acsCompletePick);
result = PLCHelper.Instance.Writes(props);
if (result.Success)
{
var msg = $"RCS处理设备【{equipment.Name}】写入【取货完成】成功";
App.ExFile.MessageLog("PLCHelper", msg);
return BllResult.Error(msg);
}
else
{
var msg = $"RCS处理设备【{equipment.Name}】写入【取货完成】失败,原因:{result.Msg}!";
App.ExFile.MessagePLC("PLCHelper", msg);
return BllResult.Error(msg);
}
}
else
{
var msg = $"RCS已经给设备【{equipment.Name}】发送了【取货完成】信号,等待剪床取消放货请求!";
return BllResult.Error(msg);
}
}
#endregion
#region 如果剪床清除了【放货请求】,RCS也清除全部信号
props.Clear();
if (acsReadyPick.Value == EnumPLC.PLCBool.True.ToString())
{
acsReadyPick.Value = EnumPLC.PLCBool.False.ToString();
props.Add(acsReadyPick);
}
if (acsCompletePick.Value == EnumPLC.PLCBool.True.ToString())
{
acsCompletePick.Value = EnumPLC.PLCBool.False.ToString();
props.Add(acsCompletePick);
}
if (props.Count == 0)
{
return BllResult.Sucess();
}
result = PLCHelper.Instance.Writes(props);
if (result.Success)
{
var msg = $"RCS处理设备【{equipment.Name}】清除【取货完成】成功";
App.ExFile.MessageLog("PLCHelper", msg);
return BllResult.Sucess(msg);
}
else
{
var msg = $"RCS处理设备【{equipment.Name}】清除【取货完成】失败,原因:{result.Msg}!";
App.ExFile.MessagePLC("PLCHelper", msg);
return BllResult.Error(msg);
}
#endregion
}
catch (Exception ex)
{
var msg = $"RCS处理设备【{equipment.Name}】的【取货完成】发生异常,异常信息:{ex.Message},堆栈:{ex.StackTrace}";
App.ExFile.MessageLog("PLCHelper", msg);
return BllResult.Error(msg);
}
}
#endregion
#region 华恒站台的处理
/// <summary>
/// 清除华恒站台信号
/// </summary>
/// <param name="equipment"></param>
/// <returns></returns>
public BllResult ClearRequestByHuaheng(Base_Equipment equipment)
{
try
{
//所有RCS开头的都是RCS写入的设备属性
var equipmentProps = equipment.EquipmentProps.Where(t => t.Code != EnumPLC.ACSHuaHengProps.ACSPlaceholder.ToString() &&
t.Code.StartsWith("RCS")).ToList();
//var result = PLCHelper.Instance.Reads(equipmentProps);
//if (!result.Success)
//{
// App.ExFile.MessagePLC("PLCHelper", $"RCS处理站台【{equipment.Name}】的设备【{equipment.Name}】清除信号,读取PLC失败!");
// return BllResult.Error();
//}
List<Base_EquipmentProp> props = new List<Base_EquipmentProp>();
foreach (var prop in equipmentProps)
{
if (prop.Value == EnumPLC.PLCBool.True.ToString())
{
prop.Value = EnumPLC.PLCBool.False.ToString();
props.Add(prop);
}
}
if (props.Count == 0)
{
var msg = $"RCS处理设备【{equipment.Name}】清除信号成功,没有需要清除的信号!";
App.ExFile.MessageLog("PLCHelper", msg);
return BllResult.Sucess(msg);
}
var result = PLCHelper.Instance.Writes(props);
if (result.Success)
{
var msg = $"RCS清除设备【{equipment.Name}】信号成功!";
App.ExFile.MessageLog("PLCHelper", msg);
return BllResult.Sucess(msg);
}
else
{
var msg = $"RCS清除设备【{equipment.Name}】信号失败,原因:{result.Msg}!";
App.ExFile.MessagePLC("PLCHelper", msg);
return BllResult.Error(msg);
}
}
catch (Exception ex)
{
var msg = $"RCS处理设备【{equipment.Name}】清除信号发生异常,异常信息:{ex.Message},堆栈:{ex.StackTrace}";
App.ExFile.MessageLog("PLCHelper", msg);
return BllResult.Error(msg);
}
}
/// <summary>
/// 请求预占(一个站台又出又入,提供多个AGV共用,就要抢占,不然都去放货就卡死)
/// </summary>
/// <param name="equipment">设备</param>
/// <param name="ACSPlaceholderValue">是否占用</param>
/// <returns></returns>
private BllResult RequestPlaceholder(Base_Equipment equipment, string acsPlaceholderValue)
{
try
{
BllResult<List<string>> result;
var operate = acsPlaceholderValue == EnumPLC.ACSPlaceholder.出库预占.GetIndexString() ? "写入" : "清除";
var acsPlaceholder = equipment[EnumPLC.ACSHuaHengProps.ACSPlaceholder.ToString()];
if (acsPlaceholder.Value != EnumPLC.ACSPlaceholder.无预占.GetIndexString())
{
var msg = $"RCS处理设备【{equipment.Name}】{operate}【请求预占】失败,因为站台的预占状态不是【{EnumPLC.ACSPlaceholder.无预占}】,不能更改!";
App.ExFile.MessagePLC("PLCHelper", msg);
return BllResult.Error(msg);
}
acsPlaceholder.Value = acsPlaceholderValue;
result = PLCHelper.Instance.Writes(acsPlaceholder);
if (result.Success)
{
var msg = $"RCS处理设备【{equipment.Name}】{operate}【请求预占】成功";
App.ExFile.MessageLog("PLCHelper", msg);
return BllResult.Sucess(msg);
}
else
{
var msg = $"RCS处理设备【{equipment.Name}】{operate}【请求预占】失败,原因:{result.Msg}!";
App.ExFile.MessagePLC("PLCHelper", msg);
return BllResult.Error(msg);
}
}
catch (Exception ex)
{
var msg = $"RCS处理设备【{equipment.Name}】的【请求预占】发生异常,异常信息:{ex.Message},堆栈:{ex.StackTrace}";
App.ExFile.MessageLog("PLCHelper", msg);
return BllResult.Error(msg);
}
}
/// <summary>
/// 华恒站台【取货检查】:检查是否有货
/// </summary>
/// <param name="equipment"></param>
/// <returns></returns>
private BllResult PickCheckByHuaheng(Base_Equipment equipment)
{
try
{
var placeholder = equipment[EnumPLC.PLCHuaHengProps.Placeholder.ToString()];
if (placeholder == null)
{
return BllResult.Error($"设备【{equipment.Name}】没有是否有货信号!");
}
if (placeholder.Value == EnumPLC.PLCBool.False.ToString())
{
return BllResult.Error($"设备【{equipment.Name}】无货不能取货!");
}
else
{
return BllResult.Sucess();
}
}
catch (Exception ex)
{
var msg = $"RCS处理设备【{equipment.Name}】的【取货检查】发生异常,异常信息:{ex.Message},堆栈:{ex.StackTrace}";
App.ExFile.MessageLog("PLCHelper", msg);
return BllResult.Error(msg);
}
}
/// <summary>
/// 华恒站台【取货请求】:RCS给【取货请求】==>PLC给【允许取货】
/// </summary>
/// <param name="equipment"></param>
/// <returns></returns>
private BllResult RequestPickByHuaheng(Base_Equipment equipment)
{
try
{
var acsRequestPick = equipment[EnumPLC.ACSHuaHengProps.ACSRequestPick.ToString()];
var converyorReadyPick = equipment[EnumPLC.PLCHuaHengProps.ConveryorReadyPick.ToString()];
var msg = string.Empty;
if (acsRequestPick.Value == EnumPLC.PLCBool.False.ToString())
{
acsRequestPick.Value = EnumPLC.PLCBool.True.ToString();
var result = PLCHelper.Instance.Writes(acsRequestPick);
if (result.Success)
{
msg = $"RCS处理设备【{equipment.Name}】写入【取货请求】成功";
App.ExFile.MessageLog("PLCHelper", msg);
return BllResult.Error(msg);
}
else
{
msg = $"RCS处理设备【{equipment.Name}】写入【取货请求】失败,原因:{result.Msg}!";
App.ExFile.MessagePLC("PLCHelper", msg);
return BllResult.Error(msg);
}
}
if (converyorReadyPick.Value == EnumPLC.PLCBool.False.ToString())
{
return BllResult.Error("RCS已经向PLC写入【取货请求】信号,等待PLC响应");
}
msg = $"RCS处理设备【{equipment.Name}】的【取货请求】成功,设备现在允许取货";
App.ExFile.MessageLog("PLCHelper", msg);
return BllResult.Sucess(msg);
}
catch (Exception ex)
{
var msg = $"RCS处理设备【{equipment.Name}】的【取货请求】发生异常,异常信息:{ex.Message},堆栈:{ex.StackTrace}";
App.ExFile.MessageLog("PLCHelper", msg);
return BllResult.Error(msg);
}
}
/// <summary>
/// 华恒站台【取货完成】:PLC给【取货完成】==>RCS清除【取货请求】
/// </summary>
/// <param name="equipment"></param>
/// <returns></returns>
private BllResult CompletePickByHuaheng(Base_Equipment equipment)
{
try
{
var acsRequestPick = equipment[EnumPLC.ACSHuaHengProps.ACSRequestPick.ToString()];
var completePick = equipment[EnumPLC.PLCHuaHengProps.CompletePick.ToString()];
var converyorReadyPick = equipment[EnumPLC.PLCHuaHengProps.ConveryorReadyPick.ToString()];
if (converyorReadyPick.Value == EnumPLC.PLCBool.True.ToString() && completePick.Value == EnumPLC.PLCBool.False.ToString())
{
return BllResult.Error("等待PLC给出【取货完成】信号!");
}
acsRequestPick.Value = EnumPLC.PLCBool.False.ToString();
var result = PLCHelper.Instance.Writes(acsRequestPick);
if (result.Success)
{
var msg = $"RCS处理设备【{equipment.Name}】的【取货完成】成功,清除【取货请求】信号成功";
App.ExFile.MessageLog("PLCHelper", msg);
return BllResult.Sucess(msg);
}
else
{
var msg = $"RCS处理设备【{equipment.Name}】的【取货完成】失败,清除【取货请求】信号失败,原因:{result.Msg}!";
App.ExFile.MessagePLC("PLCHelper", msg);
return BllResult.Error(msg);
}
}
catch (Exception ex)
{
var msg = $"RCS处理设备【{equipment.Name}】的【取货完成】发生异常,异常信息:{ex.Message},堆栈:{ex.StackTrace}";
App.ExFile.MessageLog("PLCHelper", msg);
return BllResult.Error(msg);
}
}
/// <summary>
/// 华恒站台【放货检查】:检查是否无货
/// </summary>
/// <param name="equipment"></param>
/// <param name="barcodeValue"></param>
/// <returns></returns>
private BllResult PutCheckByHuaheng(Base_Equipment equipment)
{
try
{
var placeholder = equipment[EnumPLC.PLCHuaHengProps.Placeholder.ToString()];
if (placeholder == null)
{
return BllResult.Error($"设备【{equipment.Name}】没有是否有货信号!");
}
if (placeholder.Value == EnumPLC.PLCBool.True.ToString())
{
return BllResult.Error($"设备【{equipment.Name}】有货不能放货!");
}
else
{
return BllResult.Sucess();
}
}
catch (Exception ex)
{
var msg = $"RCS处理设备【{equipment.Name}】的【放货检查】发生异常,异常信息:{ex.Message},堆栈:{ex.StackTrace}";
App.ExFile.MessageLog("PLCHelper", msg);
return BllResult.Error(msg);
}
}
/// <summary>
/// 华恒站台【放货请求】:RCS给【放货请求】==>PLC给【允许放货】
/// </summary>
/// <param name="equipment"></param>
/// <param name="barcodeValue"></param>
/// <returns></returns>
private BllResult RequestPutByHuaheng(Base_Equipment equipment, string barcodeValue)
{
try
{
var acsBarcode = equipment[EnumPLC.ACSHuaHengProps.ACSBarcode.ToString()];
var acsRequestPut = equipment[EnumPLC.ACSHuaHengProps.ACSRequestPut.ToString()];
var converyorReadyPut = equipment[EnumPLC.PLCHuaHengProps.ConveryorReadyPut.ToString()];
var msg = string.Empty;
if (acsRequestPut.Value == EnumPLC.PLCBool.False.ToString())
{
acsBarcode.Value = barcodeValue;
acsRequestPut.Value = EnumPLC.PLCBool.True.ToString();
var result = PLCHelper.Instance.Writes(new List<Base_EquipmentProp> { acsBarcode, acsRequestPut });
if (result.Success)
{
msg = $"RCS处理设备【{equipment.Name}】写入【放货请求、条码】成功";
App.ExFile.MessageLog("PLCHelper", msg);
return BllResult.Error(msg);
}
else
{
msg = $"RCS处理设备【{equipment.Name}】写入【放货请求、条码】失败,原因:{result.Msg}!";
App.ExFile.MessagePLC("PLCHelper", msg);
return BllResult.Error(msg);
}
}
if (converyorReadyPut.Value == EnumPLC.PLCBool.False.ToString())
{
return BllResult.Error("RCS已经向PLC写入【放货请求】信号,等待PLC响应");
}
msg = $"RCS处理设备【{equipment.Name}】的【放货请求】成功,设备现在允许放货";
App.ExFile.MessageLog("PLCHelper", msg);
return BllResult.Sucess(msg);
}
catch (Exception ex)
{
var msg = $"RCS处理设备【{equipment.Name}】的【放货请求】发生异常,异常信息:{ex.Message},堆栈:{ex.StackTrace}";
App.ExFile.MessageLog("PLCHelper", msg);
return BllResult.Error(msg);
}
}
/// <summary>
/// 华恒站台【放货完成】:PLC给出【放货完成】==>RCS清除【放货请求】
/// </summary>
/// <param name="equipment"></param>
/// <returns></returns>
private BllResult CompletePutByHuaheng(Base_Equipment equipment)
{
try
{
var acsBarcode = equipment[EnumPLC.ACSHuaHengProps.ACSBarcode.ToString()];
var acsRequestPut = equipment[EnumPLC.ACSHuaHengProps.ACSRequestPut.ToString()];
var converyorReadyPut = equipment[EnumPLC.PLCHuaHengProps.ConveryorReadyPut.ToString()];
var completePut = equipment[EnumPLC.PLCHuaHengProps.CompletePut.ToString()];
if (converyorReadyPut.Value == EnumPLC.PLCBool.True.ToString() && completePut.Value == EnumPLC.PLCBool.False.ToString())
{
return BllResult.Error("等待PLC给出【放货完成】信号!");
}
acsBarcode.Value = "";
acsRequestPut.Value = EnumPLC.PLCBool.False.ToString();
var result = PLCHelper.Instance.Writes(new List<Base_EquipmentProp> { acsBarcode, acsRequestPut });
if (result.Success)
{
var msg = $"RCS处理设备【{equipment.Name}】的【放货完成】,清除【请求放货、条码】成功";
App.ExFile.MessageLog("PLCHelper", msg);
return BllResult.Sucess(msg);
}
else
{
var msg = $"RCS处理设备【{equipment.Name}】的【放货完成】,清除【请求放货、条码】失败,原因:{result.Msg}!";
App.ExFile.MessagePLC("PLCHelper", msg);
return BllResult.Error(msg);
}
}
catch (Exception ex)
{
var msg = $"RCS处理设备【{equipment.Name}】的【放货完成】发生异常,异常信息:{ex.Message},堆栈:{ex.StackTrace}";
App.ExFile.MessageLog("PLCHelper", msg);
return BllResult.Error(msg);
}
}
#endregion
}
}