LogJson.cs
12.1 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
using System;
using System.Collections.Generic;
namespace Model
{
/*
public class LogJson
{
private bool update;
private readonly log4net.ILog LOG;
/// <summary>
/// 小车名称
/// </summary>
public string AGVNum { private set; get; }
/// <summary>
/// 当前时间
/// </summary>
public DateTime? DateTime { private set; get; }
/// <summary>
/// 小车任务名称
/// </summary>
public string TaskName { private set; get; }
/// <summary>
/// 小车任务开始时间
/// </summary>
public DateTime? TaskStartTime { private set; get; }
/// <summary>
/// 小车任务结束时间
/// </summary>
public DateTime? TaskEndTime { private set; get; }
/// <summary>
/// 小车任务持续时间
/// </summary>
public int TaskTotalTime { private set; get; }
/// <summary>
/// 小车任务信息
/// </summary>
public string TaskInfo { private set; get; }
/// <summary>
/// 软件任务名称
/// </summary>
public string MissionName { private set; get; }
/// <summary>
/// 软件任务开始时间
/// </summary>
public DateTime? MissionStartTime { private set; get; }
/// <summary>
/// 软件任务结束时间
/// </summary>
public DateTime? MissionEndTime { private set; get; }
/// <summary>
/// 任务持续时间
/// </summary>
public int MissionTotalTime { private set; get; }
/// <summary>
/// 软件任务目的地
/// </summary>
public string MissionTarget { private set; get; }
/// <summary>
/// 软件任务信息
/// </summary>
public string MissionInfo { private set; get; }
/// <summary>
/// 软件任务步骤
/// </summary>
public string MissionStep { private set; get; }
/// <summary>
/// 错误信息
/// </summary>
public string ErrorMessage { private set; get; }
/// <summary>
/// 错误开始时间
/// </summary>
public DateTime? ErrorStartTime { private set; get; }
/// <summary>
/// 错误结束时间
/// </summary>
public DateTime? ErrorEndTime { private set; get; }
/// <summary>
/// 错误持续时间
/// </summary>
public int ErrorTotalTime { private set; get; }
public LogJson(string agvName, string logName)
{
LOG = log4net.LogManager.GetLogger(logName);
System.Reflection.PropertyInfo[] info = GetType().GetProperties();
for (int i = 0; i < info.Length; i++)
{
if (info[i].PropertyType == typeof(string))
info[i].SetValue(this, "");
else if (info[i].PropertyType == typeof(DateTime?))
info[i].SetValue(this, null);
else if (info[i].PropertyType == typeof(int))
info[i].SetValue(this, 0);
}
AGVNum = agvName;
update = true;
}
public void OutputLog()
{
if (!update) return;
DateTime = System.DateTime.Now;
System.Reflection.PropertyInfo[] info = GetType().GetProperties();
string[] lines = new string[info.Length];
for (int i = 0; i < info.Length; i++)
{
string value;
if (info[i].PropertyType == typeof(DateTime?))
value = info[i].GetValue(this) == null ? "" : string.Format("{0:yyyy-MM-dd HH:mm:ss}", info[i].GetValue(this));
else
value = info[i].GetValue(this).ToString();
lines[i] = string.Format("\"{0}\":\"{1}\"", info[i].Name, value);
}
update = false;
LOG.Info("{" + string.Join(",", lines) + "}");
}
public void SetTaskStart(string name)
{
TaskName = name;
TaskStartTime = System.DateTime.Now;
TaskEndTime = null;
TaskTotalTime = 0;
TaskInfo = "";
ErrorMessage = "";
ErrorStartTime = null;
ErrorEndTime = null;
ErrorTotalTime = 0;
update = true;
}
public void SetTaskInfo(string s)
{
if (TaskInfo == s) return;
TaskInfo = s;
TaskEndTime = System.DateTime.Now;
TaskTotalTime = (TaskEndTime - TaskStartTime).Value.Minutes;
update = true;
}
public void SetTaskOver()
{
TaskInfo = "END";
TaskEndTime = System.DateTime.Now;
TaskTotalTime = (TaskEndTime - TaskStartTime).Value.Minutes;
update = true;
}
public void SetMissionStart(string name, string target)
{
MissionName = name;
MissionStartTime = System.DateTime.Now;
MissionEndTime = null;
MissionTotalTime = 0;
MissionTarget = target;
MissionInfo = "";
MissionStep = "";
ErrorMessage = "";
ErrorStartTime = null;
ErrorEndTime = null;
ErrorTotalTime = 0;
update = true;
}
public void SetMissionInfo(string s)
{
if (MissionInfo == s) return;
MissionInfo = s;
MissionEndTime = System.DateTime.Now;
MissionTotalTime = (MissionEndTime - MissionStartTime).Value.Minutes;
update = true;
}
public void SetMissionStep(string s)
{
if (MissionStep == s) return;
MissionStep = s;
MissionEndTime = System.DateTime.Now;
MissionTotalTime = (MissionEndTime - MissionStartTime).Value.Minutes;
update = true;
}
public void SetMissionOver()
{
MissionInfo = "END";
MissionStep = "";
MissionEndTime = System.DateTime.Now;
MissionTotalTime = (MissionEndTime - MissionStartTime).Value.Minutes;
update = true;
}
public void SetErrorStart(string s)
{
ErrorMessage = s;
ErrorStartTime = System.DateTime.Now;
ErrorEndTime = null;
ErrorTotalTime = 0;
update = true;
}
public void SetErrorOver()
{
ErrorMessage = "END";
ErrorEndTime = System.DateTime.Now;
ErrorTotalTime = (ErrorEndTime - ErrorStartTime).Value.Minutes;
update = true;
}
}
*/
public class LogJson
{
private bool updateOutputLog;
private bool updateError;
private DateTime stepTime;
private DateTime errorTime;
private readonly log4net.ILog LOG;
/// <summary>
/// 小车名称
/// </summary>
public string AGVNum { private set; get; }
//public string DeviceName { get; set; } = "";
/// <summary>
/// 任务开始时间
/// </summary>
public DateTime DateTime { private set; get; }
/// <summary>
/// step结束时间
/// </summary>
public DateTime EndDateTime { private set; get; }
/// <summary>
/// 软件任务名称
/// </summary>
public string TaskName { private set; get; }
/// <summary>
/// 任务信息
/// </summary>
public string MissionInfo { private set; get; }
/// <summary>
/// 软件任务目的地
/// </summary>
public string TargetPlace { private set; get; }
/// <summary>
/// 类型
/// </summary>
public string Type { private set; get; }
/// <summary>
/// step步骤(Type = Task)
/// </summary>
public string TaskStep { private set; get; }
/// <summary>
/// step运行时间(Type = Task)
/// </summary>
public int TaskRunTime { private set; get; }
/// <summary>
/// 错误信息(Type = Error)
/// </summary>
public string ErrorMsg { private set; get; }
/// <summary>
/// 错误持续时间(Type = Error)
/// </summary>
public int ErrorLastTime { private set; get; }
/// <summary>
/// 任务名称(Type = Error)
/// </summary>
public string AGVMissionName { private set; get; }
public LogJson(string agvName, string logName)
{
LOG = log4net.LogManager.GetLogger(logName);
System.Reflection.PropertyInfo[] info = GetType().GetProperties();
for (int i = 0; i < info.Length; i++)
{
if (info[i].PropertyType == typeof(string))
info[i].SetValue(this, "");
else if (info[i].PropertyType == typeof(DateTime?))
info[i].SetValue(this, null);
else if (info[i].PropertyType == typeof(int))
info[i].SetValue(this, 0);
}
AGVNum = agvName;
updateOutputLog = true;
}
public void OutputLog()
{
if (!updateOutputLog) return;
List<string> lines = new();
lines.Add(string.Format("\"AGVNum\":\"{0}\"", AGVNum));
lines.Add(DateTime == null ? "\"DateTime\":\"\"" : string.Format("\"DateTime\":\"{0:yyyy-MM-dd HH:mm:ss}\"", DateTime));
lines.Add(EndDateTime == null ? "\"EndDateTime\":\"\"" : string.Format("\"EndDateTime\":\"{0:yyyy-MM-dd HH:mm:ss}\"", EndDateTime));
lines.Add(string.Format("\"TaskName\":\"{0}\"", TaskName));
lines.Add(string.Format("\"MissionInfo\":\"{0}\"", MissionInfo));
lines.Add(string.Format("\"TargetPlace\":\"{0}\"", TargetPlace));
lines.Add(string.Format("\"Type\":\"{0}\"", Type));
if (Type == "Task")
{
lines.Add(string.Format("\"TaskStep\":\"{0}\"", TaskStep));
lines.Add(string.Format("\"TaskRunTime\":\"{0}\"", TaskRunTime));
}
if (Type == "Error")
{
lines.Add(string.Format("\"ErrorMsg\":\"{0}\"", ErrorMsg));
lines.Add(string.Format("\"ErrorLastTime\":\"{0}\"", ErrorLastTime));
lines.Add(string.Format("\"AGVMissionName\":\"{0}\"", AGVMissionName));
}
updateOutputLog = false;
LOG.Info("{" + string.Join(",", lines) + "}");
}
public void SetMissionStart(string name, string target)
{
DateTime = DateTime.Now;
TaskName = name;
MissionInfo = "";
TargetPlace = target;
Type = "Task";
TaskStep = "";
TaskRunTime = 0;
ErrorMsg = "";
ErrorLastTime = 0;
AGVMissionName = "";
stepTime = DateTime.Now;
//updateOutputLog = true;
}
public void SetMissionStep(string info, string step)
{
if (TaskStep == step) return;
MissionInfo = info;
TaskStep = step;
EndDateTime = DateTime.Now;
TaskRunTime = (EndDateTime - stepTime).Minutes;
stepTime = DateTime.Now;
updateOutputLog = true;
}
public void SetErrorStart(string name, string err)
{
ErrorMsg = err;
if (AGVMissionName == name) return;
AGVMissionName = name;
errorTime = DateTime.Now;
ErrorLastTime = 0;
updateError = true;
}
public void SetErrorOver()
{
if (!updateError) return;
Type = "Error";
EndDateTime = DateTime.Now;
ErrorLastTime = (EndDateTime - errorTime).Minutes;
updateError = false;
updateOutputLog = true;
OutputLog();
Type = "Task";
ErrorMsg = "";
ErrorLastTime = 0;
AGVMissionName = "";
}
}
}