aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Integration/JobRuns/BasicJobRunsLogger.cs
blob: bacae9324fb74ef195e12d0d49ada5fc3b6efefc (plain)
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
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 JobDesignation { 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)
        {
            JobDesignation = JobDesignations.Default;
            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 && JobDesignation.HasFlag(_job.Designation);
        }

        #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)
        {
            if (ShouldLog())
            {
                if (e.Job.Guid == _job.Guid)
                {
                    Task.Factory.StartNew(() =>
                    {
                        try
                        {
                            using (var db = ObservablesContext.CreateDefault())
                            {
                                db.JobRuns.Add(new JobRun()
                                {
                                    StartDate = _start_date,
                                    EndDate = DateTime.UtcNow,
                                    JobGuid = _job.Guid,
                                    JobRunStatus = JobRunStatus.Failed,
                                    EndPosition = e.JobHandler.Status.Progress,
                                    FailedMessage = e.Exception.Message,
                                });

                                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.");
                        }
                    });
                }
            }
        }

        private void Machine_PrintingAborted(object sender, PrintingEventArgs e)
        {
            if (ShouldLog())
            {
                if (e.Job.Guid == _job.Guid)
                {
                    Task.Factory.StartNew(() =>
                    {
                        try
                        {
                            using (var db = ObservablesContext.CreateDefault())
                            {
                                db.JobRuns.Add(new JobRun()
                                {
                                    StartDate = _start_date,
                                    EndDate = DateTime.UtcNow,
                                    JobGuid = _job.Guid,
                                    EndPosition = e.JobHandler.Status.Progress,
                                    JobRunStatus = JobRunStatus.Aborted,
                                });

                                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.");
                        }
                    });
                }
            }
        }

        private void Machine_PrintingCompleted(object sender, PrintingEventArgs e)
        {
            if (ShouldLog())
            {
                if (e.Job.Guid == _job.Guid)
                {
                    Task.Factory.StartNew(() =>
                    {
                        try
                        {
                            using (var db = ObservablesContext.CreateDefault())
                            {
                                db.JobRuns.Add(new JobRun()
                                {
                                    StartDate = _start_date,
                                    EndDate = DateTime.UtcNow,
                                    JobGuid = _job.Guid,
                                    EndPosition = e.JobHandler.Status.Progress,
                                    JobRunStatus = JobRunStatus.Completed,
                                });

                                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.");
                        }
                    });
                }
            }
        }

        private void Machine_PrintingStarted(object sender, PrintingEventArgs e)
        {
            _job = e.Job;
            _start_date = DateTime.UtcNow;
        }

        #endregion
    }
}