-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTaskBase.cs
More file actions
213 lines (197 loc) · 6.61 KB
/
Copy pathTaskBase.cs
File metadata and controls
213 lines (197 loc) · 6.61 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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace TaskScheduler
{
public class TaskBase
{
public Manager TaskManager { get; set; }
public ServiceInfo ServiceInfo;
public volatile bool Busy;
protected volatile bool _stop;
private string _details;
public string Details
{
get
{
string result;
lock(this)
{
result = _details;
}
return result;
}
set
{
lock(this)
{
_details = value;
}
}
}
protected int _checkInterval;
private Thread _cfThread;
private AutoResetEvent[] _cfTriggers = new AutoResetEvent[2];
private struct Triggers
{
public const int StopTrigger = 0;
public const int StartTrigger = 1;
}
public TaskBase(Manager taskManager, Type type, string description, int hours, int minutes, int seconds)
{
Busy = false;
_stop = false;
TaskManager = taskManager;
using (var db = TaskManager.TaskSchedulerDatabase)
{
ServiceInfo = db.FirstOrDefault<ServiceInfo>("where ClassName=@0", type.ToString());
if (ServiceInfo == null)
{
ServiceInfo = new ServiceInfo();
ServiceInfo.ClassName = type.ToString();
ServiceInfo.Description = description;
ServiceInfo.Interval = new DateTime(2000, 1, 1, hours, minutes, seconds, 0);
db.Save(ServiceInfo);
}
}
_checkInterval = (ServiceInfo.Interval.Hour * 60 * 60 * 1000) + (ServiceInfo.Interval.Minute * 60 * 1000) + (ServiceInfo.Interval.Second * 1000);
}
public virtual UserControl GetSettingsControl()
{
return new TaskSettingsBase(this);
}
public void UpdateServiceInfo()
{
using (var db = TaskManager.TaskSchedulerDatabase)
{
db.Update(ServiceInfo);
}
_checkInterval = (ServiceInfo.Interval.Hour * 60 * 60 * 1000) + (ServiceInfo.Interval.Minute * 60 * 1000) + (ServiceInfo.Interval.Second * 1000);
if (ServiceInfo.Enabled)
{
ServiceStart();
}
else
{
ServiceStop();
}
}
public void ServiceStart()
{
if (_cfThread == null)
{
_stop = false;
_cfTriggers[Triggers.StopTrigger] = new AutoResetEvent(false);
_cfTriggers[Triggers.StartTrigger] = new AutoResetEvent(false);
_cfThread = new Thread(new ThreadStart(this.ServiceThreadMethod));
_cfThread.IsBackground = true;
_cfThread.Start();
Start();
}
}
public void ServiceStop()
{
if (_cfThread != null)
{
if (Busy)
{
_stop = true;
while (Busy)
{
Thread.Sleep(10);
}
}
_cfTriggers[Triggers.StopTrigger].Set();
_cfThread.Join();
_cfThread = null;
Stop();
}
}
public void ServiceRunNow()
{
ServiceStart();
_cfTriggers[Triggers.StartTrigger].Set();
}
protected virtual void Start()
{
}
protected virtual void Stop()
{
}
protected void PushDetails()
{
lock (this)
{
ServiceInfo.LastRun = DateTime.Now;
ServiceInfo.InfoMessage = _details;
using (var db = TaskManager.TaskSchedulerDatabase)
{
db.Save(ServiceInfo);
}
}
}
protected void ServiceThreadMethod()
{
while (true)
{
try
{
int trig = WaitHandle.WaitAny(_cfTriggers, _checkInterval, false);
if (trig == Triggers.StopTrigger)
{
break;
}
else if (trig == Triggers.StartTrigger || (!ServiceInfo.RunAfter.HasValue || !ServiceInfo.RunBefore.HasValue))
{
Busy = true;
ServiceMethod();
ServiceInfo.LastRun = DateTime.Now;
ServiceInfo.InfoMessage = Details;
using (var db = TaskManager.TaskSchedulerDatabase)
{
db.Save(ServiceInfo);
}
}
else
{
//check interval
//check double check...
if (ServiceInfo.RunAfter.HasValue && ServiceInfo.RunBefore.HasValue)
{
DateTime dt = DateTime.Now;
DateTime st = DateTime.Now.Date + (ServiceInfo.RunAfter.Value - ServiceInfo.RunAfter.Value.Date);
DateTime et = DateTime.Now.Date + (ServiceInfo.RunBefore.Value - ServiceInfo.RunBefore.Value.Date);
if (dt >= st && dt <= et)
{
Busy = true;
ServiceMethod();
ServiceInfo.LastRun = DateTime.Now;
ServiceInfo.InfoMessage = Details;
using (var db = TaskManager.TaskSchedulerDatabase)
{
db.Save(ServiceInfo);
}
}
}
}
Busy = false;
if (_stop)
{
break;
}
}
catch
{
//what ever happens, we need to continue!
}
}
}
protected virtual void ServiceMethod()
{
}
}
}