-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschedule.go
381 lines (326 loc) · 9.4 KB
/
schedule.go
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
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
package chronos
import (
"sort"
"time"
)
// intervals
type ScheduleInterval byte
const (
// schedule once at the given date
INTERVAL_ONCE_DATE ScheduleInterval = iota + 1
// schedule once after the given duration
INTERVAL_ONCE_IN
// schedule every month at the given day
INTERVAL_EVERY_MONTH
// schedule every week at the given weekday
INTERVAL_EVERY_WEEK
// schedule every day at the given time
INTERVAL_EVERY_DAY
)
/*
represents a schedule which uses the interval constants
to define the plans for a given task.
*/
type TaskSchedule struct {
// specific days of a month, i.e. the 8th, 16th, 20th (used in monthly scheduling)
// - 8th at 08:00, 12:00... (multiple times on the given days)
Days []MonthDay `json:"days"`
NextDayIndex int `json:"next_day_index"`
// weekdays (used for weekly scheduling)
// - mondays at 9:45, 15:15 (multiple times on the given weekday)
Weekdays []Weekday `json:"weekdays"`
NextWeekdayIndex int `json:"next_weekday_index"`
// daily (used for daily scheduling)
// - everyday at 14:00, 19:00
DailyTimes []DayTime `json:"daily_times"`
NextDailyTimeIndex int `json:"next_daily_time_index"`
// once at specific date
OnceAtDate time.Time `json:"once_at_date"`
// once after duration
OnceAfterDuration time.Duration `json:"once_after_duration"`
// how are we scheduled?
Plan ScheduleInterval `json:"plan"`
// next execution time
NextExecutionOn time.Time `json:"next_execution_on"`
}
func (ts *TaskSchedule) Init(exe chan<- struct{}, abort <-chan struct{}) {
// adjust the next index according to now
ts.adjustNextIndex()
// run the clock
exit:
for {
nextDurationToWait := ts.nextExecutionIn()
nextExecutionSignal := time.NewTimer(nextDurationToWait)
select {
case <-nextExecutionSignal.C:
if ts.Plan == INTERVAL_ONCE_IN || ts.Plan == INTERVAL_ONCE_DATE {
exe <- struct{}{}
break exit
}
case <-abort:
break exit
}
// next execution time is reached, execute task
exe <- struct{}{}
}
}
// sets the correct index to get the next time to check from
func (ts *TaskSchedule) adjustNextIndex() {
now := time.Now()
var nearestIndex int
var previousDelta time.Duration
init := false
switch ts.Plan {
case INTERVAL_EVERY_DAY:
for i, dT := range ts.DailyTimes {
x := time.Date(now.Year(), now.Month(), now.Day(), dT.Hour, dT.Minute, dT.Second, 0, time.Local)
delta := time.Until(x)
if delta < 0 {
continue
}
if !init {
previousDelta = delta
init = true
nearestIndex = i
continue
}
if time.Until(x) < previousDelta {
previousDelta = delta
nearestIndex = i
}
}
ts.NextDailyTimeIndex = nearestIndex
case INTERVAL_EVERY_WEEK:
todayWeekday := now.Weekday()
for i, weekday := range ts.Weekdays {
at := weekday.At
var x time.Time
if weekday.Day < todayWeekday {
inWeekAdv := 7 - todayWeekday
x = now.AddDate(0, 0, int(inWeekAdv+weekday.Day))
} else {
x = now.AddDate(0, 0, int(weekday.Day-todayWeekday))
}
x = time.Date(x.Year(), x.Month(), x.Day(), at.Hour, at.Minute, at.Second, 0, time.Local)
delta := time.Until(x)
if delta < 0 {
continue
}
if !init {
previousDelta = delta
init = true
nearestIndex = i
continue
}
if time.Until(x) < previousDelta {
previousDelta = delta
nearestIndex = i
}
}
ts.NextWeekdayIndex = nearestIndex
case INTERVAL_EVERY_MONTH:
todayNum := now.Day()
for i, monthDay := range ts.Days {
at := monthDay.At
var x time.Time
if int(monthDay.Day) < todayNum {
// advance one month
x = addMonth(now)
// auto. shrink to the correct day of the next month
nextDay := shrinkDay(monthDay.Day, x)
x = time.Date(x.Year(), x.Month(), int(nextDay), at.Hour, at.Minute, at.Second, 0, time.Local)
} else {
nextDay := shrinkDay(monthDay.Day, now)
x = time.Date(now.Year(), now.Month(), int(nextDay), at.Hour, at.Minute, at.Second, 0, time.Local)
}
delta := time.Until(x)
if delta < 0 {
continue
}
if !init {
previousDelta = delta
init = true
nearestIndex = i
continue
}
if time.Until(x) < previousDelta {
previousDelta = delta
nearestIndex = i
}
}
ts.NextDayIndex = nearestIndex
}
}
// computes the duration until the next execution should happen by the given plan
func (ts *TaskSchedule) nextExecutionIn() time.Duration {
now := time.Now()
switch ts.Plan {
case INTERVAL_ONCE_IN:
return ts.OnceAfterDuration
case INTERVAL_ONCE_DATE:
return time.Until(ts.OnceAtDate)
case INTERVAL_EVERY_DAY:
nextTime := ts.nextDailyTime()
next := time.Date(now.Year(), now.Month(), now.Day(), nextTime.Hour, nextTime.Minute, nextTime.Second, 0, time.Local)
if next.Before(time.Now()) {
// the next time is on the next day
next = next.AddDate(0, 0, 1)
}
return time.Until(next)
case INTERVAL_EVERY_WEEK:
todayWeekday := now.Weekday()
// next
var next time.Time
nextWeekday := ts.nextWeekday()
at := nextWeekday.At
nextWeekdayNum := nextWeekday.Day
if nextWeekdayNum < todayWeekday {
// advance a week
inWeekAdv := 7 - todayWeekday
next = now.AddDate(0, 0, int(inWeekAdv+nextWeekdayNum))
} else {
// same week
next = now.AddDate(0, 0, int(nextWeekdayNum-todayWeekday))
}
next = time.Date(next.Year(), next.Month(), next.Day(), at.Hour, at.Minute, at.Second, 0, time.Local)
// the next computed time might be the same weekday as now but the hour:minute already passed
// so we advance one week again
if next.Before(time.Now()) {
next = next.AddDate(0, 0, 7)
}
return time.Until(next)
case INTERVAL_EVERY_MONTH:
todayNum := now.Day()
var next time.Time
nextDay := ts.nextDay()
at := nextDay.At
nextDayNum := nextDay.Day
if int(nextDayNum) < todayNum {
// advance one month
next = addMonth(now)
// auto. shrink to the correct day of the next month
nextDay := shrinkDay(nextDayNum, next)
next = time.Date(next.Year(), next.Month(), int(nextDay), at.Hour, at.Minute, at.Second, 0, time.Local)
} else {
nextDay := shrinkDay(nextDayNum, now)
next = time.Date(now.Year(), now.Month(), int(nextDay), at.Hour, at.Minute, at.Second, 0, time.Local)
}
if next.Before(time.Now()) {
// the next time is in one month
nextMonthDate := addMonth(next)
nextDay := shrinkDay(nextDayNum, nextMonthDate)
next = time.Date(nextMonthDate.Year(), nextMonthDate.Month(), int(nextDay), at.Hour, at.Minute, at.Second, 0, time.Local)
}
return time.Until(next)
}
return 0
}
// advances one month:
// unlike the built in time.AddDate function it actually advances one month
// instead of just adding 30 or whatever days to the given date.
func addMonth(date time.Time) time.Time {
if date.Month() == 12 {
return time.Date(date.Year()+1, time.January, 1, 0, 0, 0, 0, time.Local)
}
return time.Date(date.Year(), date.Month()+1, 1, 0, 0, 0, 0, time.Local)
}
// shrinks the given day correctly to the given month's last day
// with respect to leap years
func shrinkDay(day uint, date time.Time) uint {
month := date.Month()
year := date.Year()
if month == time.February && (day == 30 || day == 31) {
if isLeapYear(year) {
return 29
}
return 28
}
if day == 31 {
switch month {
case time.April:
fallthrough
case time.June:
fallthrough
case time.September:
fallthrough
case time.November:
return 30
}
}
return day
}
func isLeapYear(year int) bool {
return year%400 == 0 || year%4 == 0 && year%100 != 0
}
// returns the next day to check the duration for
func (ts *TaskSchedule) nextDay() MonthDay {
day := ts.Days[ts.NextDayIndex]
if ts.NextDayIndex == len(ts.Days)-1 {
ts.NextDayIndex = 0 // reset
} else {
ts.NextDayIndex++
}
return day
}
// returns the next weekday to check the duration for
func (ts *TaskSchedule) nextWeekday() Weekday {
weekday := ts.Weekdays[ts.NextWeekdayIndex]
if ts.NextWeekdayIndex == len(ts.Weekdays)-1 {
ts.NextWeekdayIndex = 0 // reset
} else {
ts.NextWeekdayIndex++
}
return weekday
}
// returns the next daily time to check the duration for
func (ts *TaskSchedule) nextDailyTime() DayTime {
dailyTime := ts.DailyTimes[ts.NextDailyTimeIndex]
if ts.NextDailyTimeIndex == len(ts.DailyTimes)-1 {
ts.NextDailyTimeIndex = 0 // reset
} else {
ts.NextDailyTimeIndex++
}
return dailyTime
}
func NewMonthlySchedulingPlan(days []MonthDay) TaskSchedule {
if len(days) == 0 {
panic("days slice is empty")
}
taskSchedule := TaskSchedule{}
sort.Sort(MonthDaysSorted(days))
taskSchedule.Days = days
taskSchedule.Plan = INTERVAL_EVERY_MONTH
return taskSchedule
}
func NewWeeklySchedulingPlan(weekdays []Weekday) TaskSchedule {
if len(weekdays) == 0 {
panic("weekdays slice is empty")
}
taskSchedule := TaskSchedule{}
sort.Sort(WeekdaysSorted(weekdays))
taskSchedule.Weekdays = weekdays
taskSchedule.Plan = INTERVAL_EVERY_WEEK
return taskSchedule
}
func NewDailySchedulingPlan(times []DayTime) TaskSchedule {
if len(times) == 0 {
panic("times slice is empty")
}
taskSchedule := TaskSchedule{}
sort.Sort(DayTimesSorted(times))
taskSchedule.DailyTimes = times
taskSchedule.Plan = INTERVAL_EVERY_DAY
return taskSchedule
}
func NewOnceAtDatePlan(date time.Time) TaskSchedule {
taskSchedule := TaskSchedule{}
taskSchedule.OnceAtDate = date
taskSchedule.Plan = INTERVAL_ONCE_DATE
return taskSchedule
}
func NewOnceAfterDuration(duration time.Duration) TaskSchedule {
taskSchedule := TaskSchedule{}
taskSchedule.OnceAfterDuration = duration
taskSchedule.Plan = INTERVAL_ONCE_IN
return taskSchedule
}