qinchulong
2025-03-29 039a4a5433e7f80adc88b491b549e5d9486e4f9a
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
using HslCommunication;
using HslCommunication.Core.Address;
using HslCommunication.Profinet.Siemens;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Net.NetworkInformation;
using System.Text;
using System.Threading;
using WIDESEA_Common;
using WIDESEA_Common.CutomerModel;
using WIDESEA_Core.Extensions;
using WIDESEA_Entity.DomainModels;
using WIDESEA_Services.Repositories;
using WIDESEA_WCS.WCSClient.Delta;
using WIDESEA_WCS.WCSClient.Melsec;
using WIDESEA_WCS.WCSClient.Omron;
using WIDESEA_WCS.WCSClient.Siemens;
 
namespace WIDESEA_WCS.WCSClient
{
    public class PLCClient
    {
        /// <summary>
        /// PLC连接名称
        /// </summary>
        public string PLCName { get; set; }
 
        /// <summary>
        /// PLC类型
        /// </summary>
        public string PLCType { get; set; }
 
        /// <summary>
        /// 西门子 PLC
        /// </summary>
        public SiemensPLCClient SiemensPLCClient { get; set; }
 
        /// <summary>
        /// 欧姆龙 PLC
        /// </summary>
        public OmronPLCClient OmronPLCClient { get; set; }
 
        public OmronCIPPLCClient OmronCIPPLCClient { get; set; }
 
        /// <summary>
        /// 三菱 PLC
        /// </summary>
        public MelsecPLCClient MelsecPLCClient { get; set; }
 
        /// <summary>
        /// 三菱 PLC5010端口
        /// </summary>
        public MelsecPLCClient5010 MelsecPLCClient5010 { get; set; }
 
        /// <summary>
        /// 三菱 PLC5011端口
        /// </summary>
        public MelsecPLCClient5011 MelsecPLCClient5011 { get; set; }
 
        public MelsecPLCClient5002 MelsecPLCClient5002 { get; set; }
 
        /// <summary>
        /// 台达PLC
        /// </summary>
        public DeltaPLCClient DeltaPLCClient { get; set; }
 
        /// <summary>
        /// 设备类型
        /// </summary>
        public string EquipType { get; set; }
 
        /// <summary>
        /// 设备编号
        /// </summary>
        public string PLCDescroption { get; set; }
        /// <summary>
        /// 下料地址
        /// </summary>
        public string PLCDownLoc { get; set; }
 
        /// <summary>
        /// 是否已连接
        /// </summary>
        public bool IsConnected { get; set; } = false;
 
