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
|
#lang typed/racket/base
(require racket/match
racket/math
(prefix-in srfi-date: "typed-srfi19.rkt")
"type-doc.rkt"
"math.rkt"
"format.rkt")
(provide (all-defined-out))
(require/typed
db
[#:struct sql-date ([year : Integer]
[month : Byte]
[day : Byte])]
[#:struct sql-time ([hour : Natural]
[minute : Natural]
[second : Natural]
[nanosecond : Natural]
[tz : (U Integer #f)])]
[#:struct sql-timestamp ([year : Integer]
[month : Natural]
[day : Natural]
[hour : Natural]
[minute : Natural]
[second : Natural]
[nanosecond : Natural]
[tz : (U Integer #f)])])
(require/typed
racket/base
[#:struct date ([second : Byte]
[minute : Byte]
[hour : Byte]
[day : Positive-Byte]
[month : Positive-Byte]
[year : Integer]
[week-day : Byte]
[year-day : Index]
[dst? : Boolean]
[time-zone-offset : Integer])
#:extra-constructor-name make-date]
[#:struct (date* date) ([nanosecond : Nonnegative-Fixnum]
[time-zone-name : String])
#:extra-constructor-name make-date*]
[seconds->date (->* [Real] [Any] date*)]
)
(require/typed
racket/date
[current-date (-> date*)]
[date->string (->* [date] [Any] String)]
[date-display-format (-> (U 'american
'chinese
'german
'indian
'irish
'iso-8601
'rfc2822
'julian))]
[date->seconds (->* [date] [Any] Integer)]
[date*->seconds (->* [date] [Any] Real)])
(define seconds-per-minute 60)
(define seconds-per-hour (* 60 seconds-per-minute))
(define seconds-per-day (* 24 seconds-per-hour))
(define seconds-per-week (* 7 seconds-per-day))
(define avg-seconds-per-year (* #e365.2425 seconds-per-day))
(define avg-seconds-per-month (* 1/12 avg-seconds-per-year))
;; ===================================================================================================
;; UTC dates for plotting
;; A date is always represented by the number of seconds since the platform-specific, UTC epoch
(: date*->utc-seconds (-> date Real))
(define (date*->utc-seconds dt)
(- (date*->seconds dt #f) (date-time-zone-offset dt)))
(: date->utc-seconds (-> date Real))
(define (date->utc-seconds dt)
(- (date->seconds dt #f) (date-time-zone-offset dt)))
(: utc-seconds-second (-> Real Real))
(define (utc-seconds-second secs)
(define w (floor secs))
(define f (- secs w))
(+ f (date-second (seconds->date w #f))))
(: utc-seconds-round-year (-> Real Integer))
(define (utc-seconds-round-year secs)
(define dt (seconds->date secs #f))
(define y1 (date-year dt))
;; Find start of this year, start of next year, and difference between them in UTC seconds
(define s1 (date->seconds (date 0 0 0 1 1 y1 0 0 #f 0) #f))
(define s2 (date->seconds (date 0 0 0 1 1 (+ y1 1) 0 0 #f 0) #f))
(define diff (- s2 s1))
;; Round by 1) subtracting this year; 2) rounding to this year or next; 3) adding this year
(+ (* (exact-round (/ (- secs s1) diff)) diff) s1))
(: utc-seconds-round-month (-> Real Integer))
(define (utc-seconds-round-month secs)
(define dt (seconds->date secs #f))
(define m1 (date-month dt))
(define y1 (date-year dt))
;; Find start of this month, start of next month, and difference between them in UTC seconds
(define s1 (date->seconds (date 0 0 0 1 m1 y1 0 0 #f 0) #f))
(define-values (m2 y2)
(let ([m2 (+ m1 1)])
(cond [(m2 . > . 12) (values 1 (+ y1 1))]
[else (values m2 y1)])))
(define s2 (date->seconds (date 0 0 0 1 m2 y2 0 0 #f 0) #f))
(define diff (- s2 s1))
;; Round by 1) subtracting this month; 2) rounding to this month or next; 3) adding this month
(+ (* (exact-round (/ (- secs s1) diff)) diff) s1))
;; ===================================================================================================
;; Time
;; A date-independent representation of time
(struct plot-time ([second : Nonnegative-Exact-Rational]
[minute : Byte]
[hour : Byte]
[day : Integer])
#:transparent)
(:: seconds->plot-time (-> Real plot-time))
(define (seconds->plot-time s)
(let* ([s (inexact->exact s)]
[day (exact-floor (/ s seconds-per-day))]
[s (- s (* day seconds-per-day))]
[hour (exact-floor (/ s seconds-per-hour))]
[s (- s (* hour seconds-per-hour))]
[minute (exact-floor (/ s seconds-per-minute))]
[s (- s (* minute seconds-per-minute))])
(plot-time (max 0 s)
(assert (max 0 (min 59 minute)) byte?)
(assert (max 0 (min 23 hour)) byte?)
day)))
(:: plot-time->seconds (-> plot-time Exact-Rational))
(define (plot-time->seconds t)
(match-define (plot-time second minute hour day) t)
(+ second
(* minute seconds-per-minute)
(* hour seconds-per-hour)
(* day seconds-per-day)))
(: sql-date->date* (-> sql-date date*))
(define (sql-date->date* x)
(match-define (sql-date y m d) x)
(if (or (zero? m) (zero? d))
(raise-argument-error 'sql-date->date* "complete sql-date" x)
(date* 0 0 0 d m y 0 0 #t 0 0 "UTC")))
(: sql-time->plot-time (-> sql-time plot-time))
(define (sql-time->plot-time x)
(match-define (sql-time h m s ns tz) x)
(cond [(and (<= 0 m 59)
(<= 0 h 23))
(seconds->plot-time
(- (plot-time->seconds
(plot-time (+ s (/ ns 1000000000)) (assert m byte?) (assert h byte?) 0))
(if tz tz 0)))]
[else
(raise-argument-error 'sql-time->plot-time "valid sql-time" x)]))
(: sql-timestamp->date* (-> sql-timestamp date*))
(define (sql-timestamp->date* x)
(match-define (sql-timestamp y m d h mn s ns tz) x)
(cond [(or (zero? m) (zero? d))
(raise-argument-error 'sql-timestamp->date* "complete sql-timestamp" x)]
[(and (<= 0 s 60) ; leap seconds
(<= 0 mn 59)
(<= 0 h 23)
(<= 1 d 31)
(<= 1 m 12))
(date* (assert s byte?) (assert mn byte?) (assert h byte?)
(assert d byte?) (assert m byte?) (assert y byte?)
0 0 #t (if tz tz 0) (assert ns fixnum?) "UTC")]
[else
(raise-argument-error 'sql-timestamp->date* "valid sql-timestamp" x)]))
(:: datetime->real (-> (U plot-time date date* sql-date sql-time sql-timestamp) Real))
(define (datetime->real x)
(cond [(plot-time? x) (plot-time->seconds x)]
[(date*? x) (date*->utc-seconds x)]
[(date? x) (date->utc-seconds x)]
[(sql-date? x) (date*->utc-seconds (sql-date->date* x))]
[(sql-time? x) (plot-time->seconds (sql-time->plot-time x))]
[(sql-timestamp? x) (date*->utc-seconds (sql-timestamp->date* x))]))
;; ===================================================================================================
;; Formatting following SRFI 19, with alterations
#|
Supported format specifiers:
~a locale's abbreviated weekday name (Sun...Sat)
~A locale's full weekday name (Sunday...Saturday)
~b locale's abbreviate month name (Jan...Dec)
~B locale's full month day (January...December)
~d day of month, zero padded (01...31)
~D date (mm/dd/yy)
~e day of month, blank padded ( 1...31)
~h same as ~b
~H hour, zero padded, 24-hour clock (00...23)
~I hour, zero padded, 12-hour clock (01...12)
~j day of year, zero padded
~k hour, blank padded, 24-hour clock (00...23)
~l hour, blank padded, 12-hour clock (01...12)
~m month, zero padded (01...12)
~M minute, zero padded (00...59)
~N nanosecond, zero padded
~p locale's AM or PM
~r time, 12 hour clock, same as "~I:~M:~S ~p"
~S second, zero padded (00...60)
~f seconds+fractional seconds, using locale's decimal separator (e.g. 5.2).
~s number of full seconds since "the epoch" (in UTC)
~T time, 24 hour clock, same as "~H:~M:~S"
~U week number of year with Sunday as first day of week (00...53)
~V week number of year with Monday as first day of week (01...52)
~w day of week (0...6)
~W week number of year with Monday as first day of week (01...52)
~x week number of year with Monday as first day of week (00...53)
~X locale's date representation, for example: "07/31/00"
~y last two digits of year (00...99)
~Y year
~1 ISO-8601 year-month-day format
~3 ISO-8601 hour-minute-second format
~5 ISO-8601 year-month-day-hour-minute-second format
|#
(: plot-date-formatter (-> Real Real (-> Symbol Real (U String #f))))
(define (plot-date-formatter x-min x-max)
(define digits (digits-for-range x-min x-max))
(λ (fmt secs)
(case fmt
[(~f) (define s (utc-seconds-second secs))
(define str (real->string/trunc s (max 0 digits)))
(if (s . < . 10) (format "0~a" str) str)]
[(~s) (real->plot-label secs digits)]
[(~a ~A ~b ~B ~d ~D ~e ~h ~H ~I ~j ~k ~l ~m ~M ~N
~p ~r ~S ~f ~s ~T ~U ~V ~w ~W ~x ~X ~y ~Y ~1 ~3 ~5)
(match-define (date* s mn h d m y _wd _yd _dst? tz ns _tz-name) (seconds->date secs #f))
(srfi-date:date->string (srfi-date:make-date ns s mn h d m y tz) (symbol->string fmt))]
[else #f])))
#|
Supported format specifiers:
~d day
~H hour, zero padded, 24-hour clock (00...23)
~I hour, zero padded, 12-hour clock (01...12)
~k hour, blank padded, 24-hour clock ( 0...23)
~l hour, blank padded, 12-hour clock ( 1...12)
~p locale's AM or PM
~M minute, zero padded (00...59)
~S second, zero padded (00...60)
~f seconds+fractional seconds, using locale's decimal separator (e.g. 5.2).
~s second, formatted (nanoseconds, etc.)
~r time, 12 hour clock, same as "~I:~M:~S ~p"
~T time, 24 hour clock, same as "~H:~M:~S"
~3 ISO-8601 hour-minute-second format
|#
(: plot-time-formatter (-> Real Real (-> Symbol Real (U String #f))))
(define (plot-time-formatter x-min x-max)
(define digits (digits-for-range x-min x-max))
(λ (fmt secs)
(case fmt
[(~H ~I ~k ~l ~p ~M ~S ~f ~s ~r ~T ~3)
((plot-date-formatter x-min x-max) fmt (real-modulo secs seconds-per-day))]
[(~d) (define digits (digits-for-range (/ x-min seconds-per-day) (/ x-max seconds-per-day)))
(real->plot-label (plot-time-day (seconds->plot-time secs)) digits)]
[else #f])))
|