-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcronfab.go
285 lines (247 loc) · 5.57 KB
/
cronfab.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
package cronfab
import (
"time"
)
// SecondUnit units in seconds
type SecondUnit struct{}
func (SecondUnit) String() string {
return "second"
}
func (SecondUnit) Add(t time.Time, n int) time.Time {
return t.Add(time.Duration(n) * time.Second)
}
func (SecondUnit) Less(u Unit) bool {
switch u.(type) {
case SecondUnit:
return false
}
return true
}
func (SecondUnit) Trunc(t time.Time) time.Time {
return time.Date(t.Year(), t.Month(), t.Day(), t.Hour(), t.Minute(), t.Second(), 0, t.Location())
}
// MinuteUnit units in minutes
type MinuteUnit struct{}
func (MinuteUnit) String() string {
return "minute"
}
func (MinuteUnit) Add(t time.Time, n int) time.Time {
return t.Add(time.Duration(n) * time.Minute)
}
func (MinuteUnit) Less(u Unit) bool {
switch u.(type) {
case SecondUnit, MinuteUnit:
return false
}
return true
}
func (MinuteUnit) Trunc(t time.Time) time.Time {
return time.Date(t.Year(), t.Month(), t.Day(), t.Hour(), t.Minute(), 0, 0, t.Location())
}
// HourUnit units in hours
type HourUnit struct{}
func (HourUnit) String() string {
return "hour"
}
func (x HourUnit) Less(u Unit) bool {
switch u.(type) {
case SecondUnit, MinuteUnit, HourUnit:
return false
}
return true
}
func (HourUnit) Add(t time.Time, n int) time.Time {
return t.Add(time.Duration(n) * time.Hour)
}
func (HourUnit) Trunc(t time.Time) time.Time {
return time.Date(t.Year(), t.Month(), t.Day(), t.Hour(), 0, 0, 0, t.Location())
}
// DayUnit units in days
type DayUnit struct{}
func (DayUnit) String() string {
return "day"
}
func (DayUnit) Add(t time.Time, n int) time.Time {
return t.AddDate(0, 0, n)
}
func (DayUnit) Less(u Unit) bool {
switch u.(type) {
case SecondUnit, MinuteUnit, HourUnit, DayUnit:
return false
}
return true
}
func (DayUnit) Trunc(t time.Time) time.Time {
return time.Date(t.Year(), t.Month(), t.Day(), 0, 0, 0, 0, t.Location())
}
// WeekOfMonth units in week in month ordinal
type WeekOfMonth struct{}
func (WeekOfMonth) String() string {
return "week"
}
func (WeekOfMonth) Add(t time.Time, n int) time.Time {
return t.AddDate(0, 0, n*7)
}
func (WeekOfMonth) Less(u Unit) bool {
switch u.(type) {
case SecondUnit, MinuteUnit, HourUnit, DayUnit, WeekOfMonth:
return false
}
return true
}
func (WeekOfMonth) Trunc(t time.Time) time.Time {
return time.Date(t.Year(), t.Month(), t.Day()-int(t.Weekday()), 0, 0, 0, 0, t.Location())
}
// MonthUnit units in months
type MonthUnit struct{}
func (MonthUnit) String() string {
return "month"
}
func (MonthUnit) Add(t time.Time, n int) time.Time {
return t.AddDate(0, n, 0)
}
func (MonthUnit) Less(u Unit) bool {
switch u.(type) {
case SecondUnit, MinuteUnit, HourUnit, DayUnit, WeekOfMonth, MonthUnit:
return false
}
return true
}
func (MonthUnit) Trunc(t time.Time) time.Time {
return time.Date(t.Year(), t.Month(), 0, 0, 0, 0, 0, t.Location())
}
// YearUnit units in years
type YearUnit struct{}
func (YearUnit) String() string {
return "year"
}
func (YearUnit) Add(t time.Time, n int) time.Time {
return t.AddDate(n, 0, 0)
}
func (YearUnit) Less(u Unit) bool {
switch u.(type) {
case SecondUnit, MinuteUnit, HourUnit, DayUnit, WeekOfMonth, MonthUnit, YearUnit:
return false
}
return true
}
func (YearUnit) Trunc(t time.Time) time.Time {
return time.Date(t.Year(), 0, 0, 0, 0, 0, 0, t.Location())
}
var DefaultContabConfig = NewCrontabConfig([]FieldConfig{
{
unit: MinuteUnit{},
name: "minute",
min: 0,
max: 59,
getIndex: func(t time.Time) int {
return t.Minute()
},
},
{
unit: HourUnit{},
name: "hour",
min: 0,
max: 23,
getIndex: func(t time.Time) int {
return t.Hour()
},
},
{
unit: DayUnit{},
name: "day of month",
min: 1,
max: 31,
getIndex: func(t time.Time) int {
return t.Day()
},
},
{
unit: MonthUnit{},
name: "month",
rangeNames: []string{"january", "february", "march", "april", "may", "june", "july", "august", "september", "october", "november", "december"},
min: 1,
max: 12,
getIndex: func(t time.Time) int {
return int(t.Month())
},
},
{
unit: DayUnit{},
name: "day of week",
rangeNames: []string{"sunday", "monday", "tuesday", "wednesday", "thursday", "friday", "saturday"},
min: 0,
max: 6,
getIndex: func(t time.Time) int {
return int(t.Weekday())
},
},
})
var SecondContabConfig = NewCrontabConfig([]FieldConfig{
{
unit: SecondUnit{},
name: "second",
min: 0,
max: 59,
getIndex: func(t time.Time) int {
return t.Second()
},
},
{
unit: MinuteUnit{},
name: "minute",
min: 0,
max: 59,
getIndex: func(t time.Time) int {
return t.Minute()
},
},
{
unit: HourUnit{},
name: "hour",
min: 0,
max: 23,
getIndex: func(t time.Time) int {
return t.Hour()
},
},
{
unit: DayUnit{},
name: "day of month",
min: 1,
max: 31,
getIndex: func(t time.Time) int {
return t.Day()
},
},
{
unit: WeekOfMonth{},
name: "week of month",
min: 1,
max: 5,
getIndex: func(t time.Time) int {
q := t.Day() + (6 - int(t.Weekday()))
return (q / 7) + 1
},
},
{
unit: MonthUnit{},
name: "month",
rangeNames: []string{"january", "february", "march", "april", "may", "june", "july", "august", "september", "october", "november", "december"},
min: 1,
max: 12,
getIndex: func(t time.Time) int {
return int(t.Month())
},
},
{
unit: DayUnit{},
name: "day of week",
rangeNames: []string{"sunday", "monday", "tuesday", "wednesday", "thursday", "friday", "saturday"},
min: 0,
max: 6,
getIndex: func(t time.Time) int {
return int(t.Weekday())
},
},
})