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
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.BL;
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 DateTime _start_date;
private Job _job;
#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;
}
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 = _start_date;
run.UploadingStartDate = e.UploadingStartTime;
run.HeatingStartDate = e.HeatingStartTime;
run.ActualStartDate = e.ActualStartTime;
run.EndDate = DateTime.UtcNow;
run.JobName = _job.Name;
run.JobLength = _job.LengthIncludingNumberOfUnits;
run.Source = JobSource;
run.Designation = _job.Designation;
run.JobGuid = _job.Guid;
run.MachineGuid = _job.MachineGuid;
run.JobRunStatus = status;
run.EndPosition = e.JobHandler.Status.Progress;
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();
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 current 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;
}
#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 void Machine_PrintingStarted(object sender, PrintingEventArgs e)
{
_job = e.Job;
_start_date = DateTime.UtcNow;
}
#endregion
}
}
|