-
Notifications
You must be signed in to change notification settings - Fork 1
/
rrule.go
1026 lines (943 loc) · 27.7 KB
/
rrule.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
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// 2017-2022, Teambition. All rights reserved.
package rrule
import (
"errors"
"fmt"
"sort"
"time"
"github.com/nicksnyder/go-i18n/v2/i18n"
"golang.org/x/text/language"
)
// Every mask is 7 days longer to handle cross-year weekly periods.
var (
M366MASK []int
M365MASK []int
MDAY366MASK []int
MDAY365MASK []int
NMDAY366MASK []int
NMDAY365MASK []int
WDAYMASK []int
M366RANGE = []int{0, 31, 60, 91, 121, 152, 182, 213, 244, 274, 305, 335, 366}
M365RANGE = []int{0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365}
)
func init() {
M366MASK = concat(repeat(1, 31), repeat(2, 29), repeat(3, 31),
repeat(4, 30), repeat(5, 31), repeat(6, 30), repeat(7, 31),
repeat(8, 31), repeat(9, 30), repeat(10, 31), repeat(11, 30),
repeat(12, 31), repeat(1, 7))
M365MASK = concat(M366MASK[:59], M366MASK[60:])
M29, M30, M31 := rang(1, 30), rang(1, 31), rang(1, 32)
MDAY366MASK = concat(M31, M29, M31, M30, M31, M30, M31, M31, M30, M31, M30, M31, M31[:7])
MDAY365MASK = concat(MDAY366MASK[:59], MDAY366MASK[60:])
M29, M30, M31 = rang(-29, 0), rang(-30, 0), rang(-31, 0)
NMDAY366MASK = concat(M31, M29, M31, M30, M31, M30, M31, M31, M30, M31, M30, M31, M31[:7])
NMDAY365MASK = concat(NMDAY366MASK[:31], NMDAY366MASK[32:])
for i := 0; i < 55; i++ {
WDAYMASK = append(WDAYMASK, []int{0, 1, 2, 3, 4, 5, 6}...)
}
}
// Frequency denotes the period on which the rule is evaluated.
type Frequency int
// Constants
const (
YEARLY Frequency = iota
MONTHLY
WEEKLY
DAILY
HOURLY
MINUTELY
SECONDLY
)
// Weekday specifying the nth weekday.
// Field N could be positive or negative (like MO(+2) or MO(-3).
// Not specifying N (0) is the same as specifying +1.
type Weekday struct {
weekday int
n int
}
// Nth return the nth weekday
// __call__ - Cannot call the object directly,
// do it through e.g. TH.nth(-1) instead,
func (wday *Weekday) Nth(n int) Weekday {
return Weekday{wday.weekday, n}
}
// N returns index of the week, e.g. for 3MO, N() will return 3
func (wday *Weekday) N() int {
return wday.n
}
// Day returns index of the day in a week (0 for MO, 6 for SU)
func (wday *Weekday) Day() int {
return wday.weekday
}
// Weekdays
var (
MO = Weekday{weekday: 0}
TU = Weekday{weekday: 1}
WE = Weekday{weekday: 2}
TH = Weekday{weekday: 3}
FR = Weekday{weekday: 4}
SA = Weekday{weekday: 5}
SU = Weekday{weekday: 6}
)
// ROption offers options to construct a RRule instance.
// For performance, it is strongly recommended providing explicit ROption.Dtstart, which defaults to `time.Now().UTC().Truncate(time.Second)`.
type ROption struct {
Freq Frequency
Dtstart time.Time
Interval int
Wkst Weekday
Count int
Until time.Time
Bysetpos []int
Bymonth []int
Bymonthday []int
Byyearday []int
Byweekno []int
Byweekday []Weekday
Byhour []int
Byminute []int
Bysecond []int
Byeaster []int
}
// RRule offers a small, complete, and very fast, implementation of the recurrence rules
// documented in the iCalendar RFC, including support for caching of results.
type RRule struct {
OrigOptions ROption
Options ROption
freq Frequency
dtstart time.Time
interval int
wkst int
count int
until time.Time
bysetpos []int
bymonth []int
bymonthday, bynmonthday []int
byyearday []int
byweekno []int
byweekday []int
bynweekday []Weekday
byhour []int
byminute []int
bysecond []int
byeaster []int
timeset []time.Time
len int
i18n *i18n.Bundle
}
// NewRRule construct a new RRule instance
func NewRRule(arg ROption) (*RRule, error) {
if err := validateBounds(arg); err != nil {
return nil, err
}
r := buildRRule(arg)
return &r, nil
}
func NewRRuleWithi18n(arg ROption, bundle *i18n.Bundle) (*RRule, error) {
if err := validateBounds(arg); err != nil {
return nil, err
}
r := buildRRule(arg)
r.i18n = bundle
return &r, nil
}
func buildRRule(arg ROption) RRule {
r := RRule{}
r.OrigOptions = arg
// FREQ default to YEARLY
r.freq = arg.Freq
// INTERVAL default to 1
if arg.Interval < 1 {
arg.Interval = 1
}
r.interval = arg.Interval
if arg.Count < 0 {
arg.Count = 0
}
r.count = arg.Count
// DTSTART default to now
if arg.Dtstart.IsZero() {
arg.Dtstart = time.Now().UTC()
}
arg.Dtstart = arg.Dtstart.Truncate(time.Second)
r.dtstart = arg.Dtstart
// UNTIL
if arg.Until.IsZero() {
// add largest representable duration (approximately 290 years).
r.until = r.dtstart.Add(time.Duration(1<<63 - 1))
} else {
arg.Until = arg.Until.Truncate(time.Second)
r.until = arg.Until
}
r.wkst = arg.Wkst.weekday
r.bysetpos = arg.Bysetpos
if len(arg.Byweekno) == 0 &&
len(arg.Byyearday) == 0 &&
len(arg.Bymonthday) == 0 &&
len(arg.Byweekday) == 0 &&
len(arg.Byeaster) == 0 {
if r.freq == YEARLY {
if len(arg.Bymonth) == 0 {
arg.Bymonth = []int{int(r.dtstart.Month())}
}
arg.Bymonthday = []int{r.dtstart.Day()}
} else if r.freq == MONTHLY {
arg.Bymonthday = []int{r.dtstart.Day()}
} else if r.freq == WEEKLY {
arg.Byweekday = []Weekday{{weekday: toPyWeekday(r.dtstart.Weekday())}}
}
}
r.bymonth = arg.Bymonth
r.byyearday = arg.Byyearday
r.byeaster = arg.Byeaster
for _, mday := range arg.Bymonthday {
if mday > 0 {
r.bymonthday = append(r.bymonthday, mday)
} else if mday < 0 {
r.bynmonthday = append(r.bynmonthday, mday)
}
}
r.byweekno = arg.Byweekno
for _, wday := range arg.Byweekday {
if wday.n == 0 || r.freq > MONTHLY {
r.byweekday = append(r.byweekday, wday.weekday)
} else {
r.bynweekday = append(r.bynweekday, wday)
}
}
if len(arg.Byhour) == 0 {
if r.freq < HOURLY {
r.byhour = []int{r.dtstart.Hour()}
}
} else {
r.byhour = arg.Byhour
}
if len(arg.Byminute) == 0 {
if r.freq < MINUTELY {
r.byminute = []int{r.dtstart.Minute()}
}
} else {
r.byminute = arg.Byminute
}
if len(arg.Bysecond) == 0 {
if r.freq < SECONDLY {
r.bysecond = []int{r.dtstart.Second()}
}
} else {
r.bysecond = arg.Bysecond
}
// Reset the timeset value
r.timeset = nil
if r.freq < HOURLY {
r.timeset = make([]time.Time, 0, len(r.byhour)*len(r.byminute)*len(r.bysecond))
for _, hour := range r.byhour {
for _, minute := range r.byminute {
for _, second := range r.bysecond {
r.timeset = append(r.timeset, time.Date(1, 1, 1, hour, minute, second, 0, r.dtstart.Location()))
}
}
}
sort.Sort(timeSlice(r.timeset))
}
r.Options = arg
return r
}
// validateBounds checks the RRule's options are within the boundaries defined
// in RRFC 5545. This is useful to ensure that the RRule can even have any times,
// as going outside these bounds trivially will never have any dates. This can catch
// obvious user error.
func validateBounds(arg ROption) error {
bounds := []struct {
field []int
param string
bound []int
plusMinus bool // If the bound also applies for -x to -y.
}{
{arg.Bysecond, "bysecond", []int{0, 59}, false},
{arg.Byminute, "byminute", []int{0, 59}, false},
{arg.Byhour, "byhour", []int{0, 23}, false},
{arg.Bymonthday, "bymonthday", []int{1, 31}, true},
{arg.Byyearday, "byyearday", []int{1, 366}, true},
{arg.Byweekno, "byweekno", []int{1, 53}, true},
{arg.Bymonth, "bymonth", []int{1, 12}, false},
{arg.Bysetpos, "bysetpos", []int{1, 366}, true},
}
checkBounds := func(param string, value int, bounds []int, plusMinus bool) error {
if !(value >= bounds[0] && value <= bounds[1]) && (!plusMinus || !(value <= -bounds[0] && value >= -bounds[1])) {
plusMinusBounds := ""
if plusMinus {
plusMinusBounds = fmt.Sprintf(" or %d and %d", -bounds[0], -bounds[1])
}
return fmt.Errorf("%s must be between %d and %d%s", param, bounds[0], bounds[1], plusMinusBounds)
}
return nil
}
for _, b := range bounds {
for _, value := range b.field {
if err := checkBounds(b.param, value, b.bound, b.plusMinus); err != nil {
return err
}
}
}
// Days can optionally specify weeks, like BYDAY=+2MO for the 2nd Monday
// of the month/year.
for _, w := range arg.Byweekday {
if w.n > 53 || w.n < -53 {
return errors.New("byday must be between 1 and 53 or -1 and -53")
}
}
if arg.Interval < 0 {
return errors.New("interval must be greater than 0")
}
return nil
}
type iterInfo struct {
rrule *RRule
lastyear int
lastmonth time.Month
yearlen int
nextyearlen int
firstyday time.Time
yearweekday int
mmask []int
mrange []int
mdaymask []int
nmdaymask []int
wdaymask []int
wnomask []int
nwdaymask []int
eastermask []int
}
func (info *iterInfo) rebuild(year int, month time.Month) {
// Every mask is 7 days longer to handle cross-year weekly periods.
if year != info.lastyear {
info.yearlen = 365 + isLeap(year)
info.nextyearlen = 365 + isLeap(year+1)
info.firstyday = time.Date(
year, time.January, 1, 0, 0, 0, 0,
info.rrule.dtstart.Location())
info.yearweekday = toPyWeekday(info.firstyday.Weekday())
info.wdaymask = WDAYMASK[info.yearweekday:]
if info.yearlen == 365 {
info.mmask = M365MASK
info.mdaymask = MDAY365MASK
info.nmdaymask = NMDAY365MASK
info.mrange = M365RANGE
} else {
info.mmask = M366MASK
info.mdaymask = MDAY366MASK
info.nmdaymask = NMDAY366MASK
info.mrange = M366RANGE
}
if len(info.rrule.byweekno) == 0 {
info.wnomask = nil
} else {
info.wnomask = make([]int, info.yearlen+7)
firstwkst := pymod(7-info.yearweekday+info.rrule.wkst, 7)
no1wkst := firstwkst
var wyearlen int
if no1wkst >= 4 {
no1wkst = 0
// Number of days in the year, plus the days we got from last year.
wyearlen = info.yearlen + pymod(info.yearweekday-info.rrule.wkst, 7)
} else {
// Number of days in the year, minus the days we left in last year.
wyearlen = info.yearlen - no1wkst
}
div, mod := divmod(wyearlen, 7)
numweeks := div + mod/4
for _, n := range info.rrule.byweekno {
if n < 0 {
n += numweeks + 1
}
if !(0 < n && n <= numweeks) {
continue
}
var i int
if n > 1 {
i = no1wkst + (n-1)*7
if no1wkst != firstwkst {
i -= 7 - firstwkst
}
} else {
i = no1wkst
}
for j := 0; j < 7; j++ {
info.wnomask[i] = 1
i++
if info.wdaymask[i] == info.rrule.wkst {
break
}
}
}
if contains(info.rrule.byweekno, 1) {
// Check week number 1 of next year as well
// TODO: Check -numweeks for next year.
i := no1wkst + numweeks*7
if no1wkst != firstwkst {
i -= 7 - firstwkst
}
if i < info.yearlen {
// If week starts in next year, we
// don't care about it.
for j := 0; j < 7; j++ {
info.wnomask[i] = 1
i++
if info.wdaymask[i] == info.rrule.wkst {
break
}
}
}
}
if no1wkst != 0 {
// Check last week number of last year as
// well. If no1wkst is 0, either the year
// started on week start, or week number 1
// got days from last year, so there are no
// days from last year's last week number in
// this year.
var lnumweeks int
if !contains(info.rrule.byweekno, -1) {
lyearweekday := toPyWeekday(time.Date(
year-1, 1, 1, 0, 0, 0, 0,
info.rrule.dtstart.Location()).Weekday())
lno1wkst := pymod(7-lyearweekday+info.rrule.wkst, 7)
lyearlen := 365 + isLeap(year-1)
if lno1wkst >= 4 {
lno1wkst = 0
lnumweeks = 52 + pymod(lyearlen+pymod(lyearweekday-info.rrule.wkst, 7), 7)/4
} else {
lnumweeks = 52 + pymod(info.yearlen-no1wkst, 7)/4
}
} else {
lnumweeks = -1
}
if contains(info.rrule.byweekno, lnumweeks) {
for i := 0; i < no1wkst; i++ {
info.wnomask[i] = 1
}
}
}
}
}
if len(info.rrule.bynweekday) != 0 && (month != info.lastmonth || year != info.lastyear) {
var ranges [][]int
if info.rrule.freq == YEARLY {
if len(info.rrule.bymonth) != 0 {
for _, month := range info.rrule.bymonth {
ranges = append(ranges, info.mrange[month-1:month+1])
}
} else {
ranges = [][]int{{0, info.yearlen}}
}
} else if info.rrule.freq == MONTHLY {
ranges = [][]int{info.mrange[month-1 : month+1]}
}
if len(ranges) != 0 {
// Weekly frequency won't get here, so we may not
// care about cross-year weekly periods.
info.nwdaymask = make([]int, info.yearlen)
for _, x := range ranges {
first, last := x[0], x[1]
last--
for _, y := range info.rrule.bynweekday {
wday, n := y.weekday, y.n
var i int
if n < 0 {
i = last + (n+1)*7
if i >= len(info.wdaymask) {
continue
}
i -= pymod(info.wdaymask[i]-wday, 7)
} else {
i = first + (n-1)*7
if i >= len(info.wdaymask) {
continue
}
i += pymod(7-info.wdaymask[i]+wday, 7)
}
if first <= i && i <= last {
info.nwdaymask[i] = 1
}
}
}
}
}
if len(info.rrule.byeaster) != 0 {
info.eastermask = make([]int, info.yearlen+7)
eyday := easter(year).YearDay() - 1
for _, offset := range info.rrule.byeaster {
info.eastermask[eyday+offset] = 1
}
}
info.lastyear = year
info.lastmonth = month
}
func (info *iterInfo) calcDaySet(freq Frequency, year int, month time.Month, day int) (start, end int) {
switch freq {
case YEARLY:
return 0, info.yearlen
case MONTHLY:
start, end = info.mrange[month-1], info.mrange[month]
return start, end
case WEEKLY:
// We need to handle cross-year weeks here.
i := time.Date(year, month, day, 0, 0, 0, 0, time.UTC).YearDay() - 1
start, end = i, i+1
for j := 0; j < 7; j++ {
i++
// if (not (0 <= i < self.yearlen) or
// self.wdaymask[i] == self.rrule._wkst):
// This will cross the year boundary, if necessary.
if info.wdaymask[i] == info.rrule.wkst {
break
}
end = i + 1
}
return start, end
default:
// DAILY, HOURLY, MINUTELY, SECONDLY:
i := time.Date(year, month, day, 0, 0, 0, 0, time.UTC).YearDay() - 1
return i, i + 1
}
}
func (info *iterInfo) fillTimeSet(set *[]time.Time, freq Frequency, hour, minute, second int) {
switch freq {
case HOURLY:
prepareTimeSet(set, len(info.rrule.byminute)*len(info.rrule.bysecond))
for _, minute := range info.rrule.byminute {
for _, second := range info.rrule.bysecond {
*set = append(*set, time.Date(1, 1, 1, hour, minute, second, 0, info.rrule.dtstart.Location()))
}
}
sort.Sort(timeSlice(*set))
case MINUTELY:
prepareTimeSet(set, len(info.rrule.bysecond))
for _, second := range info.rrule.bysecond {
*set = append(*set, time.Date(1, 1, 1, hour, minute, second, 0, info.rrule.dtstart.Location()))
}
sort.Sort(timeSlice(*set))
case SECONDLY:
prepareTimeSet(set, 1)
*set = append(*set, time.Date(1, 1, 1, hour, minute, second, 0, info.rrule.dtstart.Location()))
default:
prepareTimeSet(set, 0)
}
}
func prepareTimeSet(set *[]time.Time, length int) {
if len(*set) < length {
*set = make([]time.Time, 0, length)
return
}
*set = (*set)[:0]
}
// rIterator is a iterator of RRule
type rIterator struct {
year int
month time.Month
day int
hour int
minute int
second int
weekday int
ii iterInfo
timeset []time.Time
total int
count int
remain reusingRemainSlice
finished bool
dayset []optInt
}
func (iterator *rIterator) generate() {
if iterator.finished {
return
}
r := iterator.ii.rrule
for iterator.remain.Len() == 0 {
// Get dayset with the right frequency
setStart, setEnd := iterator.ii.calcDaySet(r.freq, iterator.year, iterator.month, iterator.day)
iterator.fillDaySetMonotonic(setStart, setEnd)
dayset := iterator.dayset
filtered := false
// Do the "hard" work ;-)
for dayIndex, day := range dayset {
i := day.Int
if len(r.bymonth) != 0 && !contains(r.bymonth, iterator.ii.mmask[i]) ||
len(r.byweekno) != 0 && iterator.ii.wnomask[i] == 0 ||
len(r.byweekday) != 0 && !contains(r.byweekday, iterator.ii.wdaymask[i]) ||
len(iterator.ii.nwdaymask) != 0 && iterator.ii.nwdaymask[i] == 0 ||
len(r.byeaster) != 0 && iterator.ii.eastermask[i] == 0 ||
(len(r.bymonthday) != 0 || len(r.bynmonthday) != 0) &&
!contains(r.bymonthday, iterator.ii.mdaymask[i]) &&
!contains(r.bynmonthday, iterator.ii.nmdaymask[i]) ||
len(r.byyearday) != 0 &&
(i < iterator.ii.yearlen &&
!contains(r.byyearday, i+1) &&
!contains(r.byyearday, -iterator.ii.yearlen+i) ||
i >= iterator.ii.yearlen &&
!contains(r.byyearday, i+1-iterator.ii.yearlen) &&
!contains(r.byyearday, -iterator.ii.nextyearlen+i-iterator.ii.yearlen)) {
dayset[dayIndex].Defined = false
filtered = true
}
}
// Output results
if len(r.bysetpos) != 0 && len(iterator.timeset) != 0 {
var poslist []time.Time
for _, pos := range r.bysetpos {
var daypos, timepos int
if pos < 0 {
daypos, timepos = divmod(pos, len(iterator.timeset))
} else {
daypos, timepos = divmod(pos-1, len(iterator.timeset))
}
var temp []int
for _, day := range dayset {
if day.Defined {
temp = append(temp, day.Int)
}
}
i, err := pySubscript(temp, daypos)
if err != nil {
continue
}
timeTemp := iterator.timeset[timepos]
date := iterator.ii.firstyday.AddDate(0, 0, i)
dateYear, dateMonth, dateDay := date.Date()
tempHour, tempMinute, tempSecond := timeTemp.Clock()
var res time.Time
if r.freq < HOURLY {
res = time.Date(dateYear, dateMonth, dateDay,
tempHour, tempMinute, tempSecond,
timeTemp.Nanosecond(), timeTemp.Location())
} else {
res = date.Add(
time.Duration(tempHour)*time.Hour +
time.Duration(tempMinute)*time.Minute +
time.Duration(tempSecond)*time.Second,
)
}
if !timeContains(poslist, res) {
poslist = append(poslist, res)
}
}
sort.Sort(timeSlice(poslist))
for _, res := range poslist {
if !r.until.IsZero() && res.After(r.until) {
r.len = iterator.total
iterator.finished = true
return
} else if !res.Before(r.dtstart) {
iterator.total++
iterator.remain.Append(res)
if iterator.count != 0 {
iterator.count--
if iterator.count == 0 {
r.len = iterator.total
iterator.finished = true
return
}
}
}
}
} else {
for _, day := range dayset {
if !day.Defined {
continue
}
i := day.Int
date := iterator.ii.firstyday.AddDate(0, 0, i)
dateYear, dateMonth, dateDay := date.Date()
for _, timeTemp := range iterator.timeset {
tempHour, tempMinute, tempSecond := timeTemp.Clock()
var res time.Time
if r.freq < HOURLY {
res = time.Date(dateYear, dateMonth, dateDay,
tempHour, tempMinute, tempSecond,
timeTemp.Nanosecond(), timeTemp.Location())
} else {
res = date.Add(
time.Duration(tempHour)*time.Hour +
time.Duration(tempMinute)*time.Minute +
time.Duration(tempSecond)*time.Second,
)
}
if !r.until.IsZero() && res.After(r.until) {
r.len = iterator.total
iterator.finished = true
return
} else if !res.Before(r.dtstart) {
iterator.total++
iterator.remain.Append(res)
if iterator.count != 0 {
iterator.count--
if iterator.count == 0 {
r.len = iterator.total
iterator.finished = true
return
}
}
}
}
}
}
// Handle frequency and interval
fixday := false
if r.freq == YEARLY {
iterator.year += r.interval
if iterator.year > MAXYEAR {
r.len = iterator.total
iterator.finished = true
return
}
iterator.ii.rebuild(iterator.year, iterator.month)
} else if r.freq == MONTHLY {
iterator.month += time.Month(r.interval)
if iterator.month > 12 {
div, mod := divmod(int(iterator.month), 12)
iterator.month = time.Month(mod)
iterator.year += div
if iterator.month == 0 {
iterator.month = 12
iterator.year--
}
if iterator.year > MAXYEAR {
r.len = iterator.total
iterator.finished = true
return
}
}
iterator.ii.rebuild(iterator.year, iterator.month)
} else if r.freq == WEEKLY {
if r.wkst > iterator.weekday {
iterator.day += -(iterator.weekday + 1 + (6 - r.wkst)) + r.interval*7
} else {
iterator.day += -(iterator.weekday - r.wkst) + r.interval*7
}
iterator.weekday = r.wkst
fixday = true
} else if r.freq == DAILY {
iterator.day += r.interval
fixday = true
} else if r.freq == HOURLY {
if filtered {
// Jump to one iteration before next day
iterator.hour += ((23 - iterator.hour) / r.interval) * r.interval
}
for {
iterator.hour += r.interval
div, mod := divmod(iterator.hour, 24)
if div != 0 {
iterator.hour = mod
iterator.day += div
fixday = true
}
if len(r.byhour) == 0 || contains(r.byhour, iterator.hour) {
break
}
}
iterator.ii.fillTimeSet(&iterator.timeset, r.freq, iterator.hour, iterator.minute, iterator.second)
} else if r.freq == MINUTELY {
if filtered {
// Jump to one iteration before next day
iterator.minute += ((1439 - (iterator.hour*60 + iterator.minute)) / r.interval) * r.interval
}
for {
iterator.minute += r.interval
div, mod := divmod(iterator.minute, 60)
if div != 0 {
iterator.minute = mod
iterator.hour += div
div, mod = divmod(iterator.hour, 24)
if div != 0 {
iterator.hour = mod
iterator.day += div
fixday = true
}
}
if (len(r.byhour) == 0 || contains(r.byhour, iterator.hour)) &&
(len(r.byminute) == 0 || contains(r.byminute, iterator.minute)) {
break
}
}
iterator.ii.fillTimeSet(&iterator.timeset, r.freq, iterator.hour, iterator.minute, iterator.second)
} else if r.freq == SECONDLY {
if filtered {
// Jump to one iteration before next day
iterator.second += (((86399 - (iterator.hour*3600 + iterator.minute*60 + iterator.second)) / r.interval) * r.interval)
}
for {
iterator.second += r.interval
div, mod := divmod(iterator.second, 60)
if div != 0 {
iterator.second = mod
iterator.minute += div
div, mod = divmod(iterator.minute, 60)
if div != 0 {
iterator.minute = mod
iterator.hour += div
div, mod = divmod(iterator.hour, 24)
if div != 0 {
iterator.hour = mod
iterator.day += div
fixday = true
}
}
}
if (len(r.byhour) == 0 || contains(r.byhour, iterator.hour)) &&
(len(r.byminute) == 0 || contains(r.byminute, iterator.minute)) &&
(len(r.bysecond) == 0 || contains(r.bysecond, iterator.second)) {
break
}
}
iterator.ii.fillTimeSet(&iterator.timeset, r.freq, iterator.hour, iterator.minute, iterator.second)
}
if fixday && iterator.day > 28 {
daysinmonth := daysIn(iterator.month, iterator.year)
if iterator.day > daysinmonth {
for iterator.day > daysinmonth {
iterator.day -= daysinmonth
iterator.month++
if iterator.month == 13 {
iterator.month = 1
iterator.year++
if iterator.year > MAXYEAR {
r.len = iterator.total
iterator.finished = true
return
}
}
daysinmonth = daysIn(iterator.month, iterator.year)
}
iterator.ii.rebuild(iterator.year, iterator.month)
}
}
}
}
func (iterator *rIterator) fillDaySetMonotonic(start, end int) {
desiredLen := end - start
if cap(iterator.dayset) < desiredLen {
iterator.dayset = make([]optInt, 0, desiredLen)
} else {
iterator.dayset = iterator.dayset[:0]
}
for i := start; i < end; i++ {
iterator.dayset = append(iterator.dayset, optInt{
Int: i,
Defined: true,
})
}
}
// next returns next occurrence and true if it exists, else zero value and false
func (iterator *rIterator) next() (time.Time, bool) {
iterator.generate()
return iterator.remain.Pop()
}
type reusingRemainSlice struct {
storage []time.Time
backup []time.Time
}
func (s reusingRemainSlice) Len() int {
return len(s.storage)
}
func (s *reusingRemainSlice) Append(t time.Time) {
s.storage = append(s.storage, t)
s.backup = s.storage
}
func (s *reusingRemainSlice) Pop() (ret time.Time, ok bool) {
if len(s.storage) == 0 {
return time.Time{}, false
}
ret, s.storage = s.storage[0], s.storage[1:]
if len(s.storage) == 0 {
// flush storage
s.storage = s.backup[:0]
}
return ret, true
}
// Iterator return an iterator for RRule
func (r *RRule) Iterator() Next {
iterator := rIterator{}
iterator.year, iterator.month, iterator.day = r.dtstart.Date()
iterator.hour, iterator.minute, iterator.second = r.dtstart.Clock()
iterator.weekday = toPyWeekday(r.dtstart.Weekday())
iterator.ii = iterInfo{rrule: r}
iterator.ii.rebuild(iterator.year, iterator.month)
if r.freq < HOURLY {
iterator.timeset = r.timeset
} else {
if r.freq >= HOURLY && len(r.byhour) != 0 && !contains(r.byhour, iterator.hour) ||
r.freq >= MINUTELY && len(r.byminute) != 0 && !contains(r.byminute, iterator.minute) ||
r.freq >= SECONDLY && len(r.bysecond) != 0 && !contains(r.bysecond, iterator.second) {
iterator.timeset = nil
} else {
iterator.ii.fillTimeSet(&iterator.timeset, r.freq, iterator.hour, iterator.minute, iterator.second)
}
}
iterator.count = r.count
return iterator.next
}
// All returns all occurrences of the RRule.
// It is only supported second precision.
func (r *RRule) All() []time.Time {
return all(r.Iterator())
}
// Between returns all the occurrences of the RRule between after and before.
// The inc keyword defines what happens if after and/or before are themselves occurrences.
// With inc == True, they will be included in the list, if they are found in the recurrence set.
// It is only supported second precision.
func (r *RRule) Between(after, before time.Time, inc bool) []time.Time {
return between(r.Iterator(), after, before, inc)
}
// Before returns the last recurrence before the given datetime instance,
// or time.Time's zero value if no recurrence match.
// The inc keyword defines what happens if dt is an occurrence.
// With inc == True, if dt itself is an occurrence, it will be returned.
// It is only supported second precision.
func (r *RRule) Before(dt time.Time, inc bool) time.Time {
return before(r.Iterator(), dt, inc)
}
// After returns the first recurrence after the given datetime instance,
// or time.Time's zero value if no recurrence match.
// The inc keyword defines what happens if dt is an occurrence.
// With inc == True, if dt itself is an occurrence, it will be returned.
// It is only supported second precision.
func (r *RRule) After(dt time.Time, inc bool) time.Time {
return after(r.Iterator(), dt, inc)
}
// DTStart set a new DTSTART for the rule and recalculates the timeset if needed.
// It will be truncated to second precision.
// Default to `time.Now().UTC().Truncate(time.Second)`.
func (r *RRule) DTStart(dt time.Time) {
r.OrigOptions.Dtstart = dt.Truncate(time.Second)
*r = buildRRule(r.OrigOptions)
}
// GetDTStart gets DTSTART time for rrule
func (r *RRule) GetDTStart() time.Time {
return r.dtstart
}
// Until set a new UNTIL for the rule and recalculates the timeset if needed.
// It will be truncated to second precision.
// Default to `Dtstart.Add(time.Duration(1<<63 - 1))`, approximately 290 years.
func (r *RRule) Until(ut time.Time) {