Add 2010 to copyright years.
[bpt/emacs.git] / lisp / calendar / time-date.el
CommitLineData
707f2b38 1;;; time-date.el --- Date and time handling functions
dbfca9c4 2
6afa3d67 3;; Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
114f9c96 4;; 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
c113de23
GM
5
6;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
7;; Masanobu Umeda <umerin@mse.kyutech.ac.jp>
8;; Keywords: mail news util
9
10;; This file is part of GNU Emacs.
11
2ed66575 12;; GNU Emacs is free software: you can redistribute it and/or modify
c113de23 13;; it under the terms of the GNU General Public License as published by
2ed66575
GM
14;; the Free Software Foundation, either version 3 of the License, or
15;; (at your option) any later version.
c113de23
GM
16
17;; GNU Emacs is distributed in the hope that it will be useful,
18;; but WITHOUT ANY WARRANTY; without even the implied warranty of
2ed66575 19;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
c113de23
GM
20;; GNU General Public License for more details.
21
22;; You should have received a copy of the GNU General Public License
2ed66575 23;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
c113de23
GM
24
25;;; Commentary:
26
ca2d9ad8
LK
27;; Time values come in three formats. The oldest format is a cons
28;; cell of the form (HIGH . LOW). This format is obsolete, but still
29;; supported. The two other formats are the lists (HIGH LOW) and
30;; (HIGH LOW MICRO). The first two formats specify HIGH * 2^16 + LOW
31;; seconds; the third format specifies HIGH * 2^16 + LOW + MICRO /
32;; 1000000 seconds. We should have 0 <= MICRO < 1000000 and 0 <= LOW
33;; < 2^16. If the time value represents a point in time, then HIGH is
34;; nonnegative. If the time value is a time difference, then HIGH can
35;; be negative as well. The macro `with-decoded-time-value' and the
36;; function `encode-time-value' make it easier to deal with these
37;; three formats. See `time-subtract' for an example of how to use
38;; them.
39
c113de23
GM
40;;; Code:
41
e3e955fe
MB
42;; Only necessary for `declare' when compiling Gnus with Emacs 21.
43(eval-when-compile (require 'cl))
44
ca2d9ad8
LK
45(defmacro with-decoded-time-value (varlist &rest body)
46 "Decode a time value and bind it according to VARLIST, then eval BODY.
47
48The value of the last form in BODY is returned.
49
50Each element of the list VARLIST is a list of the form
51\(HIGH-SYMBOL LOW-SYMBOL MICRO-SYMBOL [TYPE-SYMBOL] TIME-VALUE).
52The time value TIME-VALUE is decoded and the result it bound to
53the symbols HIGH-SYMBOL, LOW-SYMBOL and MICRO-SYMBOL.
54
55The optional TYPE-SYMBOL is bound to the type of the time value.
56Type 0 is the cons cell (HIGH . LOW), type 1 is the list (HIGH
e07ea833 57LOW), and type 2 is the list (HIGH LOW MICRO)."
ca2d9ad8
LK
58 (declare (indent 1)
59 (debug ((&rest (symbolp symbolp symbolp &or [symbolp form] form))
60 body)))
61 (if varlist
62 (let* ((elt (pop varlist))
63 (high (pop elt))
64 (low (pop elt))
65 (micro (pop elt))
66 (type (unless (eq (length elt) 1)
67 (pop elt)))
68 (time-value (car elt))
69 (gensym (make-symbol "time")))
70 `(let* ,(append `((,gensym ,time-value)
71 (,high (pop ,gensym))
72 ,low ,micro)
73 (when type `(,type)))
74 (if (consp ,gensym)
75 (progn
76 (setq ,low (pop ,gensym))
77 (if ,gensym
78 ,(append `(setq ,micro (car ,gensym))
79 (when type `(,type 2)))
80 ,(append `(setq ,micro 0)
81 (when type `(,type 1)))))
82 ,(append `(setq ,low ,gensym ,micro 0)
83 (when type `(,type 0))))
84 (with-decoded-time-value ,varlist ,@body)))
85 `(progn ,@body)))
86
87(defun encode-time-value (high low micro type)
88 "Encode HIGH, LOW, and MICRO into a time value of type TYPE.
89Type 0 is the cons cell (HIGH . LOW), type 1 is the list (HIGH LOW),
e4b07c8b 90and type 2 is the list (HIGH LOW MICRO)."
ca2d9ad8
LK
91 (cond
92 ((eq type 0) (cons high low))
93 ((eq type 1) (list high low))
94 ((eq type 2) (list high low micro))))
c113de23 95
bbcb5072 96(autoload 'parse-time-string "parse-time")
ce2a8a6a
DL
97(autoload 'timezone-make-date-arpa-standard "timezone")
98
c113de23
GM
99;;;###autoload
100(defun date-to-time (date)
7d4005cc 101 "Parse a string DATE that represents a date-time and return a time value."
c113de23 102 (condition-case ()
ce2a8a6a
DL
103 (apply 'encode-time
104 (parse-time-string
105 ;; `parse-time-string' isn't sufficiently general or
106 ;; robust. It fails to grok some of the formats that
23f87bed 107 ;; timezone does (e.g. dodgy post-2000 stuff from some
ce2a8a6a
DL
108 ;; Elms) and either fails or returns bogus values. Lars
109 ;; reverted this change, but that loses non-trivially
110 ;; often for me. -- fx
111 (timezone-make-date-arpa-standard date)))
c113de23
GM
112 (error (error "Invalid date: %s" date))))
113
697c7714
GM
114;; Bit of a mess. Emacs has float-time since at least 21.1.
115;; This file is synced to Gnus, and XEmacs packages may have been written
116;; using time-to-seconds from the Gnus library.
cdce0b33
KY
117;;;###autoload(if (and (fboundp 'float-time)
118;;;###autoload (subrp (symbol-function 'float-time)))
119;;;###autoload (progn
120;;;###autoload (defalias 'time-to-seconds 'float-time)
121;;;###autoload (make-obsolete 'time-to-seconds 'float-time "21.1"))
122;;;###autoload (autoload 'time-to-seconds "time-date"))
123
124(eval-and-compile
125 (unless (and (fboundp 'float-time)
126 (subrp (symbol-function 'float-time)))
697c7714
GM
127 (defun time-to-seconds (time)
128 "Convert time value TIME to a floating point number."
129 (with-decoded-time-value ((high low micro time))
cdce0b33
KY
130 (+ (* 1.0 high 65536)
131 low
132 (/ micro 1000000.0))))))
133
134(eval-when-compile
135 (unless (fboundp 'with-no-warnings)
136 (defmacro with-no-warnings (&rest body)
137 `(progn ,@body))))
c113de23 138
74fcda73 139;;;###autoload
c113de23 140(defun seconds-to-time (seconds)
74fcda73 141 "Convert SECONDS (a floating point number) to a time value."
91472578
MB
142 (list (floor seconds 65536)
143 (floor (mod seconds 65536))
c113de23
GM
144 (floor (* (- seconds (ffloor seconds)) 1000000))))
145
74fcda73 146;;;###autoload
c113de23 147(defun time-less-p (t1 t2)
74fcda73 148 "Say whether time value T1 is less than time value T2."
ca2d9ad8
LK
149 (with-decoded-time-value ((high1 low1 micro1 t1)
150 (high2 low2 micro2 t2))
151 (or (< high1 high2)
152 (and (= high1 high2)
153 (or (< low1 low2)
154 (and (= low1 low2)
155 (< micro1 micro2)))))))
c113de23 156
74fcda73 157;;;###autoload
c113de23 158(defun days-to-time (days)
74fcda73 159 "Convert DAYS into a time value."
c113de23 160 (let* ((seconds (* 1.0 days 60 60 24))
91472578 161 (high (condition-case nil (floor (/ seconds 65536))
ca2d9ad8 162 (range-error most-positive-fixnum))))
91472578
MB
163 (list high (condition-case nil (floor (- seconds (* 1.0 high 65536)))
164 (range-error 65535)))))
c113de23 165
74fcda73 166;;;###autoload
c113de23 167(defun time-since (time)
74fcda73
RS
168 "Return the time elapsed since TIME.
169TIME should be either a time value or a date-time string."
c113de23
GM
170 (when (stringp time)
171 ;; Convert date strings to internal time.
172 (setq time (date-to-time time)))
ca2d9ad8 173 (time-subtract (current-time) time))
c113de23 174
74fcda73
RS
175;;;###autoload
176(defalias 'subtract-time 'time-subtract)
177
178;;;###autoload
179(defun time-subtract (t1 t2)
7d4005cc 180 "Subtract two time values, T1 minus T2.
74fcda73 181Return the difference in the format of a time value."
ca2d9ad8
LK
182 (with-decoded-time-value ((high low micro type t1)
183 (high2 low2 micro2 type2 t2))
184 (setq high (- high high2)
185 low (- low low2)
186 micro (- micro micro2)
187 type (max type type2))
188 (when (< micro 0)
189 (setq low (1- low)
190 micro (+ micro 1000000)))
191 (when (< low 0)
192 (setq high (1- high)
91472578 193 low (+ low 65536)))
ca2d9ad8 194 (encode-time-value high low micro type)))
c113de23 195
74fcda73
RS
196;;;###autoload
197(defun time-add (t1 t2)
7d4005cc 198 "Add two time values T1 and T2. One should represent a time difference."
ca2d9ad8
LK
199 (with-decoded-time-value ((high low micro type t1)
200 (high2 low2 micro2 type2 t2))
201 (setq high (+ high high2)
202 low (+ low low2)
203 micro (+ micro micro2)
204 type (max type type2))
205 (when (>= micro 1000000)
206 (setq low (1+ low)
207 micro (- micro 1000000)))
91472578 208 (when (>= low 65536)
ca2d9ad8 209 (setq high (1+ high)
91472578 210 low (- low 65536)))
ca2d9ad8 211 (encode-time-value high low micro type)))
74fcda73
RS
212
213;;;###autoload
c113de23 214(defun date-to-day (date)
74fcda73
RS
215 "Return the number of days between year 1 and DATE.
216DATE should be a date-time string."
c113de23
GM
217 (time-to-days (date-to-time date)))
218
74fcda73 219;;;###autoload
c113de23 220(defun days-between (date1 date2)
74fcda73
RS
221 "Return the number of days between DATE1 and DATE2.
222DATE1 and DATE2 should be date-time strings."
c113de23
GM
223 (- (date-to-day date1) (date-to-day date2)))
224
74fcda73 225;;;###autoload
c113de23
GM
226(defun date-leap-year-p (year)
227 "Return t if YEAR is a leap year."
228 (or (and (zerop (% year 4))
229 (not (zerop (% year 100))))
230 (zerop (% year 400))))
231
74fcda73 232;;;###autoload
c113de23 233(defun time-to-day-in-year (time)
1525ea1e 234 "Return the day number within the year corresponding to TIME."
c113de23
GM
235 (let* ((tim (decode-time time))
236 (month (nth 4 tim))
237 (day (nth 3 tim))
238 (year (nth 5 tim))
239 (day-of-year (+ day (* 31 (1- month)))))
240 (when (> month 2)
241 (setq day-of-year (- day-of-year (/ (+ 23 (* 4 month)) 10)))
242 (when (date-leap-year-p year)
243 (setq day-of-year (1+ day-of-year))))
244 day-of-year))
245
74fcda73 246;;;###autoload
c113de23
GM
247(defun time-to-days (time)
248 "The number of days between the Gregorian date 0001-12-31bce and TIME.
74fcda73 249TIME should be a time value.
c113de23
GM
250The Gregorian date Sunday, December 31, 1bce is imaginary."
251 (let* ((tim (decode-time time))
252 (month (nth 4 tim))
253 (day (nth 3 tim))
254 (year (nth 5 tim)))
255 (+ (time-to-day-in-year time) ; Days this year
256 (* 365 (1- year)) ; + Days in prior years
257 (/ (1- year) 4) ; + Julian leap years
258 (- (/ (1- year) 100)) ; - century years
259 (/ (1- year) 400)))) ; + Gregorian leap years
260
cdce0b33
KY
261(eval-and-compile
262 (if (and (fboundp 'float-time)
263 (subrp (symbol-function 'float-time)))
264 (defun time-to-number-of-days (time)
265 "Return the number of days represented by TIME.
266The number of days will be returned as a floating point number."
267 (/ (float-time time) (* 60 60 24)))
268 (defun time-to-number-of-days (time)
269 "Return the number of days represented by TIME.
23f87bed 270The number of days will be returned as a floating point number."
cdce0b33 271 (/ (with-no-warnings (time-to-seconds time)) (* 60 60 24)))))
23f87bed 272
c113de23
GM
273;;;###autoload
274(defun safe-date-to-time (date)
7d4005cc 275 "Parse a string DATE that represents a date-time and return a time value.
74fcda73 276If DATE is malformed, return a time value of zeros."
c113de23
GM
277 (condition-case ()
278 (date-to-time date)
279 (error '(0 0))))
280
9ce1b62f 281\f
6afa3d67 282;;;###autoload
99d8d540 283(defun format-seconds (string seconds)
6afa3d67
GM
284 "Use format control STRING to format the number SECONDS.
285The valid format specifiers are:
286%y is the number of (365-day) years.
287%d is the number of days.
288%h is the number of hours.
289%m is the number of minutes.
290%s is the number of seconds.
99d8d540 291%z is a non-printing control flag (see below).
6afa3d67
GM
292%% is a literal \"%\".
293
294Upper-case specifiers are followed by the unit-name (e.g. \"years\").
295Lower-case specifiers return only the unit.
296
297\"%\" may be followed by a number specifying a width, with an
298optional leading \".\" for zero-padding. For example, \"%.3Y\" will
299return something of the form \"001 year\".
300
99d8d540
GM
301The \"%z\" specifier does not print anything. When it is used, specifiers
302must be given in order of decreasing size. To the left of \"%z\", nothing
303is output until the first non-zero unit is encountered.
6afa3d67 304
99d8d540 305This function does not work for SECONDS greater than `most-positive-fixnum'."
6afa3d67
GM
306 (let ((start 0)
307 (units '(("y" "year" 31536000)
308 ("d" "day" 86400)
309 ("h" "hour" 3600)
310 ("m" "minute" 60)
99d8d540
GM
311 ("s" "second" 1)
312 ("z")))
6afa3d67 313 (case-fold-search t)
99d8d540 314 spec match usedunits zeroflag larger prev name unit num zeropos)
6afa3d67
GM
315 (while (string-match "%\\.?[0-9]*\\(.\\)" string start)
316 (setq start (match-end 0)
317 spec (match-string 1 string))
318 (unless (string-equal spec "%")
e3e955fe
MB
319 ;; `assoc-string' is not available in Emacs 21. So when compiling
320 ;; Gnus (`time-date.el' is part of Gnus) with Emacs 21, we get a
321 ;; warning here. But `format-seconds' is not used anywhere in Gnus so
322 ;; it's not a real problem. --rsteib
6afa3d67
GM
323 (or (setq match (assoc-string spec units t))
324 (error "Bad format specifier: `%s'" spec))
99d8d540 325 (if (assoc-string spec usedunits t)
6afa3d67 326 (error "Multiple instances of specifier: `%s'" spec))
99d8d540
GM
327 (if (string-equal (car match) "z")
328 (setq zeroflag t)
329 (unless larger
330 (setq unit (nth 2 match)
331 larger (and prev (> unit prev))
332 prev unit)))
333 (push match usedunits)))
334 (and zeroflag larger
335 (error "Units are not in decreasing order of size"))
336 (dolist (u units)
337 (setq spec (car u)
338 name (cadr u)
339 unit (nth 2 u))
6afa3d67 340 (when (string-match (format "%%\\(\\.?[0-9]+\\)?\\(%s\\)" spec) string)
99d8d540
GM
341 (if (string-equal spec "z") ; must be last in units
342 (setq string
343 (replace-regexp-in-string
344 "%z" ""
345 (substring string (min (or zeropos (match-end 0))
346 (match-beginning 0)))))
347 ;; Cf article-make-date-line in gnus-art.
348 (setq num (floor seconds unit)
349 seconds (- seconds (* num unit)))
350 ;; Start position of the first non-zero unit.
351 (or zeropos
352 (setq zeropos (unless (zerop num) (match-beginning 0))))
353 (setq string
354 (replace-match
355 (format (concat "%" (match-string 1 string) "d%s") num
356 (if (string-equal (match-string 2 string) spec)
357 "" ; lower-case, no unit-name
358 (format " %s%s" name
359 (if (= num 1) "" "s"))))
360 t t string))))))
6afa3d67
GM
361 (replace-regexp-in-string "%%" "%" string))
362
9ce1b62f 363
c113de23
GM
364(provide 'time-date)
365
cbee283d 366;; arch-tag: addcf07b-b20a-465b-af72-550b8ac5190f
c113de23 367;;; time-date.el ends here