        public PLCClient(string type, dt_plcinfohead plcinfohead)
        {
            PLCType = type;
            switch (type)
            {
                case "SiemensPLCClient":
                    SiemensPLCClient = new SiemensPLCClient(HslCommunication.Profinet.Siemens.SiemensPLCS.S1200)
                    {
                        PLCIPAddress = plcinfohead.plcinfo_ip,
                        PLCName = plcinfohead.plcinfo_name,
                        PLCDescroption = plcinfohead.plcinfo_remark,
                        PLCDBItems = dt_plcinfodetailRepository.Instance.Find(x => x.plcdetail_headid == plcinfohead.plcinfo_id).Select(x => new DBItemGroup { ItemAddress = x.plcdetail_db.Trim() + "." + x.plcdetail_value.Trim(), ItemDataType = x.plcdetail_valtype.Trim(), ItemName = x.plcdetail_name.Trim(), ItemOperatorType = x.plcdetail_opratortype?.Trim(), EquipNum = x.plcdetail_number.Trim(), Remark = x.plcdetail_remark.Trim() }).ToList(),
                        //Slot = 0
                    };
                    break;
                case "OmronPLCClient":
                    OmronPLCClient = new OmronPLCClient()
                    {
                        PLCIPAddress = plcinfohead.plcinfo_ip,
                        PLCName = plcinfohead.plcinfo_name,
                        PLCDescroption = plcinfohead.plcinfo_remark,
                        PLCDBItems = dt_plcinfodetailRepository.Instance.Find(x => x.plcdetail_headid == plcinfohead.plcinfo_id).Select(x => new DBItemGroup { ItemAddress = x.plcdetail_db.Trim() + "." + x.plcdetail_value.Trim(), ItemDataType = x.plcdetail_valtype.Trim(), ItemName = x.plcdetail_name.Trim(), ItemOperatorType = x.plcdetail_opratortype?.Trim(), EquipNum = x.plcdetail_number.Trim(), Remark = x.plcdetail_remark.Trim() }).ToList()
                    };
                    break;
                case "MecselPLCClient":
                    MelsecPLCClient = new MelsecPLCClient()
                    {
                        PLCIPAddress = plcinfohead.plcinfo_ip,
                        PLCName = plcinfohead.plcinfo_name,
                        PLCDescroption = plcinfohead.plcinfo_remark,
                        PLCDBItems = dt_plcinfodetailRepository.Instance.Find(x => x.plcdetail_headid == plcinfohead.plcinfo_id).Select(x => new DBItemGroup { ItemAddress = x.plcdetail_db.Trim() + "." + x.plcdetail_value.Trim(), ItemDataType = x.plcdetail_valtype.Trim(), ItemName = x.plcdetail_name.Trim(), ItemOperatorType = x.plcdetail_opratortype?.Trim(), EquipNum = x.plcdetail_number.Trim(), Remark = x.plcdetail_remark.Trim() }).ToList()
                    };
                    break;
                case "DeltaPLCClient":
                    DeltaPLCClient = new DeltaPLCClient()
                    {
                        PLCIPAddress = plcinfohead.plcinfo_ip,
                        PLCName = plcinfohead.plcinfo_name,
                        PLCDescroption = plcinfohead.plcinfo_remark,
                        PLCDBItems = dt_plcinfodetailRepository.Instance.Find(x => x.plcdetail_headid == plcinfohead.plcinfo_id).Select(x => new DBItemGroup { ItemAddress = x.plcdetail_db.Trim() + "." + x.plcdetail_value.Trim(), ItemDataType = x.plcdetail_valtype.Trim(), ItemName = x.plcdetail_name.Trim(), ItemOperatorType = x.plcdetail_opratortype?.Trim(), EquipNum = x.plcdetail_number.Trim(), Remark = x.plcdetail_remark.Trim() }).ToList()
                    };
                    break;
                case "MecselPLCClient5010":
                    MelsecPLCClient5010 = new MelsecPLCClient5010()
                    {
                        PLCIPAddress = plcinfohead.plcinfo_ip,
                        PLCName = plcinfohead.plcinfo_name,
                        PLCDescroption = plcinfohead.plcinfo_remark,
                        PLCDBItems = dt_plcinfodetailRepository.Instance.Find(x => x.plcdetail_headid == plcinfohead.plcinfo_id).Select(x => new DBItemGroup { ItemAddress = x.plcdetail_db.Trim() + "." + x.plcdetail_value.Trim(), ItemDataType = x.plcdetail_valtype.Trim(), ItemName = x.plcdetail_name.Trim(), ItemOperatorType = x.plcdetail_opratortype?.Trim(), EquipNum = x.plcdetail_number.Trim(), Remark = x.plcdetail_remark.Trim() }).ToList()
                    };
                    break;
                case "MecselPLCClient5011":
                    MelsecPLCClient5011 = new MelsecPLCClient5011()
                    {
                        PLCIPAddress = plcinfohead.plcinfo_ip,
                        PLCName = plcinfohead.plcinfo_name,
                        PLCDescroption = plcinfohead.plcinfo_remark,
                        PLCDBItems = dt_plcinfodetailRepository.Instance.Find(x => x.plcdetail_headid == plcinfohead.plcinfo_id).Select(x => new DBItemGroup { ItemAddress = x.plcdetail_db.Trim() + "." + x.plcdetail_value.Trim(), ItemDataType = x.plcdetail_valtype.Trim(), ItemName = x.plcdetail_name.Trim(), ItemOperatorType = x.plcdetail_opratortype?.Trim(), EquipNum = x.plcdetail_number.Trim(), Remark = x.plcdetail_remark.Trim() }).ToList()
                    };
                    break;
                case "MecselPLCClient5002":
                    MelsecPLCClient5002 = new MelsecPLCClient5002()
                    {
                        PLCIPAddress = plcinfohead.plcinfo_ip,
                        PLCName = plcinfohead.plcinfo_name,
                        PLCDescroption = plcinfohead.plcinfo_remark,
                        PLCDBItems = dt_plcinfodetailRepository.Instance.Find(x => x.plcdetail_headid == plcinfohead.plcinfo_id).Select(x => new DBItemGroup { ItemAddress = x.plcdetail_db.Trim() + "." + x.plcdetail_value.Trim(), ItemDataType = x.plcdetail_valtype.Trim(), ItemName = x.plcdetail_name.Trim(), ItemOperatorType = x.plcdetail_opratortype?.Trim(), EquipNum = x.plcdetail_number.Trim(), Remark = x.plcdetail_remark.Trim() }).ToList()
                    };
                    break;
                case "OmronCIPPLCClient":
                    OmronCIPPLCClient = new OmronCIPPLCClient()
                    {
                        PLCIPAddress = plcinfohead.plcinfo_ip,
                        PLCName = plcinfohead.plcinfo_name,
                        PLCDescroption = plcinfohead.plcinfo_remark,
                        PLCDBItems = dt_plcinfodetailRepository.Instance.Find(x => x.plcdetail_headid == plcinfohead.plcinfo_id).Select(x => new DBItemGroup { ItemAddress = x.plcdetail_db.Trim() , ItemDataType = x.plcdetail_valtype.Trim(), ItemName = x.plcdetail_name.Trim(), ItemOperatorType = x.plcdetail_opratortype?.Trim(), EquipNum = x.plcdetail_number.Trim(), Remark = x.plcdetail_remark.Trim() }).ToList()
                    };
                    break;
            }
        }
 
