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