wangxinhui
2024-12-26 78b99e5348592a29ca1393a5e13db619cc4eba56
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
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
using System;
using System.Linq;
using System.Threading.Tasks;
using WIDESEA_Core.Utilities;
using WIDESEA_Entity.DomainModels;
using WIDESEA_WCS;
 
namespace WIDESEA_WCSServer.Controllers.ToWMS
{
    [Route("api/ToWMS")]
    [ApiController]
    public class ToWMSController : ControllerBase
    {
        /// <summary>
        /// 添加agv任务
        /// </summary>
        /// <param name="taskinfo"></param>
        /// <returns></returns>
        //[HttpPost, Route("AddAgvTask"), AllowAnonymous]
        //public WebResponseContent AddAgvTask([FromBody] dt_agvtask task)
        //{
        //    return new WCSHelpServer().AddAgvTask(task);
        //}
 
        /// <summary>
        /// WMS修改设备状态调用接口同步WCS设备状态并暂停调度
        /// </summary>
        /// <param name="saveModel"></param>
        /// <returns></returns>
        [HttpPost, HttpGet, Route("UpdateEquipState"), AllowAnonymous]
        public async Task<WebResponseContent> UpdateEquipState([FromBody] SaveModel saveModel)
        {
            return await Task.Run(() =>
            {
                return WCSService.PauseOrResumeJob(saveModel);
            });
        }
 
        [HttpPost, Route("WriteOrReadPLCData"), AllowAnonymous]
        public object WriteOrReadPLCData([FromBody] PLCInfo info)
        {
            try
            {
                var client = WIDESEA_WCS.WCSService.Clients?.FirstOrDefault(t => t.PLCName == info.plcName);
                if (client == null)
                {
                    throw new Exception("plcName不存在或未连接!");
                }
                if (info.type == "r")
                {
                    if (client.PLCType == "SiemensPLC")
                    {
                        if (info.dataType == "int")
                        {
                            info.value = client.SiemensPLCClient.Read<ushort>(info.address);
                        }
                        else if (info.dataType == "string")
                        {
                            info.value = client.SiemensPLCClient.Read<string>(info.address, info.len);
                        }
                        else if (info.dataType == "bool")
                        {
                            info.value = client.SiemensPLCClient.Read<bool>(info.address);
                        }
                        else if (info.dataType == "byte[]")
                        {
                            info.value = string.Join(',', client.SiemensPLCClient.Read<byte[]>(info.address, info.len).ToArray());
                        }
                        else
                        {
                            throw new Exception($"数据类型{info.dataType},未定义");
                        }
                    }
                    else if (client.PLCType == "OmronPLC")
                    {
                        if (info.dataType == "int")
                        {
                            info.value = client.SiemensPLCClient.Read<ushort>(info.address);
                        }
                        else if (info.dataType == "string")
                        {
                            info.value = client.SiemensPLCClient.Read<string>(info.address, info.len);
                        }
                        else if (info.dataType == "bool")
                        {
                            info.value = client.SiemensPLCClient.Read<bool>(info.address);
                        }
                        else if (info.dataType == "byte[]")
                        {
                            info.value = string.Join(',', client.SiemensPLCClient.Read<byte[]>(info.address, info.len).ToArray());
                        }
                        else
                        {
                            throw new Exception($"操作类型{info.dataType},未定义");
                        }
                    }
                    else
                    {
                        throw new Exception($"PLC类型{client.PLCType},未定义");
                    }
                }
                else if (info.type == "w")
                {
                    throw new Exception("为安全起见,不能进行写操作!");
                }
                else
                {
                    throw new Exception("操作类型不存在!");
                }
            }
            catch (Exception ex)
            {
                return info.Error(ex.Message);
            }
            return info.Success();
        }
 
 
        /// <summary>
        /// 获取AGV状态
        /// </summary>
        /// <param name="model"></param>
        /// <returns></returns>
        [HttpPost, Route("GetAgvStatusData"), AllowAnonymous]
        public WebResponseContent GetAgvStatusData([FromBody] SaveModel model)
        {
            return AGVData.GetAgvStatusData(model);
        }
        private static object gvTaskInfozz = new object();
        /// <summary>
        /// 树形任务完成量组装
        /// </summary>
        /// <param name="model"></param>
        /// <returns></returns>
        [HttpPost, Route("GetAgvTaskInfozz"), AllowAnonymous]
        public WebResponseContent GetAgvTaskInfozz([FromBody] SaveModel model)
        {
            lock (gvTaskInfozz)
            {
                return AGVData.GetAgvTaskInfozz(model);
            }
 
        }
        private static object gvTaskInfozj = new object();
        /// <summary>
        /// 树形任务完成量组装
        /// </summary>
        /// <param name="model"></param>
        /// <returns></returns>
        [HttpPost, Route("GetAgvTaskInfozj"), AllowAnonymous]
        public WebResponseContent GetAgvTaskInfozj([FromBody] SaveModel model)
        {
            lock (gvTaskInfozj)
            {
                return AGVData.GetAgvTaskInfozj(model);
            }
 
        }
        private static object gvTaskInfofj = new object();
        /// <summary>
        /// 树形任务完成量组装
        /// </summary>
        /// <param name="model"></param>
        /// <returns></returns>
        [HttpPost, Route("GetAgvTaskInfofj"), AllowAnonymous]
        public WebResponseContent GetAgvTaskInfofj([FromBody] SaveModel model)
        {
            lock (gvTaskInfofj)
            {
                return AGVData.GetAgvTaskInfofj(model);
            }
 
        }
        /// <summary>
        /// 获取空货位或者有货货位
        /// </summary>
        /// <param name="model"></param>
        /// <returns></returns>
        [HttpPost, Route("GetLocationEmptyOrStored"), AllowAnonymous]
        public WebResponseContent GetLocationEmptyOrStored([FromBody] SaveModel model)
        {
            return AGVData.GetLocationEmptyOrStored(model);
        }
 