        #region 连接PLC,将短连接切换成长连接模式
        /// <summary>
        /// 连接PLC
        /// </summary>
        public string Connect()
        {
            string str = "";
            switch (PLCType)
            {
                case "SiemensPLCClient":
                    str = SiemensPLCClient.Connect();
                    IsConnected = SiemensPLCClient.IsConnected;
                    break;
                case "OmronPLCClient":
                    str = OmronPLCClient.Connect();
                    IsConnected = OmronPLCClient.IsConnected;
                    break;
                case "MecselPLCClient":
                    str = MelsecPLCClient.Connect();
                    IsConnected = MelsecPLCClient.IsConnected;
                    break;
                case "DeltaPLCClient":
                    str = DeltaPLCClient.Connect();
                    IsConnected = DeltaPLCClient.IsConnected;
                    break;
                case "MecselPLCClient5010":
                    str = MelsecPLCClient5010.Connect();
                    IsConnected = MelsecPLCClient5010.IsConnected;
                    break;
                case "MecselPLCClient5011":
                    str = MelsecPLCClient5011.Connect();
                    IsConnected = MelsecPLCClient5011.IsConnected;
                    break;
                case "MecselPLCClient5002":
                    str = MelsecPLCClient5002.Connect();
                    IsConnected = MelsecPLCClient5002.IsConnected;
                    break;
                case "OmronCIPPLCClient":
                    str = OmronCIPPLCClient.Connect();
                    IsConnected = OmronCIPPLCClient.IsConnected;
                    break;
            }
            return str;
        }
        #endregion
 
