-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWorker.cs
113 lines (103 loc) · 4.15 KB
/
Worker.cs
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
namespace WorkerService1
{
public class Worker : BackgroundService
{
private readonly ILogger<Worker> _logger;
private readonly Configuration _options;
// private Timer _t;
private int count = 0;
private double delay = 0;
public Worker(ILogger<Worker> logger, Configuration options)
{
_logger = logger;
_options = options;
}
private double FirstCycle()
{
DateTime _scheduleTime;
_scheduleTime = DateTime.Today.AddDays(_options.T1Day).AddHours(_options.T1Hour).AddMinutes(_options.T1Minutes);
_scheduleTime = GetNextWeekday(_scheduleTime, _options.T1DayName);
double tillNextInterval = _scheduleTime.Subtract(DateTime.Now).TotalSeconds * 1000;
if (_options.T1Day == 0)
{
if (tillNextInterval < 0) tillNextInterval += new TimeSpan(24, 0, 0).TotalSeconds * 1000;
}
return tillNextInterval;
}
private double NextCycle()
{
DateTime _scheduleTime;
_scheduleTime = DateTime.Today.AddDays(7).AddHours(_options.T1Hour).AddMinutes(_options.T1Minutes);
double tillNextInterval = _scheduleTime.Subtract(DateTime.Now).TotalSeconds * 1000;
if (tillNextInterval < 0) tillNextInterval += new TimeSpan(7, 0, 0, 0).TotalSeconds * 1000;
return tillNextInterval;
}
public static DateTime GetNextWeekday(DateTime start, int dayValue)
{
// The (... + 7) % 7 ensures we end up with a value in the range [0, 6]
int daysToAdd = ((int)dayValue - (int)start.DayOfWeek + 7) % 7;
return start.AddDays(daysToAdd);
}
public override Task StartAsync(CancellationToken cancellationToken)
{
//// set up a timer to be non-reentrant
//_t = new Timer(async _ => await OnTimerFiredAsync(cancellationToken),
// null, FirstCycle(), Timeout.Infinite);
delay = FirstCycle();
_logger.LogInformation("Service started at: {time}", DateTimeOffset.Now);
return base.StartAsync(cancellationToken);
}
public override Task StopAsync(CancellationToken cancellationToken)
{
//_t?.Dispose();
_logger.LogInformation("Service stopped at: {time}", DateTimeOffset.Now);
return base.StopAsync(cancellationToken);
}
protected override async Task ExecuteAsync(CancellationToken stoppingToken)
{
while (!stoppingToken.IsCancellationRequested)
{
if (count == 0)
{
count = 1;
}
else
{
delay= NextCycle();
if (GetResponse())
{
_logger.LogInformation("Response OK : {time}", DateTimeOffset.Now);
}
else
{
_logger.LogInformation("No Response: {time}", DateTimeOffset.Now);
}
}
await Task.Delay(TimeSpan.FromMilliseconds(delay), stoppingToken);
}
}
public bool GetResponse() {
return false;
}
//private async Task OnTimerFiredAsync(CancellationToken cancellationToken)
//{
// try
// {
// if (GetResponse())
// {
// _logger.LogInformation("Response OK : {time}", DateTimeOffset.Now);
// }
// else
// {
// _logger.LogInformation("No Response: {time}", DateTimeOffset.Now);
// }
// await Task.Delay(0, cancellationToken);
// }
// finally
// {
// // set timer to fire off again
// _t?.Change(FirstCycle(), Timeout.Infinite);
// }
//}
}
}