        /// <summary>
        /// 获取区域货位数据
        /// </summary>
        /// <param name="model"></param>
        /// <returns></returns>
        [HttpPost, Route("GetLocationData"), AllowAnonymous]
        public WebResponseContent GetLocationData([FromBody] SaveModel model)
        {
            return AGVData.GetLocationData(model);
        }
 
        /// <summary>
        /// 获取AGV任务
        /// </summary>
        /// <param name="model"></param>
        /// <returns></returns>
        [HttpPost, Route("GetAGVTaskData"), AllowAnonymous]
        public WebResponseContent GetAGVTaskData([FromBody] SaveModel model)
        {
            return AGVData.GetAGVTaskData(model);
        }
 
        /// <summary>
        /// 获取提升机信息
        /// </summary>
        /// <param name="model"></param>
        /// <returns></returns>
        [HttpPost, Route("GetTSJInfo"), AllowAnonymous]
        public WebResponseContent GetTSJInfo([FromBody] SaveModel model)
        {
            return AGVData.GetTSJInfo(model);
        }
 
        /// <summary>
        /// 获取多个提升机信息
        /// </summary>
        /// <param name="model"></param>
        /// <returns></returns>
        //[HttpPost, Route("GetTSJInfos"), AllowAnonymous]
        //public WebResponseContent GetTSJInfos([FromBody] SaveModel model)
        //{
        //    return AGVData.GetTSJInfos(model);
        //}
    }
 
    public class PLCInfo
    {
        /// <summary>
        /// 读取r,写入w
        /// </summary>
        public string type { get; set; } = "r";
 
        /// <summary>
        /// 指令
        /// </summary>
        public string address { get; set; }
 
        public int len { get; set; }
 
        /// <summary>
        /// PLC名称
        /// </summary>
        public string plcName { get; set; }
 
        public string dataType { get; set; }
 
 
 
 
        /// <summary>
        /// 读取或写入的值
        /// </summary>
        public object value { get; set; }
 
 
        /// <summary>
        /// 操作结果,和错误信息
        /// </summary>
        public string msg { get; set; }
 
        public PLCInfo Error(string msg)
        {
            this.msg = "操作失败," + msg;
            return this;
        }
 
        public PLCInfo Success(string msg = null)
        {
            if (msg != null)
                this.msg = msg;
            return this;
        }
    }
}