        #region 断开与PLC的连接,将短连接切换成长连接模式
        /// <summary>
        /// 断开与PLC的连接
        /// </summary>
        public void Disconnect()
        {
            switch (PLCType)
            {
                case "SiemensPLCClient1111":
                    SiemensPLCClient.Disconnect();
                    IsConnected = SiemensPLCClient.IsConnected;
                    break;
                case "OmronPLCClient":
                    OmronPLCClient.Disconnect();
                    IsConnected = OmronPLCClient.IsConnected;
                    break;
                case "MecselPLCClient5010":
                    MelsecPLCClient.Disconnect();
                    IsConnected = MelsecPLCClient.IsConnected;
                    break;
                case "MecselPLCClient5011":
                    MelsecPLCClient5011.Disconnect();
                    IsConnected = MelsecPLCClient5011.IsConnected;
                    break;
                case "MecselPLCClient5002":
                    MelsecPLCClient5002.Disconnect();
                    IsConnected = MelsecPLCClient5002.IsConnected;
                    break;
                case "OmronCIPPLCClient":
                    OmronCIPPLCClient.Disconnect();
                    IsConnected = OmronCIPPLCClient.IsConnected;
                    break;
            }
        }
        #endregion
 
        #region 根据名称/描述读取PLC数据
        /// <summary>
        /// 根据名称/描述读取PLC数据
        /// </summary>
        /// <param name="itemName">名称/描述(数据库中plcdetail_name列)</param>
        /// <returns></returns>
        public virtual object ReadValue(string itemName)
        {
            object result = null;
            switch (PLCType)
            {
                case "SiemensPLCClient":
                    result = SiemensPLCClient.ReadValue(itemName);
                    break;
                case "OmronPLCClient":
                    result = OmronPLCClient.ReadValue(itemName);
                    break;
                case "MelsecPLCClient":
                    result = MelsecPLCClient.ReadValue(itemName);
                    break;
            }
            return result;
        }
        #endregion
        public virtual object ReadBarcodeValue(string itemName)
        {
            object result = null;
            switch (PLCType)
            {
                case "SiemensPLCClient":
                    result = SiemensPLCClient.ReadBarcodeValue(itemName);
                    break;
                case "OmronPLCClient":
                    result = OmronPLCClient.ReadValue(itemName);
                    break;
                case "MelsecPLCClient":
                    result = MelsecPLCClient.ReadValue(itemName);
                    break;
            }
            return result;
        }
 
        #region 根据PLCDBItem读取PLC数据
        /// <summary>
        /// 根据PLCDBItem读取PLC数据
        /// </summary>
        /// <param name="item"></param>
        /// <returns></returns>
        public virtual object ReadValue(DBItemGroup item)
        {
            object result = null;
            switch (PLCType)
            {
                case "SiemensPLC":
                    result = SiemensPLCClient.ReadValue(item);
                    break;
                case "OmronPLC":
                    result = OmronPLCClient.ReadValue(item);
                    break;
                case "MelsecPLC":
                    result = MelsecPLCClient.ReadValue(item);
                    break;
            }
            return result;
        }
        #endregion
 
        #region 根据设备编号读取PLC数据
        /// <summary>
        /// 根据设备编号读取PLC数据
        /// </summary>
        /// <param name="equipNum">设备编号</param>
        /// <returns>json字符串</returns>
        public object ReadValues(string equipNum)
        {
            object result = null;
            switch (PLCType)
            {
                case "SiemensPLC":
                    result = SiemensPLCClient.ReadValues(equipNum);
                    break;
                case "OmronPLC":
                    result = OmronPLCClient.ReadValues(equipNum);
                    break;
                case "MelsecPLC":
                    result = MelsecPLCClient.ReadValues(equipNum);
                    break;
            }
            return result;
 
        }
        #endregion
 
        #region 根据名称/描述读取PLC数据返回设备编号和值的JSON字符串
        /// <summary>
        /// 根据名称/描述读取PLC数据返回设备编号和值的JSON字符串
        /// </summary>
        /// <param name="itemName">名称/描述(数据库中plcdetail_name列)</param>
        /// <returns>json字符串</returns>
        public string ReadValuesByItemName(string itemName)
        {
            object result = null;
            switch (PLCType)
            {
                case "SiemensPLC":
                    result = SiemensPLCClient.ReadValues(itemName);
                    break;
                case "OmronPLC":
                    result = OmronPLCClient.ReadValues(itemName);
                    break;
                case "MelsecPLC":
                    result = MelsecPLCClient.ReadValues(itemName);
                    break;
            }
            return result.Serialize();
 
        }
        #endregion
 
