]> gitweb.factorcode.org Git - factor.git/blob - basis/calendar/calendar.factor
19af136e1b2fcd0d036773b45582482ef1888d8b
[factor.git] / basis / calendar / calendar.factor
1 ! Copyright (C) 2007 Doug Coleman.
2 ! See http://factorcode.org/license.txt for BSD license.
3 USING: accessors arrays classes.tuple combinators
4 combinators.short-circuit kernel literals math math.functions
5 math.intervals math.order math.parser math.statistics sequences
6 slots.syntax splitting system vocabs vocabs.loader ;
7 FROM: math.ranges => [a..b) ;
8 IN: calendar
9
10 ERROR: not-in-interval value interval ;
11
12 : check-interval ( value interval -- value )
13     2dup interval-contains? [ drop ] [ not-in-interval ] if ;
14
15 HOOK: gmt-offset os ( -- hours minutes seconds )
16
17 HOOK: now-gmt os ( -- timestamp )
18
19 TUPLE: duration
20     { year real }
21     { month real }
22     { day real }
23     { hour real }
24     { minute real }
25     { second real } ;
26
27 C: <duration> duration
28
29 : instant ( -- duration ) 0 0 0 0 0 0 <duration> ;
30
31 TUPLE: timestamp
32     { year integer }
33     { month integer }
34     { day integer }
35     { hour integer }
36     { minute integer }
37     { second real }
38     { gmt-offset duration } ;
39
40 <PRIVATE
41 <<
42 CONSTANT: day-counts { 0 31 28 31 30 31 30 31 31 30 31 30 31 }
43 >>
44 CONSTANT: days-until $[ day-counts cum-sum0 ]
45
46 PRIVATE>
47
48 GENERIC: leap-year? ( obj -- ? )
49
50 M: integer leap-year?
51     dup 100 divisor? 400 4 ? divisor? ;
52
53 M: timestamp leap-year?
54     year>> leap-year? ;
55
56 : (days-in-month) ( year month -- n )
57     dup 2 = [ drop leap-year? 29 28 ? ] [ nip day-counts nth ] if ;
58
59 :: <timestamp> ( year month day hour minute second gmt-offset -- timestamp )
60     year
61     month 1 12 [a,b] check-interval
62     day 1 year month (days-in-month) [a,b] check-interval
63     hour 0 23 [a,b] check-interval
64     minute 0 59 [a,b] check-interval
65     second 0 60 [a,b) check-interval
66     gmt-offset timestamp boa ;
67
68 M: timestamp clone (clone) [ clone ] change-gmt-offset ;
69
70 : gmt-offset-duration ( -- duration )
71     0 0 0 gmt-offset <duration> ; inline
72
73 : <date> ( year month day -- timestamp )
74     0 0 0 gmt-offset-duration <timestamp> ; inline
75
76 : <date-gmt> ( year month day -- timestamp )
77     0 0 0 instant <timestamp> ; inline
78
79 : <year> ( year -- timestamp )
80     1 1 <date> ; inline
81
82 : <year-gmt> ( year -- timestamp )
83     1 1 <date-gmt> ; inline
84
85 CONSTANT: average-month 30+5/12
86 CONSTANT: months-per-year 12
87 CONSTANT: days-per-year 3652425/10000
88 CONSTANT: hours-per-year 876582/100
89 CONSTANT: minutes-per-year 5259492/10
90 CONSTANT: seconds-per-year 31556952
91
92 :: julian-day-number ( year month day -- n )
93     ! Returns a composite date number
94     ! Not valid before year -4800
95     14 month - 12 /i :> a
96     year 4800 + a - :> y
97     month 12 a * + 3 - :> m
98
99     day 153 m * 2 + 5 /i + 365 y * +
100     y 4 /i + y 100 /i - y 400 /i + 32045 - ;
101
102 :: julian-day-number>date ( n -- year month day )
103     ! Inverse of julian-day-number
104     n 32044 + :> a
105     4 a * 3 + 146097 /i :> b
106     a 146097 b * 4 /i - :> c
107     4 c * 3 + 1461 /i :> d
108     c 1461 d * 4 /i - :> e
109     5 e * 2 + 153 /i :> m
110
111     100 b * d + 4800 -
112     m 10 /i + m 3 +
113     12 m 10 /i * -
114     e 153 m * 2 + 5 /i - 1 + ;
115
116 GENERIC: easter ( obj -- obj' )
117
118 :: easter-month-day ( year -- month day )
119     year 19 mod :> a
120     year 100 /mod :> ( b c )
121     b 4 /mod :> ( d e )
122     b 8 + 25 /i :> f
123     b f - 1 + 3 /i :> g
124     19 a * b + d - g - 15 + 30 mod :> h
125     c 4 /mod :> ( i k )
126     32 2 e * + 2 i * + h - k - 7 mod :> l
127     a 11 h * + 22 l * + 451 /i :> m
128
129     h l + 7 m * - 114 + 31 /mod 1 + ;
130
131 M: integer easter
132     dup easter-month-day <date> ;
133
134 M: timestamp easter
135     dup year>> easter-month-day
136     swapd >>day swap >>month ;
137
138 : >date< ( timestamp -- year month day )
139     [ year>> ] [ month>> ] [ day>> ] tri ;
140
141 : set-date ( timestamp year month day -- timestamp )
142     [ >>year ] [ >>month ] [ >>day ] tri* ;
143
144 : >time< ( timestamp -- hour minute second )
145     [ hour>> ] [ minute>> ] [ second>> ] tri ;
146
147 : set-time ( timestamp hour minute second -- timestamp )
148     [ >>hour ] [ >>minute ] [ >>second ] tri* ;
149
150 : years ( x -- duration ) instant swap >>year ;
151 : bienniums ( x -- duration ) instant swap 2 * >>year ;
152 : trienniums ( x -- duration ) instant swap 3 * >>year ;
153 : quadrenniums ( x -- duration ) instant swap 4 * >>year ;
154 : quinquenniums ( x -- duration ) instant swap 5 * >>year ;
155 : sexenniums ( x -- duration ) instant swap 6 * >>year ;
156 : septenniums ( x -- duration ) instant swap 7 * >>year ;
157 : octenniums ( x -- duration ) instant swap 8 * >>year ;
158 : novenniums ( x -- duration ) instant swap 9 * >>year ;
159 : lustrums ( x -- duration ) instant swap 5 * >>year ;
160 : decades ( x -- duration ) instant swap 10 * >>year ;
161 : indictions ( x -- duration ) instant swap 15 * >>year ;
162 : score ( x -- duration ) instant swap 20 * >>year ;
163 : jubilees ( x -- duration ) instant swap 50 * >>year ;
164 : centuries ( x -- duration ) instant swap 100 * >>year ;
165 : millennia ( x -- duration ) instant swap 1000 * >>year ;
166 : millenniums ( x -- duration ) instant swap 1000 * >>year ;
167 : kila-annum ( x -- duration ) instant swap 1000 * >>year ;
168 : mega-annum ( x -- duration ) instant swap 1,000,000 * >>year ;
169 : giga-annum ( x -- duration ) instant swap 1,000,000,000 * >>year ;
170 : ages ( x -- duration ) instant swap 1,000,000 * >>year ;
171 : epochs ( x -- duration ) instant swap 10,000,000 * >>year ;
172 : eras ( x -- duration ) instant swap 100,000,000 * >>year ;
173 : eons ( x -- duration ) instant swap 500,000,000 * >>year ;
174 : months ( x -- duration ) instant swap >>month ;
175 : days ( x -- duration ) instant swap >>day ;
176 : weeks ( x -- duration ) 7 * days ;
177 : fortnight ( x -- duration ) 14 * days ;
178 : hours ( x -- duration ) instant swap >>hour ;
179 : minutes ( x -- duration ) instant swap >>minute ;
180 : seconds ( x -- duration ) instant swap >>second ;
181 : milliseconds ( x -- duration ) 1000 / seconds ;
182 : microseconds ( x -- duration ) 1000000 / seconds ;
183 : nanoseconds ( x -- duration ) 1000000000 / seconds ;
184
185 <PRIVATE
186
187 GENERIC: +year ( timestamp x -- timestamp )
188 GENERIC: +month ( timestamp x -- timestamp )
189 GENERIC: +day ( timestamp x -- timestamp )
190 GENERIC: +hour ( timestamp x -- timestamp )
191 GENERIC: +minute ( timestamp x -- timestamp )
192 GENERIC: +second ( timestamp x -- timestamp )
193
194 : /rem ( f n -- q r )
195     ! q is positive or negative, r is positive from 0 <= r < n
196     [ /mod ] keep over 0 < [ + [ -1 + ] dip ] [ drop ] if ; inline
197
198 : float>whole-part ( float -- int float )
199     [ floor >integer ] keep over - ; inline
200
201 : adjust-leap-year ( timestamp -- timestamp )
202     dup
203     { [ day>> 29 = ] [ month>> 2 = ] [ leap-year? not ] } 1&&
204     [ 3 >>month 1 >>day ] when ;
205
206 M: integer +year
207     [ + ] curry change-year adjust-leap-year ;
208
209 M: real +year
210     float>whole-part swapd days-per-year * +day swap +year ;
211
212 : months/years ( n -- months years )
213     12 /rem [ 1 - 12 ] when-zero swap ; inline
214
215 M: integer +month
216     [ over month>> + months/years [ >>month ] dip +year ] unless-zero ;
217
218 M: real +month
219     float>whole-part swapd average-month * +day swap +month ;
220
221 M: integer +day
222     [ over >date< julian-day-number + julian-day-number>date set-date ] unless-zero ;
223
224 M: real +day
225     float>whole-part swapd 24 * +hour swap +day ;
226
227 : hours/days ( n -- hours days )
228     24 /rem swap ; inline
229
230 M: integer +hour
231     [ over hour>> + hours/days [ >>hour ] dip +day ] unless-zero ;
232
233 M: real +hour
234     float>whole-part swapd 60 * +minute swap +hour ;
235
236 : minutes/hours ( n -- minutes hours )
237     60 /rem swap ; inline
238
239 M: integer +minute
240     [ over minute>> + minutes/hours [ >>minute ] dip +hour ] unless-zero ;
241
242 M: real +minute
243     float>whole-part swapd 60 * +second swap +minute ;
244
245 : seconds/minutes ( n -- seconds minutes )
246     60 /rem swap ; inline
247
248 M: number +second
249     [ over second>> + seconds/minutes [ >>second ] dip +minute ] unless-zero ;
250
251 : (time+) ( timestamp duration -- timestamp )
252     {
253         [ second>> +second ]
254         [ minute>> +minute ]
255         [ hour>>   +hour   ]
256         [ day>>    +day    ]
257         [ month>>  +month  ]
258         [ year>>   +year   ]
259      } cleave ; inline
260
261 PRIVATE>
262
263 GENERIC#: time+ 1 ( time1 time2 -- time3 )
264
265 M: timestamp time+ [ clone ] dip (time+) ;
266
267 : duration+ ( duration1 duration2 -- duration3 )
268     {
269         [ [ year>> ] bi@ + ]
270         [ [ month>> ] bi@ + ]
271         [ [ day>> ] bi@ + ]
272         [ [ hour>> ] bi@ + ]
273         [ [ minute>> ] bi@ + ]
274         [ [ second>> ] bi@ + ]
275     } 2cleave <duration> ; inline
276
277 M: duration time+
278     dup timestamp? [ swap time+ ] [ duration+ ] if ;
279
280 : duration>years ( duration -- x )
281     ! Uses average month/year length since duration loses calendar data
282     0 swap
283     {
284         [ year>> + ]
285         [ month>> months-per-year / + ]
286         [ day>> days-per-year / + ]
287         [ hour>> hours-per-year / + ]
288         [ minute>> minutes-per-year / + ]
289         [ second>> seconds-per-year / + ]
290     } cleave ;
291
292 M: duration <=> [ duration>years ] compare ;
293
294 : duration>months ( duration -- x ) duration>years months-per-year * ;
295 : duration>days ( duration -- x ) duration>years days-per-year * ;
296 : duration>hours ( duration -- x ) duration>years hours-per-year * ;
297 : duration>minutes ( duration -- x ) duration>years minutes-per-year * ;
298 : duration>seconds ( duration -- x ) duration>years seconds-per-year * ;
299 : duration>milliseconds ( duration -- x ) duration>seconds 1000 * ;
300 : duration>microseconds ( duration -- x ) duration>seconds 1000000 * ;
301 : duration>nanoseconds ( duration -- x ) duration>seconds 1000000000 * ;
302
303 DEFER: time-
304
305 : gmt ( timestamp -- timestamp )
306     instant >>gmt-offset ; inline
307
308 : local-time ( timestamp -- timestamp )
309     gmt-offset-duration >>gmt-offset ; inline
310
311 : convert-timezone ( timestamp duration -- timestamp )
312     [ over gmt-offset>> time- (time+) ] [ >>gmt-offset ] bi ;
313
314 : >local-time ( timestamp -- timestamp )
315     gmt-offset-duration convert-timezone ;
316
317 : >gmt ( timestamp -- timestamp )
318     instant convert-timezone ;
319
320 ALIAS: utc gmt
321 ALIAS: >utc >gmt
322
323 M: timestamp <=> [ clone >gmt tuple-slots ] compare ;
324
325 <PRIVATE
326
327 : same-times? ( timestamp1 timestamp2 quot -- ? )
328     [ clone >gmt ] prepose same? ; inline
329
330 PRIVATE>
331
332 : same-year? ( ts1 ts2 -- ? )
333     [ slots{ year } ] same-times? ;
334
335 : quarter ( timestamp -- [1,4] )
336     month>> 3 /i 1 + ; inline
337
338 : same-quarter? ( ts1 ts2 -- ? )
339     [ [ year>> ] [ quarter ] bi 2array ] same-times? ;
340
341 : same-month? ( ts1 ts2 -- ? )
342     [ slots{ year month } ] same-times? ;
343
344 :: (day-of-year) ( year month day -- n )
345     month days-until nth day + {
346         [ year leap-year? ]
347         [ month 3 >= ]
348     } 0&& [ 1 + ] when ;
349
350 : day-of-year ( timestamp -- n )
351     >date< (day-of-year) ;
352
353 : same-day? ( ts1 ts2 -- ? )
354     [ slots{ year month day } ] same-times? ;
355
356 : (day-of-week) ( year month day -- n )
357     ! Zeller Congruence
358     ! http://web.textfiles.com/computers/formulas.txt
359     ! good for any date since October 15, 1582
360     [
361         dup 2 <= [ [ 1 - ] [ 12 + ] bi* ] when
362         [ dup [ 4 /i + ] [ 100 /i - ] [ 400 /i + ] tri ] dip
363         [ 1 + 3 * 5 /i + ] keep 2 * +
364     ] dip 1 + + 7 mod ;
365
366 : day-of-week ( timestamp -- n )
367     >date< (day-of-week) ;
368
369 : (week-number) ( timestamp -- [0,53] )
370     [ day-of-year ] [ day-of-week [ 7 ] when-zero ] bi - 10 + 7 /i ;
371
372 DEFER: end-of-year
373
374 : week-number ( timestamp -- [1,53] )
375     dup (week-number) {
376         {  0 [ year>> 1 - end-of-year (week-number) ] }
377         { 53 [ year>> 1 + <year> (week-number) 1 = 1 53 ? ] }
378         [ nip ]
379     } case ;
380
381 : same-week? ( ts1 ts2 -- ? )
382     [ [ year>> ] [ week-number ] bi 2array ] same-times? ;
383
384 : same-hour? ( ts1 ts2 -- ? )
385     [ slots{ year month day hour } ] same-times? ;
386
387 : same-minute? ( ts1 ts2 -- ? )
388     [ slots{ year month day hour minute } ] same-times? ;
389
390 : same-second? ( ts1 ts2 -- ? )
391     [ slots{ year month day hour minute second } ] same-times? ;
392
393 <PRIVATE
394
395 : (time-) ( timestamp timestamp -- n )
396     [ [ >date< julian-day-number ] bi@ - 86400 * ]
397     [ [ >time< [ 3600 * ] [ 60 * + ] [ + ] tri* ] bi@ - + ]
398     [ [ gmt-offset>> duration>seconds ] bi@ swap - + ] 2tri ;
399
400 PRIVATE>
401
402 GENERIC: time- ( time1 time2 -- time3 )
403
404 M: timestamp time-
405     ! Exact calendar-time difference
406     (time-) seconds ;
407
408 : duration* ( obj1 obj2 -- obj3 )
409     dup real? [ swap ] when
410     dup real? [ * ] [
411         {
412             [   year>> * ]
413             [  month>> * ]
414             [    day>> * ]
415             [   hour>> * ]
416             [ minute>> * ]
417             [ second>> * ]
418         } 2cleave <duration>
419     ] if ;
420
421 : before ( duration -- -duration )
422     -1 duration* ;
423
424 : duration- ( duration1 duration2 -- duration3 )
425     {
426         [ [ year>> ] bi@ - ]
427         [ [ month>> ] bi@ - ]
428         [ [ day>> ] bi@ - ]
429         [ [ hour>> ] bi@ - ]
430         [ [ minute>> ] bi@ - ]
431         [ [ second>> ] bi@ - ]
432     } 2cleave <duration> ; inline
433
434 M: duration time-
435     over timestamp? [ before time+ ] [ duration- ] if ;
436
437 : unix-1970 ( -- timestamp )
438     1970 <year-gmt> ; inline
439
440 : millis>timestamp ( x -- timestamp )
441     unix-1970 swap 1000 / +second ;
442
443 : timestamp>millis ( timestamp -- n )
444     unix-1970 (time-) 1000 * >integer ;
445
446 : micros>timestamp ( x -- timestamp )
447     unix-1970 swap 1000000 / +second ;
448
449 : timestamp>micros ( timestamp -- n )
450     unix-1970 (time-) 1000000 * >integer ;
451
452 : now ( -- timestamp )
453     now-gmt gmt-offset-duration [ (time+) ] [ >>gmt-offset ] bi ;
454
455 : hence ( duration -- timestamp ) now swap time+ ;
456 : ago ( duration -- timestamp ) now swap time- ;
457
458 GENERIC: days-in-year ( obj -- n )
459
460 M: integer days-in-year leap-year? 366 365 ? ;
461
462 M: timestamp days-in-year year>> days-in-year ;
463
464 : days-in-month ( timestamp -- n )
465     >date< drop (days-in-month) ;
466
467 : midnight ( timestamp -- timestamp ) 0 0 0 set-time ; inline
468 : noon ( timestamp -- timestamp ) 12 0 0 set-time ; inline
469
470 : today ( -- timestamp ) now midnight ; inline
471 : tomorrow ( -- timestamp ) 1 days hence midnight ; inline
472 : overtomorrow ( -- timestamp ) 2 days hence midnight ; inline
473 : yesterday ( -- timestamp ) 1 days ago midnight ; inline
474 : ereyesterday ( -- timestamp ) 2 days ago midnight ; inline
475
476 ALIAS: start-of-day midnight
477
478 : end-of-day ( timestamp -- timestamp )
479     23 >>hour 59 >>minute 59+999/1000 >>second ; inline
480
481 : start-of-month ( timestamp -- timestamp )
482     midnight 1 >>day ; inline
483
484 : end-of-month ( timestamp -- timestamp )
485     [ end-of-day ] [ days-in-month ] bi >>day ;
486
487 : start-of-quarter ( timestamp -- timestamp )
488     [ start-of-day ] [ quarter 1 - 3 * ] bi >>month ; inline
489
490 : end-of-quarter ( timestamp -- timestamp )
491     dup quarter 1 - 3 * 3 + >>month end-of-month ; inline
492
493 : first-day-of-month ( timestamp -- timestamp )
494     1 >>day ;
495
496 : last-day-of-month ( timestamp -- timestamp )
497     dup days-in-month >>day ; inline
498
499 GENERIC: first-day-of-year ( object -- timestamp )
500 M: timestamp first-day-of-year first-day-of-month 1 >>month ;
501 M: integer first-day-of-year <year> ;
502
503 GENERIC: last-day-of-year ( object -- timestamp )
504 M: timestamp last-day-of-year 12 >>month 31 >>day ;
505 M: integer last-day-of-year 12 31 <date> ;
506
507 : first-day-of-decade ( object -- timestamp )
508     first-day-of-year [ dup 10 mod - ] change-year ;
509
510 : last-day-of-decade ( object -- timestamp )
511     last-day-of-year [ dup 10 mod - 9 + ] change-year ;
512
513 : first-day-of-century ( object -- timestamp )
514     first-day-of-year [ dup 100 mod - ] change-year ;
515
516 : last-day-of-century ( object -- timestamp )
517     last-day-of-year [ dup 100 mod - 99 + ] change-year ;
518
519 : first-day-of-millennium ( object -- timestamp )
520     first-day-of-year [ dup 1000 mod - ] change-year ;
521
522 : last-day-of-millennium ( object -- timestamp )
523     last-day-of-year [ dup 1000 mod - 999 + ] change-year ;
524
525 : start-of-year ( object -- timestamp )
526     first-day-of-year start-of-day ;
527
528 : end-of-year ( object -- timestamp )
529     last-day-of-year end-of-day ;
530
531 : start-of-decade ( object -- timestamp )
532     first-day-of-decade start-of-day ;
533
534 : end-of-decade ( object -- timestamp )
535     last-day-of-decade end-of-day ;
536
537 : end-of-century ( object -- timestamp )
538     last-day-of-century end-of-day ;
539
540 : start-of-millennium ( object -- timestamp )
541     first-day-of-millennium start-of-day ;
542
543 : end-of-millennium ( object -- timestamp )
544     last-day-of-millennium end-of-day ;
545
546 : start-of-hour ( timestamp -- timestamp ) 0 >>minute 0 >>second ;
547 : end-of-hour ( timestamp -- timestamp ) 59 >>minute 59+999/1000 >>second ;
548
549 : start-of-minute ( timestamp -- timestamp ) 0 >>second ;
550 : end-of-minute ( timestamp -- timestamp ) 59+999/1000 >>second ;
551
552 : start-of-second ( timestamp -- timestamp ) [ floor ] change-second ;
553 : end-of-second ( timestamp -- timestamp ) [ floor 999/1000 + ] change-second ;
554
555 <PRIVATE
556
557 : day-offset ( timestamp m -- timestamp n )
558     over day-of-week - ; inline
559
560 : day-this-week ( timestamp n -- timestamp )
561     day-offset days (time+) ;
562
563 : closest-day ( timestamp n -- timestamp )
564     [ dup day-of-week 7 swap - ] [ + 7 mod ] bi*
565     { 0 1 2 3 -3 -2 -1 } nth days (time+) ;
566
567 :: nth-day-this-month ( timestamp n day -- timestamp )
568     timestamp clone
569     timestamp start-of-month day day-this-week
570     [ [ month>> ] same? ] keep swap
571     [ 1 weeks (time+) ] unless
572     n [ weeks (time+) ] unless-zero ;
573
574 PRIVATE>
575
576 GENERIC: january ( obj -- timestamp )
577 GENERIC: february ( obj -- timestamp )
578 GENERIC: march ( obj -- timestamp )
579 GENERIC: april ( obj -- timestamp )
580 GENERIC: may ( obj -- timestamp )
581 GENERIC: june ( obj -- timestamp )
582 GENERIC: july ( obj -- timestamp )
583 GENERIC: august ( obj -- timestamp )
584 GENERIC: september ( obj -- timestamp )
585 GENERIC: october ( obj -- timestamp )
586 GENERIC: november ( obj -- timestamp )
587 GENERIC: december ( obj -- timestamp )
588
589 M: integer january 1 1 <date> ;
590 M: integer february 2 1 <date> ;
591 M: integer march 3 1 <date> ;
592 M: integer april 4 1 <date> ;
593 M: integer may 5 1 <date> ;
594 M: integer june 6 1 <date> ;
595 M: integer july 7 1 <date> ;
596 M: integer august 8 1 <date> ;
597 M: integer september 9 1 <date> ;
598 M: integer october 10 1 <date> ;
599 M: integer november 11 1 <date> ;
600 M: integer december 12 1 <date> ;
601
602 M: timestamp january 1 >>month ;
603 M: timestamp february 2 >>month ;
604 M: timestamp march 3 >>month ;
605 M: timestamp april 4 >>month ;
606 M: timestamp may 5 >>month ;
607 M: timestamp june 6 >>month ;
608 M: timestamp july 7 >>month ;
609 M: timestamp august 8 >>month ;
610 M: timestamp september 9 >>month ;
611 M: timestamp october 10 >>month ;
612 M: timestamp november 11 >>month ;
613 M: timestamp december 12 >>month ;
614
615 : closest-sunday ( timestamp -- timestamp ) 0 closest-day ;
616 : closest-monday ( timestamp -- timestamp ) 1 closest-day ;
617 : closest-tuesday ( timestamp -- timestamp ) 2 closest-day ;
618 : closest-wednesday ( timestamp -- timestamp ) 3 closest-day ;
619 : closest-thursday ( timestamp -- timestamp ) 4 closest-day ;
620 : closest-friday ( timestamp -- timestamp ) 5 closest-day ;
621 : closest-saturday ( timestamp -- timestamp ) 6 closest-day ;
622
623 : sunday ( timestamp -- timestamp ) 0 day-this-week ;
624 : monday ( timestamp -- timestamp ) 1 day-this-week ;
625 : tuesday ( timestamp -- timestamp ) 2 day-this-week ;
626 : wednesday ( timestamp -- timestamp ) 3 day-this-week ;
627 : thursday ( timestamp -- timestamp ) 4 day-this-week ;
628 : friday ( timestamp -- timestamp ) 5 day-this-week ;
629 : saturday ( timestamp -- timestamp ) 6 day-this-week ;
630
631 ALIAS: first-day-of-week sunday
632 ALIAS: last-day-of-week saturday
633
634 : day< ( timestamp quot -- timestamp )
635     over clone [ call dup ] dip after=? [ -7 days (time+) ] when ; inline
636 : day<= ( timestamp quot -- timestamp )
637     over clone [ call dup ] dip after? [ -7 days (time+) ] when ; inline
638 : day> ( timestamp quot -- timestamp )
639     over clone [ call dup ] dip before=? [ 7 days (time+) ] when ; inline
640 : day>= ( timestamp quot -- timestamp )
641     over clone [ call dup ] dip before? [ 7 days (time+) ] when ; inline
642
643 : sunday< ( timestamp -- timestamp ) [ sunday ] day< ;
644 : monday< ( timestamp -- timestamp ) [ monday ] day< ;
645 : tuesday< ( timestamp -- timestamp ) [ tuesday ] day< ;
646 : wednesday< ( timestamp -- timestamp ) [ wednesday ] day< ;
647 : thursday< ( timestamp -- timestamp ) [ thursday ] day< ;
648 : friday< ( timestamp -- timestamp ) [ friday ] day< ;
649 : saturday< ( timestamp -- timestamp ) [ saturday ] day< ;
650
651 : sunday<= ( timestamp -- timestamp ) [ sunday ] day<= ;
652 : monday<= ( timestamp -- timestamp ) [ monday ] day<= ;
653 : tuesday<= ( timestamp -- timestamp ) [ tuesday ] day<= ;
654 : wednesday<= ( timestamp -- timestamp ) [ wednesday ] day<= ;
655 : thursday<= ( timestamp -- timestamp ) [ thursday ] day<= ;
656 : friday<= ( timestamp -- timestamp ) [ friday ] day<= ;
657 : saturday<= ( timestamp -- timestamp ) [ saturday ] day<= ;
658
659 : sunday> ( timestamp -- timestamp ) [ sunday ] day> ;
660 : monday> ( timestamp -- timestamp ) [ monday ] day> ;
661 : tuesday> ( timestamp -- timestamp ) [ tuesday ] day> ;
662 : wednesday> ( timestamp -- timestamp ) [ wednesday ] day> ;
663 : thursday> ( timestamp -- timestamp ) [ thursday ] day> ;
664 : friday> ( timestamp -- timestamp ) [ friday ] day> ;
665 : saturday> ( timestamp -- timestamp ) [ saturday ] day> ;
666
667 : sunday>= ( timestamp -- timestamp ) [ sunday ] day>= ;
668 : monday>= ( timestamp -- timestamp ) [ monday ] day>= ;
669 : tuesday>= ( timestamp -- timestamp ) [ tuesday ] day>= ;
670 : wednesday>= ( timestamp -- timestamp ) [ wednesday ] day>= ;
671 : thursday>= ( timestamp -- timestamp ) [ thursday ] day>= ;
672 : friday>= ( timestamp -- timestamp ) [ friday ] day>= ;
673 : saturday>= ( timestamp -- timestamp ) [ saturday ] day>= ;
674
675 : next-sunday ( timestamp -- timestamp ) closest-sunday sunday> ;
676 : next-monday ( timestamp -- timestamp ) closest-monday monday> ;
677 : next-tuesday ( timestamp -- timestamp ) closest-tuesday tuesday> ;
678 : next-wednesday ( timestamp -- timestamp ) closest-wednesday wednesday> ;
679 : next-thursday ( timestamp -- timestamp ) closest-thursday thursday> ;
680 : next-friday ( timestamp -- timestamp ) closest-friday friday> ;
681 : next-saturday ( timestamp -- timestamp ) closest-saturday saturday> ;
682
683 : last-sunday ( timestamp -- timestamp ) closest-sunday sunday< ;
684 : last-monday ( timestamp -- timestamp ) closest-monday monday< ;
685 : last-tuesday ( timestamp -- timestamp ) closest-tuesday tuesday< ;
686 : last-wednesday ( timestamp -- timestamp ) closest-wednesday wednesday< ;
687 : last-thursday ( timestamp -- timestamp ) closest-thursday thursday< ;
688 : last-friday ( timestamp -- timestamp ) closest-friday friday< ;
689 : last-saturday ( timestamp -- timestamp ) closest-saturday saturday< ;
690
691 : sunday? ( timestamp -- ? ) day-of-week 0 = ;
692 : monday? ( timestamp -- ? ) day-of-week 1 = ;
693 : tuesday? ( timestamp -- ? ) day-of-week 2 = ;
694 : wednesday? ( timestamp -- ? ) day-of-week 3 = ;
695 : thursday? ( timestamp -- ? ) day-of-week 4 = ;
696 : friday? ( timestamp -- ? ) day-of-week 5 = ;
697 : saturday? ( timestamp -- ? ) day-of-week 6 = ;
698
699 : january? ( timestamp -- ? ) month>> 1 = ;
700 : february? ( timestamp -- ? ) month>> 2 = ;
701 : march? ( timestamp -- ? ) month>> 3  = ;
702 : april? ( timestamp -- ? ) month>> 4 = ;
703 : may? ( timestamp -- ? ) month>> 5 = ;
704 : june? ( timestamp -- ? ) month>> 6 = ;
705 : july? ( timestamp -- ? ) month>> 7 = ;
706 : august? ( timestamp -- ? ) month>> 8 = ;
707 : september? ( timestamp -- ? ) month>> 9 = ;
708 : october? ( timestamp -- ? ) month>> 10 = ;
709 : november? ( timestamp -- ? ) month>> 11 = ;
710 : december? ( timestamp -- ? ) month>> 12 = ;
711
712 : weekend? ( timestamp -- ? ) day-of-week { 0 6 } member? ;
713 : weekday? ( timestamp -- ? ) day-of-week weekend? not ;
714
715 : same-or-next-business-day ( timestamp -- timestamp )
716     dup day-of-week {
717         { 0 [ monday ] }
718         { 6 [ 2 days (time+) ] }
719         [ drop ]
720     } case ;
721
722 : same-or-previous-business-day ( timestamp -- timestamp )
723     dup day-of-week {
724         { 0 [ -2 days (time+) ] }
725         { 6 [ friday ] }
726         [ drop ]
727     } case ;
728
729 : weekdays-between ( date1 date2 -- n )
730     [
731         [ swap time- duration>days 5 * ]
732         [ [ day-of-week ] bi@ - 2 * ] 2bi - 7 /i 1 +
733     ] 2keep
734     day-of-week 6 = [ [ 1 - ] dip ] when
735     day-of-week 0 = [ 1 - ] when ;
736
737 CONSTANT: weekday-offsets { 0 0 1 2 3 4 5 }
738
739 : weekdays-between2 ( date1 date2 -- n )
740     [ swap time- duration>days 1 + ]
741     [ [ day-of-week ] bi@ 6 swap - ] 2bi
742
743     [ + + 1.4 /i ]
744     [ [ weekday-offsets nth ] bi@ + ] 2bi - ;
745
746 : sunday-of-month ( timestamp n -- timestamp ) 0 nth-day-this-month ;
747 : monday-of-month ( timestamp n -- timestamp ) 1 nth-day-this-month ;
748 : tuesday-of-month ( timestamp n -- timestamp ) 2 nth-day-this-month ;
749 : wednesday-of-month ( timestamp n -- timestamp ) 3 nth-day-this-month ;
750 : thursday-of-month ( timestamp n -- timestamp ) 4 nth-day-this-month ;
751 : friday-of-month ( timestamp n -- timestamp ) 5 nth-day-this-month ;
752 : saturday-of-month ( timestamp n -- timestamp ) 6 nth-day-this-month ;
753
754 : last-sunday-of-month ( timestamp -- timestamp ) last-day-of-month sunday<= ;
755 : last-monday-of-month ( timestamp -- timestamp ) last-day-of-month monday<= ;
756 : last-tuesday-of-month ( timestamp -- timestamp ) last-day-of-month tuesday<= ;
757 : last-wednesday-of-month ( timestamp -- timestamp ) last-day-of-month wednesday<= ;
758 : last-thursday-of-month ( timestamp -- timestamp ) last-day-of-month thursday<= ;
759 : last-friday-of-month ( timestamp -- timestamp ) last-day-of-month friday<= ;
760 : last-saturday-of-month ( timestamp -- timestamp ) last-day-of-month saturday<= ;
761
762 : start-of-week ( timestamp -- timestamp )
763     sunday midnight ;
764
765 : end-of-week ( timestamp -- timestamp )
766     saturday end-of-day ;
767
768 : o'clock ( timestamp n -- timestamp )
769     [ midnight ] dip >>hour ;
770
771 : am ( timestamp n -- timestamp )
772     1 12 [a,b] check-interval 12 mod o'clock ;
773
774 : pm ( timestamp n -- timestamp )
775     1 12 [a,b] check-interval 12 mod 12 + o'clock ;
776
777 : time-since-midnight ( timestamp -- duration )
778     instant swap >time< set-time ;
779
780 : since-1970 ( duration -- timestamp )
781     unix-1970 swap (time+) ; inline
782
783 : timestamp>unix-time ( timestamp -- seconds )
784     unix-1970 (time-) ; inline
785
786 : unix-time>timestamp ( seconds -- timestamp )
787     unix-1970 swap +second ; inline
788
789 ! January and February need a fixup with this algorithm.
790 ! Find a better algorithm.
791 : ymd>ordinal ( year month day -- ordinal )
792     [ leap-year? dup -2 -3 ? ]
793     [ dup 3 < [ 12 + ] when [ 1 - 30 * ] [ 1 + .6 * floor ] bi + ]
794     [ ] tri* + + >integer
795     swap 367 366 ? mod ;
796
797 : timestamp>year-dates-gmt ( timestamp -- seq )
798     [ year>> 1 1 julian-day-number ] [ days-in-year ] bi
799     [ drop ] [ + ] 2bi
800     [a..b) [ julian-day-number>date <date-gmt> ] map ;
801
802 : year-ordinal>timestamp ( year ordinal -- timestamp )
803     [ 1 1 julian-day-number ] dip
804     + 1 - julian-day-number>date <date> ;
805
806 GENERIC: weeks-in-week-year ( obj -- n )
807
808 M: integer weeks-in-week-year
809     { [ 1 1 <date> thursday? ] [ 12 31 <date> thursday? ] } 1|| 53 52 ? ;
810
811 M: timestamp weeks-in-week-year
812     { [ january 1 >>day thursday? ] [ december 31 >>day thursday? ] } 1|| 53 52 ? ;
813
814 {
815     { [ os unix? ] [ "calendar.unix" ] }
816     { [ os windows? ] [ "calendar.windows" ] }
817 } cond require
818
819 { "threads" "calendar" } "calendar.threads" require-when