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
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.BL;
using Tango.BL.Builders;
using Tango.BL.Entities;
using Tango.BL.Enumerations;
using Tango.Core;
using Tango.Integration.Operation;
namespace Tango.Integration.JobRuns
{
/// <summary>
/// Represents a basic database job runs logger.
/// </summary>
/// <seealso cref="Tango.Integration.JobRuns.IJobRunsLogger" />
public class BasicJobRunsLogger : ExtendedObject, IJobRunsLogger
{
private Job _job;
private Machine _defaultMachine;
#region Properties
/// <summary>
/// Gets the machine operator.
/// </summary>
public IMachineOperator MachineOperator { get; private set; }
/// <summary>
/// Gets a value indicating whether this instance is started.
/// </summary>
public bool IsStarted { get; private set; }
/// <summary>
/// Gets or sets the job designations of which the logger should log (supports multiple flags).
/// </summary>
public JobDesignations JobDesignationFilter { get; set; }
/// <summary>
/// Gets or sets the job run source when logging job runs.
/// </summary>
public JobSource JobSource { get; set; }
#endregion
#region Constructors
/// <summary>
/// Initializes a new instance of the <see cref="BasicJobRunsLogger"/> class.
/// </summary>
/// <param name="machineOperator">The machine operator.</param>
public BasicJobRunsLogger(IMachineOperator machineOperator)
{
JobDesignationFilter = JobDesignations.Default | JobDesignations.SampleDye | JobDesignations.FineTuning;
MachineOperator = machineOperator;
Init();
}
#endregion
#region Private Methods
/// <summary>
/// Initializes this instance.
/// </summary>
private void Init()
{
MachineOperator.PrintingStarted -= Machine_PrintingStarted;
MachineOperator.PrintingStarted += Machine_PrintingStarted;
MachineOperator.PrintingCompleted -= Machine_PrintingCompleted;
MachineOperator.PrintingCompleted += Machine_PrintingCompleted;
MachineOperator.PrintingAborted -= Machine_PrintingAborted;
MachineOperator.PrintingAborted += Machine_PrintingAborted;
MachineOperator.PrintingFailed -= Machine_PrintingFailed;
MachineOperator.PrintingFailed += Machine_PrintingFailed;
MachineOperator.HeadCleaningEnded += MachineOperator_HeadCleaningEnded;
}
private bool ShouldLog()
{
return IsStarted && _job != null && JobDesignationFilter.HasFlag(_job.Designation);
}
private void InsertJobRun(PrintingEventArgs e, JobRunStatus status, Exception exception)
{
if (ShouldLog())
{
if (e.Job.Guid == _job.Guid)
{
Task.Factory.StartNew(() =>
{
try
{
using (var db = ObservablesContext.CreateDefault())
{
JobRun run = new JobRun();
run.UserGuid = _job.UserGuid;
run.StartDate = e.StartDate;
run.UploadingStartDate = e.UploadingStartTime;
run.HeatingStartDate = e.HeatingStartTime;
run.ActualStartDate = e.ActualStartTime;
run.EndDate = DateTime.UtcNow;
run.JobName = _job.Name;
run.Source = JobSource;
run.Designation = _job.Designation;
run.JobGuid = _job.Guid;
run.RmlGuid = _job.RmlGuid;
run.MachineGuid = _job.MachineGuid;
run.JobRunStatus = status;
run.EndPosition = e.JobHandler.Status.Progress;
//run.JobLength = _job.LengthIncludingNumberOfUnits; //Should I use this or the below ??
run.JobLength = e.JobHandler.Status.TotalProgress;
run.LiquidQuantities = e.LiquidQuantities;
run.IsGradient = _job.Segments.Any(x => x.BrushStops.Count > 1);
run.GradientResolutionCm = MachineOperator.GradientGenerationConfiguration.ResolutionCM;
run.JobString = _job.ToJobFileWhenLoaded().ToString();
//Set individual liquid quantities
//Cyan
var cyan = run.LiquidQuantities.SingleOrDefault(x => x.LiquidType == LiquidTypes.Cyan);
run.CyanQuantity = cyan != null ? cyan.Quantity : 0;
//Magenta
var magenta = run.LiquidQuantities.SingleOrDefault(x => x.LiquidType == LiquidTypes.Magenta);
run.MagentaQuantity = magenta != null ? magenta.Quantity : 0;
//Yellow
var yellow = run.LiquidQuantities.SingleOrDefault(x => x.LiquidType == LiquidTypes.Yellow);
run.YellowQuantity = yellow != null ? yellow.Quantity : 0;
//Black
var black = run.LiquidQuantities.SingleOrDefault(x => x.LiquidType == LiquidTypes.Black);
run.BlackQuantity = black != null ? black.Quantity : 0;
//TI
var ti = run.LiquidQuantities.SingleOrDefault(x => x.LiquidType == LiquidTypes.TransparentInk);
run.TransparentQuantity = ti != null ? ti.Quantity : 0;
//Lubricant
var lubricant = run.LiquidQuantities.SingleOrDefault(x => x.LiquidType == LiquidTypes.Lubricant);
run.LubricantQuantity = lubricant != null ? lubricant.Quantity : 0;
//Cleaner
var cleaner = run.LiquidQuantities.SingleOrDefault(x => x.LiquidType == LiquidTypes.Cleaner);
run.CleanerQuantity = cleaner != null ? cleaner.Quantity : 0;
if (exception != null)
{
run.FailedMessage = exception.FlattenMessage();
}
db.JobRuns.Add(run);
e.Job.LastRun = DateTime.UtcNow;
_job.LastRun = DateTime.UtcNow;
var job = db.Jobs.SingleOrDefault(x => x.Guid == _job.Guid);
if (job != null)
{
job.LastRun = DateTime.UtcNow;
}
db.SaveChanges();
}
}
catch (Exception ex)
{
LogManager.Log(ex, "Error logging the last job run to the database.");
}
});
}
}
}
private void InsertHeadCleaningJobRun(HeadCleaningEndedEventArgs e)
{
if (IsStarted && _defaultMachine != null)
{
Task.Factory.StartNew(() =>
{
try
{
using (var db = ObservablesContext.CreateDefault())
{
JobRun run = new JobRun();
run.IsHeadCleaning = true;
run.StartDate = e.StartDate;
run.UploadingStartDate = e.StartDate;
run.HeatingStartDate = e.StartDate;
run.ActualStartDate = e.StartDate;
run.EndDate = DateTime.UtcNow;
run.JobName = "HEAD CLEANING";
run.Source = JobSource;
run.MachineGuid = _defaultMachine.Guid;
run.JobRunStatus = e.Status;
run.EndPosition = e.EndPosition;
run.JobLength = e.Length;
run.LiquidQuantities = e.LiquidQuantities;
//Set individual liquid quantities
//Cyan
var cyan = run.LiquidQuantities.SingleOrDefault(x => x.LiquidType == LiquidTypes.Cyan);
run.CyanQuantity = cyan != null ? cyan.Quantity : 0;
//Magenta
var magenta = run.LiquidQuantities.SingleOrDefault(x => x.LiquidType == LiquidTypes.Magenta);
run.MagentaQuantity = magenta != null ? magenta.Quantity : 0;
//Yellow
var yellow = run.LiquidQuantities.SingleOrDefault(x => x.LiquidType == LiquidTypes.Yellow);
run.YellowQuantity = yellow != null ? yellow.Quantity : 0;
//Black
var black = run.LiquidQuantities.SingleOrDefault(x => x.LiquidType == LiquidTypes.Black);
run.BlackQuantity = black != null ? black.Quantity : 0;
//TI
var ti = run.LiquidQuantities.SingleOrDefault(x => x.LiquidType == LiquidTypes.TransparentInk);
run.TransparentQuantity = ti != null ? ti.Quantity : 0;
//Lubricant
var lubricant = run.LiquidQuantities.SingleOrDefault(x => x.LiquidType == LiquidTypes.Lubricant);
run.LubricantQuantity = lubricant != null ? lubricant.Quantity : 0;
//Cleaner
var cleaner = run.LiquidQuantities.SingleOrDefault(x => x.LiquidType == LiquidTypes.Cleaner);
run.CleanerQuantity = cleaner != null ? cleaner.Quantity : 0;
//if (exception != null)
//{
// run.FailedMessage = exception.FlattenMessage();
//}
db.JobRuns.Add(run);
db.SaveChanges();
}
}
catch (Exception ex)
{
LogManager.Log(ex, "Error logging the last head cleaning job run to the database.");
}
});
}
}
#endregion
#region Public Methods
/// <summary>
/// Starts the logger.
/// </summary>
public void Start()
{
IsStarted = true;
}
/// <summary>
/// Stops the logger.
/// </summary>
public void Stop()
{
IsStarted = false;
}
/// <summary>
/// Sets the head cleaning parameters.
/// </summary>
/// <param name="machine">The machine.</param>
public void SetDefaultMachine(Machine machine)
{
_defaultMachine = machine;
}
#endregion
#region Event Handlers
private void Machine_PrintingFailed(object sender, PrintingFailedEventArgs e)
{
InsertJobRun(e, JobRunStatus.Failed, e.Exception);
}
private void Machine_PrintingAborted(object sender, PrintingEventArgs e)
{
InsertJobRun(e, JobRunStatus.Aborted, null);
}
private void Machine_PrintingCompleted(object sender, PrintingEventArgs e)
{
InsertJobRun(e, JobRunStatus.Completed, null);
}
private async void Machine_PrintingStarted(object sender, PrintingEventArgs e)
{
_job = e.Job;
if (e.IsResumed)
{
try
{
using (ObservablesContext db = ObservablesContext.CreateDefault())
{
_job = await new JobBuilder(db).Set(e.Job.Guid).WithConfiguration().WithSegments().WithBrushStops().BuildAsync();
}
}
catch (Exception ex)
{
LogManager.Log(ex, "Error loading resumed job from database.");
}
}
}
private void MachineOperator_HeadCleaningEnded(object sender, HeadCleaningEndedEventArgs e)
{
InsertHeadCleaningJobRun(e);
}
#endregion
}
}
|