Allow 'browse-url-emacs' to fetch URL in the selected window
[emacs.git] / lisp / calendar / cal-dst.el
blob00a8e7498af3036086c46bf81dd206b0ca29632a
1 ;;; cal-dst.el --- calendar functions for daylight saving rules -*- lexical-binding:t -*-
3 ;; Copyright (C) 1993-1996, 2001-2018 Free Software Foundation, Inc.
5 ;; Author: Paul Eggert <eggert@twinsun.com>
6 ;; Edward M. Reingold <reingold@cs.uiuc.edu>
7 ;; Maintainer: Glenn Morris <rgm@gnu.org>
8 ;; Keywords: calendar
9 ;; Human-Keywords: daylight saving time, calendar, diary, holidays
10 ;; Package: calendar
12 ;; This file is part of GNU Emacs.
14 ;; GNU Emacs is free software: you can redistribute it and/or modify
15 ;; it under the terms of the GNU General Public License as published by
16 ;; the Free Software Foundation, either version 3 of the License, or
17 ;; (at your option) any later version.
19 ;; GNU Emacs is distributed in the hope that it will be useful,
20 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
21 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 ;; GNU General Public License for more details.
24 ;; You should have received a copy of the GNU General Public License
25 ;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
27 ;;; Commentary:
29 ;; See calendar.el.
31 ;;; Code:
33 (require 'calendar)
36 (defgroup calendar-dst nil
37 "Options related to Daylight Saving Time."
38 :prefix "calendar-"
39 :group 'calendar)
42 (defcustom calendar-dst-check-each-year-flag t
43 "Non-nil means to check each year for DST transitions as needed.
44 Otherwise assume the next two transitions found after the
45 current date apply to all years. This is faster, but not always
46 correct, since the dates of daylight saving transitions sometimes
47 change."
48 :type 'boolean
49 :version "22.1"
50 :group 'calendar-dst)
52 ;;;###autoload
53 (put 'calendar-daylight-savings-starts 'risky-local-variable t)
54 (defcustom calendar-daylight-savings-starts '(calendar-dst-starts year)
55 "Sexp giving the date on which daylight saving time starts.
56 This is an expression in the variable `year' whose value gives the Gregorian
57 date in the form (month day year) on which daylight saving time starts. It is
58 used to determine the starting date of daylight saving time for the holiday
59 list and for correcting times of day in the solar and lunar calculations.
61 For example, if daylight saving time is mandated to start on October 1,
62 you would set `calendar-daylight-savings-starts' to
64 '(10 1 year)
66 If it starts on the first Sunday in April, you would set it to
68 '(calendar-nth-named-day 1 0 4 year)
70 If the locale never uses daylight saving time, set this to nil."
71 :type 'sexp
72 :group 'calendar-dst)
74 ;;;###autoload
75 (put 'calendar-daylight-savings-ends 'risky-local-variable t)
76 (defcustom calendar-daylight-savings-ends '(calendar-dst-ends year)
77 "Sexp giving the date on which daylight saving time ends.
78 This is an expression in the variable `year' whose value gives the Gregorian
79 date in the form (month day year) on which daylight saving time ends. It is
80 used to determine the starting date of daylight saving time for the holiday
81 list and for correcting times of day in the solar and lunar calculations.
83 For example, if daylight saving time ends on the last Sunday in October:
85 (calendar-nth-named-day -1 0 10 year)
87 If the locale never uses daylight saving time, set this to nil."
88 :type 'sexp
89 :group 'calendar-dst)
91 ;;; More defcustoms below.
94 (defvar calendar-current-time-zone-cache nil
95 "Cache for result of `calendar-current-time-zone'.")
96 ;; It gets eval'd, eg by calendar-dst-starts.
97 ;;;###autoload
98 (put 'calendar-current-time-zone-cache 'risky-local-variable t)
100 (defvar calendar-system-time-basis
101 (calendar-absolute-from-gregorian '(1 1 1970))
102 "Absolute date of starting date of system clock.")
104 (defun calendar-absolute-from-time (x utc-diff)
105 "Absolute local date of time X; local time is UTC-DIFF seconds from UTC.
107 X is (HIGH . LOW) or (HIGH LOW . IGNORED) where HIGH and LOW are the
108 high and low 16 bits, respectively, of the number of seconds since
109 1970-01-01 00:00:00 UTC, ignoring leap seconds.
111 Returns the pair (ABS-DATE . SECONDS) where SECONDS after local midnight on
112 absolute date ABS-DATE is the equivalent moment to X."
113 (let* ((h (car x))
114 (xtail (cdr x))
115 (l (+ utc-diff (if (numberp xtail) xtail (car xtail))))
116 (u (+ (* 512 (mod h 675)) (floor l 128))))
117 ;; Overflow is a terrible thing!
118 (cons (+ calendar-system-time-basis
119 ;; floor((2^16 h +l) / (60*60*24))
120 (* 512 (floor h 675)) (floor u 675))
121 ;; (2^16 h +l) mod (60*60*24)
122 (+ (* (mod u 675) 128) (mod l 128)))))
124 (defun calendar-time-from-absolute (abs-date s)
125 "Time of absolute date ABS-DATE, S seconds after midnight.
127 Returns the list (HIGH LOW) where HIGH and LOW are the high and low
128 16 bits, respectively, of the number of seconds 1970-01-01 00:00:00 UTC,
129 ignoring leap seconds, that is the equivalent moment to S seconds after
130 midnight UTC on absolute date ABS-DATE."
131 (let* ((a (- abs-date calendar-system-time-basis))
132 (u (+ (* 163 (mod a 512)) (floor s 128))))
133 ;; Overflow is a terrible thing!
134 (list
135 ;; floor((60*60*24*a + s) / 2^16)
136 (+ a (* 163 (floor a 512)) (floor u 512))
137 ;; (60*60*24*a + s) mod 2^16
138 (+ (* 128 (mod u 512)) (mod s 128)))))
140 (defun calendar-next-time-zone-transition (time)
141 "Return the time of the next time zone transition after TIME.
142 Both TIME and the result are acceptable arguments to `current-time-zone'.
143 Return nil if no such transition can be found."
144 (let* ((base 65536) ; 2^16 = base of current-time output
145 (quarter-multiple 120) ; approx = (seconds per quarter year) / base
146 (time-zone (current-time-zone time))
147 (time-utc-diff (car time-zone))
149 hi-zone
150 (hi-utc-diff time-utc-diff)
151 (quarters '(2 1 3)))
152 ;; Heuristic: probe the time zone offset in the next three calendar
153 ;; quarters, looking for a time zone offset different from TIME.
154 (while (and quarters (eq time-utc-diff hi-utc-diff))
155 (setq hi (cons (+ (car time) (* (car quarters) quarter-multiple)) 0)
156 hi-zone (current-time-zone hi)
157 hi-utc-diff (car hi-zone)
158 quarters (cdr quarters)))
159 (and
160 time-utc-diff
161 hi-utc-diff
162 (not (eq time-utc-diff hi-utc-diff))
163 ;; Now HI is after the next time zone transition.
164 ;; Set LO to TIME, and then binary search to increase LO and decrease HI
165 ;; until LO is just before and HI is just after the time zone transition.
166 (let* ((tail (cdr time))
167 (lo (cons (car time) (if (numberp tail) tail (car tail))))
168 probe)
169 (while
170 ;; Set PROBE to halfway between LO and HI, rounding down.
171 ;; If PROBE equals LO, we are done.
172 (let* ((lsum (+ (cdr lo) (cdr hi)))
173 (hsum (+ (car lo) (car hi) (/ lsum base)))
174 (hsumodd (logand 1 hsum)))
175 (setq probe (cons (/ (- hsum hsumodd) 2)
176 (/ (+ (* hsumodd base) (% lsum base)) 2)))
177 (not (equal lo probe)))
178 ;; Set either LO or HI to PROBE, depending on probe results.
179 (if (eq (car (current-time-zone probe)) hi-utc-diff)
180 (setq hi probe)
181 (setq lo probe)))
182 (setcdr hi (list (cdr hi)))
183 hi))))
185 (autoload 'calendar-persian-to-absolute "cal-persia")
187 (defun calendar-time-zone-daylight-rules (abs-date utc-diff)
188 "Return daylight transition rule for ABS-DATE, UTC-DIFF sec offset from UTC.
189 ABS-DATE must specify a day that contains a daylight saving transition.
190 The result has the proper form for `calendar-daylight-savings-starts'."
191 (let* ((date (calendar-gregorian-from-absolute abs-date))
192 (weekday (% abs-date 7))
193 (m (calendar-extract-month date))
194 (d (calendar-extract-day date))
195 (y (calendar-extract-year date))
196 (last (calendar-last-day-of-month m y))
197 j rlist
198 (candidate-rules ; these return Gregorian dates
199 (append
200 ;; Day D of month M.
201 `((list ,m ,d year))
202 ;; The first WEEKDAY of month M.
203 (if (< d 8)
204 `((calendar-nth-named-day 1 ,weekday ,m year)))
205 ;; The last WEEKDAY of month M.
206 (if (> d (- last 7))
207 `((calendar-nth-named-day -1 ,weekday ,m year)))
208 (progn
209 ;; The first WEEKDAY after day J of month M, for D-6 < J <= D.
210 (setq j (1- (max 2 (- d 6))))
211 (while (<= (setq j (1+ j)) (min d (- last 8)))
212 (push `(calendar-nth-named-day 1 ,weekday ,m year ,j) rlist))
213 rlist)
214 ;; 01-01 and 07-01 for this year's Persian calendar.
215 ;; FIXME what does the Persian calendar have to do with this?
216 (and (= m 3) (memq d '(20 21))
217 '((calendar-gregorian-from-absolute
218 (calendar-persian-to-absolute `(1 1 ,(- year 621))))))
219 (and (= m 9) (memq d '(22 23))
220 '((calendar-gregorian-from-absolute
221 (calendar-persian-to-absolute `(7 1 ,(- year 621))))))))
222 (prevday-sec (- -1 utc-diff)) ; last sec of previous local day
223 new-rules)
224 (calendar-dlet* ((year (1+ y)))
225 ;; Scan through the next few years until only one rule remains.
226 (while (cdr candidate-rules)
227 (dolist (rule candidate-rules)
228 ;; The rule we return should give a Gregorian date, but here
229 ;; we require an absolute date. The following is for efficiency.
230 (setq date (cond ((eq (car rule) #'calendar-nth-named-day)
231 (eval (cons #'calendar-nth-named-absday
232 (cdr rule))))
233 ((eq (car rule) #'calendar-gregorian-from-absolute)
234 (eval (cadr rule)))
235 (t (calendar-absolute-from-gregorian (eval rule)))))
236 (or (equal (current-time-zone
237 (calendar-time-from-absolute date prevday-sec))
238 (current-time-zone
239 (calendar-time-from-absolute (1+ date) prevday-sec)))
240 (setq new-rules (cons rule new-rules))))
241 ;; If no rules remain, just use the first candidate rule;
242 ;; it's wrong in general, but it's right for at least one year.
243 (setq candidate-rules (if new-rules (nreverse new-rules)
244 (list (car candidate-rules)))
245 new-rules nil
246 year (1+ year))))
247 (car candidate-rules)))
249 ;; TODO it might be better to extract this information directly from
250 ;; the system timezone database. But cross-platform...?
251 ;; See thread
252 ;; https://lists.gnu.org/r/emacs-pretest-bug/2006-11/msg00060.html
253 (defun calendar-dst-find-data (&optional time)
254 "Find data on the first daylight saving time transitions after TIME.
255 TIME defaults to `current-time'. Return value is as described
256 for `calendar-current-time-zone'."
257 (let* ((t0 (or time (current-time)))
258 (t0-zone (current-time-zone t0))
259 (t0-utc-diff (car t0-zone))
260 (t0-name (cadr t0-zone)))
261 (if (not t0-utc-diff)
262 ;; Little or no time zone information is available.
263 (list nil nil t0-name t0-name nil nil nil nil)
264 (let* ((t1 (calendar-next-time-zone-transition t0))
265 (t2 (and t1 (calendar-next-time-zone-transition t1))))
266 (if (not t2)
267 ;; This locale does not have daylight saving time.
268 (list (/ t0-utc-diff 60) 0 t0-name t0-name nil nil 0 0)
269 ;; Use heuristics to find daylight saving parameters.
270 (let* ((t1-zone (current-time-zone t1))
271 (t1-utc-diff (car t1-zone))
272 (t1-name (cadr t1-zone))
273 (t1-date-sec (calendar-absolute-from-time t1 t0-utc-diff))
274 (t2-date-sec (calendar-absolute-from-time t2 t1-utc-diff))
275 ;; TODO When calendar-dst-check-each-year-flag is non-nil,
276 ;; the rules can be simpler than they currently are.
277 (t1-rules (calendar-time-zone-daylight-rules
278 (car t1-date-sec) t0-utc-diff))
279 (t2-rules (calendar-time-zone-daylight-rules
280 (car t2-date-sec) t1-utc-diff))
281 (t1-time (/ (cdr t1-date-sec) 60))
282 (t2-time (/ (cdr t2-date-sec) 60)))
283 (if (nth 7 (decode-time t1))
284 (list (/ t0-utc-diff 60) (/ (- t1-utc-diff t0-utc-diff) 60)
285 t0-name t1-name t1-rules t2-rules t1-time t2-time)
286 (list (/ t1-utc-diff 60) (/ (- t0-utc-diff t1-utc-diff) 60)
287 t1-name t0-name t2-rules t1-rules t2-time t1-time))))))))
289 (defvar calendar-dst-transition-cache nil
290 "Internal cal-dst variable storing date of daylight saving time transitions.
291 Value is a list with elements of the form (YEAR START END), where
292 START and END are expressions that when evaluated return the
293 start and end dates (respectively) for DST in YEAR. Used by the
294 function `calendar-dst-find-startend'.")
296 (defun calendar-dst-find-startend (year)
297 "Find the dates in YEAR on which daylight saving time starts and ends.
298 Returns a list (YEAR START END), where START and END are
299 expressions that when evaluated return the start and end dates,
300 respectively. This function first attempts to use pre-calculated
301 data from `calendar-dst-transition-cache', otherwise it calls
302 `calendar-dst-find-data' (and adds the results to the cache).
303 If dates in YEAR cannot be handled by `encode-time' (e.g. if they
304 are too large to be represented as a lisp integer), then rather
305 than an error this function returns the result appropriate for
306 the current year."
307 (let ((e (assoc year calendar-dst-transition-cache))
309 (or e
310 (progn
311 (setq e (calendar-dst-find-data
312 (condition-case nil
313 (encode-time 1 0 0 1 1 year)
314 (error
315 (encode-time 1 0 0 1 1 (nth 5 (decode-time))))))
316 f (nth 4 e)
317 e (list year f (nth 5 e))
318 calendar-dst-transition-cache
319 (append calendar-dst-transition-cache (list e)))
320 e))))
322 (defun calendar-current-time-zone ()
323 "Return UTC difference, dst offset, names and rules for current time zone.
325 Returns (UTC-DIFF DST-OFFSET STD-ZONE DST-ZONE DST-STARTS DST-ENDS
326 DST-STARTS-TIME DST-ENDS-TIME), based on a heuristic probing of what the
327 system knows:
329 UTC-DIFF is an integer specifying the number of minutes difference between
330 standard time in the current time zone and Coordinated Universal Time
331 (Greenwich Mean Time). A negative value means west of Greenwich.
332 DST-OFFSET is an integer giving the daylight saving time offset in minutes.
333 STD-ZONE is a string giving the name of the time zone when no seasonal time
334 adjustment is in effect.
335 DST-ZONE is a string giving the name of the time zone when there is a seasonal
336 time adjustment in effect.
337 DST-STARTS and DST-ENDS are sexps in the variable `year' giving the daylight
338 saving time start and end rules, in the form expected by
339 `calendar-daylight-savings-starts'.
340 DST-STARTS-TIME and DST-ENDS-TIME are integers giving the number of minutes
341 after midnight that daylight saving time starts and ends.
343 If the local area does not use a seasonal time adjustment, STD-ZONE and
344 DST-ZONE are equal, and all the DST-* integer variables are 0.
346 Some operating systems cannot provide all this information to Emacs; in this
347 case, `calendar-current-time-zone' returns a list containing nil for the data
348 it can't find."
349 (or calendar-current-time-zone-cache
350 (setq calendar-current-time-zone-cache (calendar-dst-find-data))))
353 ;; Following options should be set based on conditions when the code
354 ;; is invoked, so are not suitable for dumping into loaddefs.el. They
355 ;; default to US Eastern time if time zone info is not available.
357 (calendar-current-time-zone)
359 (defcustom calendar-time-zone (or (car calendar-current-time-zone-cache) -300)
360 "Number of minutes difference between local standard time and UTC.
361 For example, -300 for New York City, -480 for Los Angeles."
362 :type 'integer
363 :group 'calendar-dst)
365 (defcustom calendar-daylight-time-offset
366 (or (cadr calendar-current-time-zone-cache) 60)
367 "Number of minutes difference between daylight saving and standard time.
368 If the locale never uses daylight saving time, set this to 0."
369 :type 'integer
370 :group 'calendar-dst)
372 (defcustom calendar-standard-time-zone-name
373 (or (nth 2 calendar-current-time-zone-cache) "EST")
374 "Abbreviated name of standard time zone at `calendar-location-name'.
375 For example, \"EST\" in New York City, \"PST\" for Los Angeles."
376 :type 'string
377 :group 'calendar-dst)
379 (defcustom calendar-daylight-time-zone-name
380 (or (nth 3 calendar-current-time-zone-cache) "EDT")
381 "Abbreviated name of daylight saving time zone at `calendar-location-name'.
382 For example, \"EDT\" in New York City, \"PDT\" for Los Angeles."
383 :type 'string
384 :group 'calendar-dst)
386 (defcustom calendar-daylight-savings-starts-time
387 (or (nth 6 calendar-current-time-zone-cache) 120)
388 "Number of minutes after midnight that daylight saving time starts."
389 :type 'integer
390 :group 'calendar-dst)
392 (defcustom calendar-daylight-savings-ends-time
393 (or (nth 7 calendar-current-time-zone-cache)
394 calendar-daylight-savings-starts-time)
395 "Number of minutes after midnight that daylight saving time ends."
396 :type 'integer
397 :group 'calendar-dst)
400 (defun calendar-dst-starts (year)
401 "Return the date of YEAR on which daylight saving time starts.
402 This function respects the value of `calendar-dst-check-each-year-flag'."
403 (or (let ((expr (if calendar-dst-check-each-year-flag
404 (cadr (calendar-dst-find-startend year))
405 (nth 4 calendar-current-time-zone-cache))))
406 (calendar-dlet* ((year year))
407 (if expr (eval expr))))
408 ;; New US rules commencing 2007. https://www.iana.org/time-zones
409 (and (not (zerop calendar-daylight-time-offset))
410 (calendar-nth-named-day 2 0 3 year))))
412 (defun calendar-dst-ends (year)
413 "Return the date of YEAR on which daylight saving time ends.
414 This function respects the value of `calendar-dst-check-each-year-flag'."
415 (or (let ((expr (if calendar-dst-check-each-year-flag
416 (nth 2 (calendar-dst-find-startend year))
417 (nth 5 calendar-current-time-zone-cache))))
418 (calendar-dlet* ((year year))
419 (if expr (eval expr))))
420 ;; New US rules commencing 2007. https://www.iana.org/time-zones
421 (and (not (zerop calendar-daylight-time-offset))
422 (calendar-nth-named-day 1 0 11 year))))
424 ;; used by calc, solar.
425 (defun dst-in-effect (date)
426 "True if on absolute DATE daylight saving time is in effect.
427 Fractional part of DATE is local standard time of day."
428 (calendar-dlet* ((year (calendar-extract-year
429 (calendar-gregorian-from-absolute (floor date)))))
430 (let* ((dst-starts-gregorian (eval calendar-daylight-savings-starts))
431 (dst-ends-gregorian (eval calendar-daylight-savings-ends))
432 (dst-starts (and dst-starts-gregorian
433 (+ (calendar-absolute-from-gregorian
434 dst-starts-gregorian)
435 (/ calendar-daylight-savings-starts-time
436 60.0 24.0))))
437 (dst-ends (and dst-ends-gregorian
438 (+ (calendar-absolute-from-gregorian
439 dst-ends-gregorian)
440 (/ (- calendar-daylight-savings-ends-time
441 calendar-daylight-time-offset)
442 60.0 24.0)))))
443 (and dst-starts dst-ends
444 (if (< dst-starts dst-ends)
445 (and (<= dst-starts date) (< date dst-ends))
446 (or (<= dst-starts date) (< date dst-ends)))))))
448 ;; used by calc, lunar, solar.
449 (defun dst-adjust-time (date time)
450 "Adjust, to account for dst on DATE, decimal fraction standard TIME.
451 Returns a list (date adj-time zone) where `date' and `adj-time' are the values
452 adjusted for `zone'; here `date' is a list (month day year), `adj-time' is a
453 decimal fraction time, and `zone' is a string.
455 Conversion to daylight saving time is done according to
456 `calendar-daylight-savings-starts', `calendar-daylight-savings-ends',
457 `calendar-daylight-savings-starts-time',
458 `calendar-daylight-savings-ends-time', and `calendar-daylight-time-offset'."
459 (let* ((rounded-abs-date (+ (calendar-absolute-from-gregorian date)
460 (/ (round (* 60 time)) 60.0 24.0)))
461 (dst (dst-in-effect rounded-abs-date))
462 (time-zone (if dst
463 calendar-daylight-time-zone-name
464 calendar-standard-time-zone-name))
465 (time (+ rounded-abs-date
466 (if dst (/ calendar-daylight-time-offset 24.0 60.0) 0))))
467 (list (calendar-gregorian-from-absolute (truncate time))
468 (* 24.0 (- time (truncate time)))
469 time-zone)))
471 (provide 'cal-dst)
473 ;;; cal-dst.el ends here