        #region 根据名称/描述和设备编号读取PLC数据
        /// <summary>
        /// 根据名称/描述和设备编号读取PLC数据
        /// </summary>
        /// <param name="itemName">名称/描述(数据库中plcdetail_name列)</param>
        /// <param name="equipNum">设备编号</param>
        /// <returns></returns>
        public virtual object ReadValue(string itemName, string equipNum)
        {
            object result = null;
            switch (PLCType)
            {
                case "SiemensPLCClient":
                    result = SiemensPLCClient.ReadValue(itemName, equipNum);
                    break;
                case "OmronPLCClient":
                    result = OmronPLCClient.ReadValue(itemName, equipNum);
                    break;
                case "MecselPLCClient":
                    result = MelsecPLCClient.ReadValue(itemName, equipNum);
                    break;
                case "DeltaPLCClient":
                    result = DeltaPLCClient.ReadValue(itemName, equipNum);
                    break;
                case "MecselPLCClient5010":
                    result = MelsecPLCClient5010.ReadValue(itemName, equipNum);
                    break;
                case "MecselPLCClient5002":
                    result = MelsecPLCClient5002.ReadValue(itemName, equipNum);
                    break;
                case "OmronCIPPLCClient":
                    result = OmronCIPPLCClient.ReadValue(itemName, equipNum);
                    break;
            }
            //return result.Serialize();
            return result;
        }
        #endregion
 
        #region 将数据写入到PLC中
        /// <summary>
        /// 将数据写入到PLC中
        /// </summary>
        /// <param name="itemName">名称/描述(数据库中plcdetail_name列)</param>
        /// <param name="value">写入的值</param>
        /// <returns></returns>
        public virtual bool WriteValue(string itemName, object value)
        {
            bool result = false;
            switch (PLCType)
            {
                case "SiemensPLCClient":
                    result = SiemensPLCClient.WriteValue(itemName, value);
                    break;
                case "OmronPLCClient":
                    result = OmronPLCClient.WriteValue(itemName, value);
                    break;
                case "MelsecPLCClient":
                    result = MelsecPLCClient.WriteValue(itemName, value);
                    break;
            }
            return result;
        }
        #endregion
        public virtual bool WriteBarcodeValue(string itemName, object value)
        {
            bool result = false;
            switch (PLCType)
            {
                case "SiemensPLCClient":
                    result = SiemensPLCClient.WriteBarcodeValue(itemName, value);
                    break;
                case "OmronPLCClient":
                    result = OmronPLCClient.WriteValue(itemName, value);
                    break;
                case "MelsecPLCClient":
                    result = MelsecPLCClient.WriteValue(itemName, value);
                    break;
            }
            return result;
        }
        #region 将数据写入到PLC中
        /// <summary>
        /// 将数据写入到PLC中
        /// </summary>
        /// <param name="itemName">名称/描述(数据库中plcdetail_name列)</param>
        /// <param name="value">写入的值</param>
        /// <returns></returns>
        public virtual bool WriteValue(string itemName, string equipNum, object value)
        {
            bool result = false;
            switch (PLCType)
            {
                case "SiemensPLCClient":
                    result = SiemensPLCClient.WriteValue(itemName, equipNum, value);
                    break;
                case "OmronPLCClient":
                    result = OmronPLCClient.WriteValue(itemName, equipNum, value);
                    break;
                case "MelsecPLCClient":
                    result = MelsecPLCClient.WriteValue(itemName, equipNum, value);
                    break;
                case "MecselPLCClient5010":
                    result = MelsecPLCClient5010.WriteValue(itemName, equipNum, value);
                    break;
                case "MecselPLCClient":
                    result = MelsecPLCClient.WriteValue(itemName, equipNum, value);
                    break;
                case "OmronCIPPLCClient":
                    result = OmronCIPPLCClient.WriteValue(itemName, equipNum, value);
                    break;
            }
            return result;
        }
        #endregion
 
    }
}