(Fread_file_name): Correct handling of dollars in file
[bpt/emacs.git] / lisp / timezone.el
CommitLineData
be010748 1;;; timezone.el --- time zone package for GNU Emacs
a47a5be5 2
ac4c237c 3;; Copyright (C) 1990, 1991, 1992, 1993, 1996 Free Software Foundation, Inc.
aa56d805 4
be010748
RS
5;; Author: Masanobu Umeda
6;; Maintainer: umerin@mse.kyutech.ac.jp
7;; Keywords: news
a47a5be5
RS
8
9;; This file is part of GNU Emacs.
10
11;; GNU Emacs is free software; you can redistribute it and/or modify
12;; it under the terms of the GNU General Public License as published by
13;; the Free Software Foundation; either version 2, or (at your option)
14;; any later version.
15
16;; GNU Emacs is distributed in the hope that it will be useful,
17;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19;; GNU General Public License for more details.
20
21;; You should have received a copy of the GNU General Public License
b578f267
EN
22;; along with GNU Emacs; see the file COPYING. If not, write to the
23;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24;; Boston, MA 02111-1307, USA.
a47a5be5
RS
25
26;;; Code:
27
28(provide 'timezone)
29
30(defvar timezone-world-timezones
31 '(("PST" . -800)
32 ("PDT" . -700)
33 ("MST" . -700)
34 ("MDT" . -600)
35 ("CST" . -600)
36 ("CDT" . -500)
37 ("EST" . -500)
38 ("EDT" . -400)
39 ("AST" . -400) ;by <clamen@CS.CMU.EDU>
40 ("NST" . -330) ;by <clamen@CS.CMU.EDU>
dbc6c26a 41 ("UT" . +000)
a47a5be5
RS
42 ("GMT" . +000)
43 ("BST" . +100)
44 ("MET" . +100)
45 ("EET" . +200)
46 ("JST" . +900)
47 ("GMT+1" . +100) ("GMT+2" . +200) ("GMT+3" . +300)
48 ("GMT+4" . +400) ("GMT+5" . +500) ("GMT+6" . +600)
49 ("GMT+7" . +700) ("GMT+8" . +800) ("GMT+9" . +900)
50 ("GMT+10" . +1000) ("GMT+11" . +1100) ("GMT+12" . +1200) ("GMT+13" . +1300)
51 ("GMT-1" . -100) ("GMT-2" . -200) ("GMT-3" . -300)
52 ("GMT-4" . -400) ("GMT-5" . -500) ("GMT-6" . -600)
53 ("GMT-7" . -700) ("GMT-8" . -800) ("GMT-9" . -900)
54 ("GMT-10" . -1000) ("GMT-11" . -1100) ("GMT-12" . -1200))
d51c3cda
RS
55 "*Time differentials of timezone from GMT in +-HHMM form.
56This list is obsolescent, and is present only for backwards compatibility,
57because time zone names are ambiguous in practice.
58Use `current-time-zone' instead.")
a47a5be5
RS
59
60(defvar timezone-months-assoc
61 '(("JAN" . 1)("FEB" . 2)("MAR" . 3)
62 ("APR" . 4)("MAY" . 5)("JUN" . 6)
63 ("JUL" . 7)("AUG" . 8)("SEP" . 9)
64 ("OCT" . 10)("NOV" . 11)("DEC" . 12))
65 "Alist of first three letters of a month and its numerical representation.")
66
67(defun timezone-make-date-arpa-standard (date &optional local timezone)
68 "Convert DATE to an arpanet standard date.
a184d9bf 69Optional 2nd argument LOCAL specifies the default local timezone of the DATE;
d51c3cda 70if nil, GMT is assumed.
a184d9bf 71Optional 3rd argument TIMEZONE specifies a time zone to be represented in;
d51c3cda
RS
72if nil, the local time zone is assumed."
73 (let ((new (timezone-fix-time date local timezone)))
a47a5be5
RS
74 (timezone-make-arpa-date (aref new 0) (aref new 1) (aref new 2)
75 (timezone-make-time-string
76 (aref new 3) (aref new 4) (aref new 5))
d51c3cda 77 (aref new 6))
a47a5be5
RS
78 ))
79
80(defun timezone-make-date-sortable (date &optional local timezone)
81 "Convert DATE to a sortable date string.
a184d9bf 82Optional 2nd argument LOCAL specifies the default local timezone of the DATE;
d51c3cda 83if nil, GMT is assumed.
a184d9bf 84Optional 3rd argument TIMEZONE specifies a timezone to be represented in;
d51c3cda
RS
85if nil, the local time zone is assumed."
86 (let ((new (timezone-fix-time date local timezone)))
a47a5be5
RS
87 (timezone-make-sortable-date (aref new 0) (aref new 1) (aref new 2)
88 (timezone-make-time-string
89 (aref new 3) (aref new 4) (aref new 5)))
90 ))
91
92\f
93;;
94;; Parsers and Constructors of Date and Time
95;;
96
97(defun timezone-make-arpa-date (year month day time &optional timezone)
98 "Make arpanet standard date string from YEAR, MONTH, DAY, and TIME.
99Optional argument TIMEZONE specifies a time zone."
d51c3cda
RS
100 (let ((zone
101 (if (listp timezone)
102 (let* ((m (timezone-zone-to-minute timezone))
103 (absm (if (< m 0) (- m) m)))
104 (format "%c%02d%02d"
105 (if (< m 0) ?- ?+) (/ absm 60) (% absm 60)))
106 timezone)))
107 (format "%02d %s %04d %s %s"
108 day
109 (capitalize (car (rassq month timezone-months-assoc)))
110 year
111 time
112 zone)))
a47a5be5
RS
113
114(defun timezone-make-sortable-date (year month day time)
115 "Make sortable date string from YEAR, MONTH, DAY, and TIME."
116 (format "%4d%02d%02d%s"
d51c3cda 117 year month day time))
a47a5be5
RS
118
119(defun timezone-make-time-string (hour minute second)
120 "Make time string from HOUR, MINUTE, and SECOND."
121 (format "%02d:%02d:%02d" hour minute second))
122
123(defun timezone-parse-date (date)
6b77e539
RS
124 "Parse DATE and return a vector [YEAR MONTH DAY TIME TIMEZONE].
12519 is prepended to year if necessary. Timezone may be nil if nothing.
126Understands the following styles:
a47a5be5
RS
127 (1) 14 Apr 89 03:20[:12] [GMT]
128 (2) Fri, 17 Mar 89 4:01[:33] [GMT]
129 (3) Mon Jan 16 16:12[:37] [GMT] 1989
6b77e539 130 (4) 6 May 1992 1641-JST (Wednesday)
2f9a1ee2
RS
131 (5) 22-AUG-1993 10:59:12.82
132 (6) Thu, 11 Apr 16:17:12 91 [MET]
9d02faa7 133 (7) Mon, 6 Jul 16:47:20 T 1992 [MET]
43776ca0
RS
134 (8) 1996-06-24 21:13:12 [GMT]
135 (9) 1996-06-24 21:13-ZONE"
ac4c237c 136 ;; Get rid of any text properties.
f4573839
RS
137 (and (stringp date)
138 (or (text-properties-at 0 date)
139 (next-property-change 0 date))
140 (setq date (copy-sequence date))
141 (set-text-properties 0 (length date) nil date))
a47a5be5
RS
142 (let ((date (or date ""))
143 (year nil)
144 (month nil)
145 (day nil)
146 (time nil)
147 (zone nil)) ;This may be nil.
148 (cond ((string-match
bcabbf77
RS
149 "\\([0-9]+\\)[ \t]+\\([^ \t,]+\\)[ \t]+\\([0-9]+\\)[ \t]+\\([0-9]+:[0-9:]+\\)[ \t]*\\([-+a-zA-Z0-9]+\\)" date)
150 ;; Styles: (1) and (2) with timezone and buggy timezone
151 ;; This is most common in mail and news,
152 ;; so it is worth trying first.
153 (setq year 3 month 2 day 1 time 4 zone 5))
154 ((string-match
155 "\\([0-9]+\\)[ \t]+\\([^ \t,]+\\)[ \t]+\\([0-9]+\\)[ \t]+\\([0-9]+:[0-9:]+\\)[ \t]*\\'" date)
156 ;; Styles: (1) and (2) without timezone
157 (setq year 3 month 2 day 1 time 4 zone nil))
158 ((string-match
2f9a1ee2
RS
159 "\\([^ \t,]+\\),[ \t]+\\([0-9]+\\)[ \t]+\\([^ \t,]+\\)[ \t]+\\([0-9]+:[0-9:]+\\)[ \t]+\\(T[ \t]+\\|\\)\\([0-9]+\\)[ \t]*\\'" date)
160 ;; Styles: (6) and (7) without timezone
161 (setq year 6 month 3 day 2 time 4 zone nil))
162 ((string-match
163 "\\([^ \t,]+\\),[ \t]+\\([0-9]+\\)[ \t]+\\([^ \t,]+\\)[ \t]+\\([0-9]+:[0-9:]+\\)[ \t]+\\(T[ \t]+\\|\\)\\([0-9]+\\)[ \t]*\\([-+a-zA-Z0-9]+\\)" date)
164 ;; Styles: (6) and (7) with timezone and buggy timezone
165 (setq year 6 month 3 day 2 time 4 zone 7))
a47a5be5
RS
166 ((string-match
167 "\\([^ \t,]+\\)[ \t]+\\([0-9]+\\)[ \t]+\\([0-9]+:[0-9:]+\\)[ \t]+\\([0-9]+\\)" date)
168 ;; Styles: (3) without timezone
169 (setq year 4 month 1 day 2 time 3 zone nil))
170 ((string-match
171 "\\([^ \t,]+\\)[ \t]+\\([0-9]+\\)[ \t]+\\([0-9]+:[0-9:]+\\)[ \t]+\\([-+a-zA-Z0-9]+\\)[ \t]+\\([0-9]+\\)" date)
6b77e539 172 ;; Styles: (3) with timezone
a47a5be5
RS
173 (setq year 5 month 1 day 2 time 3 zone 4))
174 ((string-match
175 "\\([0-9]+\\)[ \t]+\\([^ \t,]+\\)[ \t]+\\([0-9]+\\)[ \t]+\\([0-9]+\\)[ \t]*\\([-+a-zA-Z0-9]+\\)" date)
176 ;; Styles: (4) with timezone
177 (setq year 3 month 2 day 1 time 4 zone 5))
b20bb856
KH
178 ((string-match
179 "\\([0-9]+\\)-\\([A-Za-z]+\\)-\\([0-9]+\\)[ \t]+\\([0-9]+:[0-9]+:[0-9]+\\)\\(\\.[0-9]+\\)?[ \t]+\\([-+a-zA-Z0-9]+\\)" date)
180 ;; Styles: (5) with timezone.
181 (setq year 3 month 2 day 1 time 4 zone 6))
6b77e539 182 ((string-match
9dafdfe2 183 "\\([0-9]+\\)-\\([A-Za-z]+\\)-\\([0-9]+\\)[ \t]+\\([0-9]+:[0-9]+:[0-9]+\\)\\(\\.[0-9]+\\)?" date)
6b77e539
RS
184 ;; Styles: (5) without timezone.
185 (setq year 3 month 2 day 1 time 4 zone nil))
ac4c237c
MB
186 ((string-match
187 "\\([0-9]+\\)-\\([0-9]+\\)-\\([0-9]+\\)[ \t]+\\([0-9]+:[0-9]+:[0-9]+\\)[ \t]*\\([-+a-zA-Z0-9]+\\)" date)
188 ;; Styles: (8) with timezone.
189 (setq year 1 month 2 day 3 time 4 zone 5))
43776ca0
RS
190 ((string-match
191 "\\([0-9]+\\)-\\([0-9]+\\)-\\([0-9]+\\)[ \t]+\\([0-9]+:[0-9]+\\)[ \t]*\\([-+a-zA-Z0-9:]+\\)" date)
192 ;; Styles: (8) with timezone with a colon in it.
193 (setq year 1 month 2 day 3 time 4 zone 5))
ac4c237c
MB
194 ((string-match
195 "\\([0-9]+\\)-\\([0-9]+\\)-\\([0-9]+\\)[ \t]+\\([0-9]+:[0-9]+:[0-9]+\\)" date)
196 ;; Styles: (8) without timezone.
197 (setq year 1 month 2 day 3 time 4 zone nil))
a47a5be5
RS
198 )
199 (if year
200 (progn
201 (setq year
202 (substring date (match-beginning year) (match-end year)))
203 ;; It is now Dec 1992. 8 years before the end of the World.
f8f5c5f4
RS
204 (if (= (length year) 1)
205 (setq year (concat "190" (substring year -1 nil)))
206 (if (< (length year) 4)
207 (setq year (concat "19" (substring year -2 nil)))))
ac4c237c
MB
208 (setq month
209 (if (= (aref date (+ (match-beginning month) 2)) ?-)
210 ;; Handle numeric months, spanning exactly two digits.
211 (substring date
212 (match-beginning month)
213 (+ (match-beginning month) 2))
dd713b75
RS
214 (let* ((string (substring date
215 (match-beginning month)
216 (+ (match-beginning month) 3)))
217 (monthnum
218 (cdr (assoc (upcase string) timezone-months-assoc))))
219 (if monthnum
220 (int-to-string monthnum)
221 nil))))
a47a5be5
RS
222 (setq day
223 (substring date (match-beginning day) (match-end day)))
224 (setq time
225 (substring date (match-beginning time) (match-end time)))))
226 (if zone
227 (setq zone
228 (substring date (match-beginning zone) (match-end zone))))
229 ;; Return a vector.
dd713b75 230 (if (and year month)
a47a5be5
RS
231 (vector year month day time zone)
232 (vector "0" "0" "0" "0" nil))
233 ))
234
235(defun timezone-parse-time (time)
236 "Parse TIME (HH:MM:SS) and return a vector [hour minute second].
237Recognize HH:MM:SS, HH:MM, HHMMSS, HHMM."
238 (let ((time (or time ""))
239 (hour nil)
240 (minute nil)
241 (second nil))
242 (cond ((string-match "\\`\\([0-9]+\\):\\([0-9]+\\):\\([0-9]+\\)\\'" time)
243 ;; HH:MM:SS
244 (setq hour 1 minute 2 second 3))
245 ((string-match "\\`\\([0-9]+\\):\\([0-9]+\\)\\'" time)
246 ;; HH:MM
247 (setq hour 1 minute 2 second nil))
248 ((string-match "\\`\\([0-9][0-9]\\)\\([0-9][0-9]\\)\\([0-9][0-9]\\)\\'" time)
249 ;; HHMMSS
250 (setq hour 1 minute 2 second 3))
251 ((string-match "\\`\\([0-9][0-9]\\)\\([0-9][0-9]\\)\\'" time)
252 ;; HHMM
253 (setq hour 1 minute 2 second nil))
254 )
255 ;; Return [hour minute second]
256 (vector
257 (if hour
258 (substring time (match-beginning hour) (match-end hour)) "0")
259 (if minute
260 (substring time (match-beginning minute) (match-end minute)) "0")
261 (if second
262 (substring time (match-beginning second) (match-end second)) "0"))
263 ))
264
265\f
266;; Miscellaneous
267
268(defun timezone-zone-to-minute (timezone)
d51c3cda
RS
269 "Translate TIMEZONE to an integer minute offset from GMT.
270TIMEZONE can be a cons cell containing the output of current-time-zone,
271or an integer of the form +-HHMM, or a time zone name."
272 (cond
273 ((consp timezone)
274 (/ (car timezone) 60))
275 (timezone
a47a5be5
RS
276 (progn
277 (setq timezone
278 (or (cdr (assoc (upcase timezone) timezone-world-timezones))
279 ;; +900
280 timezone))
281 (if (stringp timezone)
282 (setq timezone (string-to-int timezone)))
283 ;; Taking account of minute in timezone.
284 ;; HHMM -> MM
9b1868cc 285 (let* ((abszone (abs timezone))
a47a5be5 286 (minutes (+ (* 60 (/ abszone 100)) (% abszone 100))))
d51c3cda
RS
287 (if (< timezone 0) (- minutes) minutes))))
288 (t 0)))
289
290(defun timezone-time-from-absolute (date seconds)
291 "Compute the UTC time equivalent to DATE at time SECONDS after midnight.
292Return a list suitable as an argument to current-time-zone,
293or nil if the date cannot be thus represented.
294DATE is the number of days elapsed since the (imaginary)
295Gregorian date Sunday, December 31, 1 BC."
db853edc 296 (let* ((current-time-origin 719163)
d51c3cda
RS
297 ;; (timezone-absolute-from-gregorian 1 1 1970)
298 (days (- date current-time-origin))
299 (seconds-per-day (float 86400))
300 (seconds (+ seconds (* days seconds-per-day)))
301 (current-time-arithmetic-base (float 65536))
302 (hi (floor (/ seconds current-time-arithmetic-base)))
303 (hibase (* hi current-time-arithmetic-base))
304 (lo (floor (- seconds hibase))))
305 (and (< (abs (- seconds (+ hibase lo))) 2) ;; Check for integer overflow.
306 (cons hi lo))))
a47a5be5 307
d51c3cda
RS
308(defun timezone-time-zone-from-absolute (date seconds)
309 "Compute the local time zone for DATE at time SECONDS after midnight.
310Return a list in the same format as current-time-zone's result,
311or nil if the local time zone could not be computed.
312DATE is the number of days elapsed since the (imaginary)
313Gregorian date Sunday, December 31, 1 BC."
314 (and (fboundp 'current-time-zone)
315 (let ((utc-time (timezone-time-from-absolute date seconds)))
316 (and utc-time
317 (let ((zone (current-time-zone utc-time)))
318 (and (car zone) zone))))))
319
320(defun timezone-fix-time (date local timezone)
dce33aad 321 "Convert DATE (default timezone LOCAL) to YYYY-MM-DD-HH-MM-SS-ZONE vector.
d51c3cda
RS
322If LOCAL is nil, it is assumed to be GMT.
323If TIMEZONE is nil, use the local time zone."
324 (let* ((date (timezone-parse-date date))
325 (year (string-to-int (aref date 0)))
13d76d1c
RS
326 (year (cond ((< year 50)
327 (+ year 2000))
328 ((< year 100)
329 (+ year 1900))
330 (t year)))
d51c3cda
RS
331 (month (string-to-int (aref date 1)))
332 (day (string-to-int (aref date 2)))
333 (time (timezone-parse-time (aref date 3)))
334 (hour (string-to-int (aref time 0)))
335 (minute (string-to-int (aref time 1)))
336 (second (string-to-int (aref time 2)))
337 (local (or (aref date 4) local)) ;Use original if defined
338 (timezone
339 (or timezone
340 (timezone-time-zone-from-absolute
341 (timezone-absolute-from-gregorian month day year)
342 (+ second (* 60 (+ minute (* 60 hour)))))))
343 (diff (- (timezone-zone-to-minute timezone)
344 (timezone-zone-to-minute local)))
345 (minute (+ minute diff))
9b1868cc 346 (hour-fix (floor minute 60)))
a47a5be5 347 (setq hour (+ hour hour-fix))
d51c3cda
RS
348 (setq minute (- minute (* 60 hour-fix)))
349 ;; HOUR may be larger than 24 or smaller than 0.
350 (cond ((<= 24 hour) ;24 -> 00
351 (setq hour (- hour 24))
352 (setq day (1+ day))
353 (if (< (timezone-last-day-of-month month year) day)
354 (progn
355 (setq month (1+ month))
356 (setq day 1)
357 (if (< 12 month)
358 (progn
359 (setq month 1)
360 (setq year (1+ year))
361 ))
362 )))
363 ((> 0 hour)
364 (setq hour (+ hour 24))
365 (setq day (1- day))
366 (if (> 1 day)
367 (progn
368 (setq month (1- month))
369 (if (> 1 month)
370 (progn
371 (setq month 12)
372 (setq year (1- year))
373 ))
374 (setq day (timezone-last-day-of-month month year))
375 )))
376 )
377 (vector year month day hour minute second timezone)))
a47a5be5
RS
378
379;; Partly copied from Calendar program by Edward M. Reingold.
380;; Thanks a lot.
381
382(defun timezone-last-day-of-month (month year)
383 "The last day in MONTH during YEAR."
384 (if (and (= month 2) (timezone-leap-year-p year))
385 29
386 (aref [31 28 31 30 31 30 31 31 30 31 30 31] (1- month))))
387
388(defun timezone-leap-year-p (year)
389 "Returns t if YEAR is a Gregorian leap year."
390 (or (and (zerop (% year 4))
391 (not (zerop (% year 100))))
392 (zerop (% year 400))))
aa56d805 393
d51c3cda
RS
394(defun timezone-day-number (month day year)
395 "Return the day number within the year of the date month/day/year."
396 (let ((day-of-year (+ day (* 31 (1- month)))))
397 (if (> month 2)
398 (progn
399 (setq day-of-year (- day-of-year (/ (+ 23 (* 4 month)) 10)))
400 (if (timezone-leap-year-p year)
401 (setq day-of-year (1+ day-of-year)))))
402 day-of-year))
403
404(defun timezone-absolute-from-gregorian (month day year)
405 "The number of days between the Gregorian date 12/31/1 BC and month/day/year.
406The Gregorian date Sunday, December 31, 1 BC is imaginary."
407 (+ (timezone-day-number month day year);; Days this year
408 (* 365 (1- year));; + Days in prior years
409 (/ (1- year) 4);; + Julian leap years
410 (- (/ (1- year) 100));; - century years
411 (/ (1- year) 400)));; + Gregorian leap years
412
aa56d805 413;;; timezone.el ends here