1 ;;; calc-forms.el --- data format conversion functions for Calc
3 ;; Copyright (C) 1990, 1991, 1992, 1993, 2001, 2002, 2003, 2004,
4 ;; 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
6 ;; Author: David Gillespie <daveg@synaptics.com>
7 ;; Maintainer: Jay Belanger <jay.p.belanger@gmail.com>
9 ;; This file is part of GNU Emacs.
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 3 of the License, or
14 ;; (at your option) any later version.
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.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
28 ;; This file is autoloaded from calc-ext.el.
33 ;; Declare functions which are defined elsewhere.
34 (declare-function calendar-current-time-zone
"cal-dst" ())
35 (declare-function calendar-absolute-from-gregorian
"calendar" (date))
36 (declare-function dst-in-effect
"cal-dst" (date))
42 (let ((time (current-time-string)))
43 (calc-enter-result 0 "time"
46 (string-to-number (substring time
11 13))
47 (string-to-number (substring time
14 16))
48 (string-to-number (substring time
17 19)))
49 (list 'hms
24 0 0))))))
51 (defun calc-to-hms (arg)
55 (if (eq calc-angle-mode
'rad
)
56 (calc-unary-op ">rad" 'calcFunc-rad arg
)
57 (calc-unary-op ">deg" 'calcFunc-deg arg
))
58 (calc-unary-op ">hms" 'calcFunc-hms arg
))))
60 (defun calc-from-hms (arg)
66 (defun calc-hms-notation (fmt)
67 (interactive "sHours-minutes-seconds format (hms, @ ' \", etc.): ")
69 (if (string-match "\\`\\([^,; ]+\\)\\([,; ]*\\)\\([^,; ]\\)\\([,; ]*\\)\\([^,; ]\\)\\'" fmt
)
71 (calc-change-mode 'calc-hms-format
72 (concat "%s" (math-match-substring fmt
1)
73 (math-match-substring fmt
2)
74 "%s" (math-match-substring fmt
3)
75 (math-match-substring fmt
4)
76 "%s" (math-match-substring fmt
5))
78 (setq-default calc-hms-format calc-hms-format
)) ; for minibuffer
79 (error "Bad hours-minutes-seconds format"))))
81 (defun calc-date-notation (fmt arg
)
82 (interactive "sDate format (e.g., M/D/YY h:mm:ss): \nP")
84 (if (string-match-p "\\`\\s-*\\'" fmt
)
86 (if (string-match "\\` *[0-9] *\\'" fmt
)
87 (setq fmt
(nth (string-to-number fmt
) calc-standard-date-formats
)))
88 (or (string-match "[a-zA-Z]" fmt
)
89 (error "Bad date format specifier"))
91 (>= (setq arg
(prefix-numeric-value arg
)) 0)
93 (setq calc-standard-date-formats
94 (copy-sequence calc-standard-date-formats
))
95 (setcar (nthcdr arg calc-standard-date-formats
) fmt
))
96 (let ((case-fold-search nil
))
97 (and (not (string-match "<.*>" fmt
))
98 (string-match "\\`[^hHspP]*\\([^ac-gi-lnoqrt-zAC-GI-OQRT-Z]*[bBhHmpPsS]+[^ac-gi-lnoqrt-zAC-GI-OQRT-Z]*\\)[^hHspP]*\\'" fmt
)
99 (string-match (concat "[^ac-gi-lnoqrt-zAC-GI-OQRT-Z]*"
100 (regexp-quote (math-match-substring fmt
1))
101 "[^ac-gi-lnoqrt-zAC-GI-OQRT-Z]*") fmt
)
102 (setq fmt
(concat (substring fmt
0 (match-beginning 0))
104 (substring fmt
(match-beginning 0) (match-end 0))
106 (substring fmt
(match-end 0))))))
111 (let ((case-fold-search nil
))
112 (and (setq temp
(string-match ":[BS]S" fmt
))
114 (while (setq pos
(string-match "[<>a-zA-Z]" fmt
))
116 (setq lfmt
(cons (substring fmt
0 pos
) lfmt
)))
118 (cond ((= (aref fmt pos
) ?\
<)
119 (and time
(error "Nested <'s not allowed"))
120 (and lfmt
(setq fullfmt
(nconc lfmt fullfmt
)
123 ((= (aref fmt pos
) ?\
>)
124 (or time
(error "Misplaced > in format"))
125 (and lfmt
(setq fullfmt
(cons (nreverse lfmt
) fullfmt
)
129 (if (string-match "\\`[^a-zA-Z]*[bB][a-zA-Z]" fmt
)
130 (setq pos2
(1+ pos2
)))
131 (while (and (< pos2
(length fmt
))
132 (= (upcase (aref fmt pos2
))
133 (upcase (aref fmt
(1- pos2
)))))
134 (setq pos2
(1+ pos2
)))
135 (setq sym
(intern (substring fmt pos pos2
)))
136 (or (memq sym
'(Y YY BY YYY YYYY
137 aa AA aaa AAA aaaa AAAA
138 bb BB bbb BBB bbbb BBBB
139 M MM BM mmm Mmm Mmmm MMM MMMM
141 W www Www Wwww WWW WWWW
144 m mm bm s ss bss SS BS C
146 (and (eq sym
'X
) (not lfmt
) (not fullfmt
))
147 (error "Bad format code: %s" sym
))
148 (and (memq sym
'(bb BB bbb BBB bbbb BBBB
))
149 (setq lfmt
(cons 'b lfmt
)))
150 (setq lfmt
(cons sym lfmt
))))
151 (setq fmt
(substring fmt pos2
)))
153 (setq lfmt
(cons fmt lfmt
)))
155 (setq fullfmt
(cons (nreverse lfmt
) fullfmt
))
156 (setq fullfmt
(nconc lfmt fullfmt
))))
157 (calc-change-mode 'calc-date-format
(nreverse fullfmt
) t
))))
160 (defun calc-hms-mode ()
163 (calc-change-mode 'calc-angle-mode
'hms
)
164 (message "Angles measured in degrees-minutes-seconds")))
167 (defun calc-now (arg)
169 (calc-date-zero-args "now" 'calcFunc-now arg
))
171 (defun calc-date-part (arg)
172 (interactive "NPart code (1-9 = Y,M,D,H,M,S,Wd,Yd,Hms): ")
173 (if (or (< arg
1) (> arg
9))
174 (error "Part code out of range"))
177 (nth arg
'(nil "year" "mnth" "day" "hour" "minu"
178 "sec" "wday" "yday" "hmst"))
179 (list (nth arg
'(nil calcFunc-year calcFunc-month
180 calcFunc-day calcFunc-hour
181 calcFunc-minute calcFunc-second
182 calcFunc-weekday calcFunc-yearday
186 (defun calc-date (arg)
188 (if (or (< arg
1) (> arg
6))
189 (error "Between one and six arguments are allowed"))
191 (calc-enter-result arg
"date" (cons 'calcFunc-date
(calc-top-list-n arg
)))))
193 (defun calc-julian (arg)
195 (calc-date-one-arg "juln" 'calcFunc-julian arg
))
197 (defun calc-unix-time (arg)
199 (calc-date-one-arg "unix" 'calcFunc-unixtime arg
))
201 (defun calc-time-zone (arg)
203 (calc-date-zero-args "zone" 'calcFunc-tzone arg
))
205 (defun calc-convert-time-zones (old &optional new
)
206 (interactive "sFrom time zone: ")
209 (calc-enter-result 3 "tzcv" (cons 'calcFunc-tzconv
(calc-top-list-n 3)))
210 (if (equal old
"") (setq old
"local"))
212 (setq new
(read-string (concat "From time zone: " old
214 (if (stringp old
) (setq old
(math-read-expr old
)))
215 (if (eq (car-safe old
) 'error
)
216 (error "Error in expression: %S" (nth 1 old
)))
217 (if (equal new
"") (setq new
"local"))
218 (if (stringp new
) (setq new
(math-read-expr new
)))
219 (if (eq (car-safe new
) 'error
)
220 (error "Error in expression: %S" (nth 1 new
)))
221 (calc-enter-result 1 "tzcv" (list 'calcFunc-tzconv
222 (calc-top-n 1) old new
)))))
224 (defun calc-new-week (arg)
226 (calc-date-one-arg "nwwk" 'calcFunc-newweek arg
))
228 (defun calc-new-month (arg)
230 (calc-date-one-arg "nwmn" 'calcFunc-newmonth arg
))
232 (defun calc-new-year (arg)
234 (calc-date-one-arg "nwyr" 'calcFunc-newyear arg
))
236 (defun calc-inc-month (arg)
238 (calc-date-one-arg "incm" 'calcFunc-incmonth arg
))
240 (defun calc-business-days-plus (arg)
243 (calc-binary-op "bus+" 'calcFunc-badd arg
)))
245 (defun calc-business-days-minus (arg)
248 (calc-binary-op "bus-" 'calcFunc-bsub arg
)))
250 (defun calc-date-zero-args (prefix func arg
)
253 (calc-enter-result 1 prefix
(list func
(calc-top-n 1)))
254 (calc-enter-result 0 prefix
(if arg
255 (list func
(prefix-numeric-value arg
))
258 (defun calc-date-one-arg (prefix func arg
)
261 (calc-enter-result 2 prefix
(cons func
(calc-top-list-n 2)))
262 (calc-enter-result 1 prefix
(if arg
263 (list func
(calc-top-n 1)
264 (prefix-numeric-value arg
))
265 (list func
(calc-top-n 1)))))))
268 ;;;; Hours-minutes-seconds forms.
270 (defun math-normalize-hms (a)
271 (let ((h (math-normalize (nth 1 a
)))
272 (m (math-normalize (nth 2 a
)))
273 (s (let ((calc-internal-prec (max (- calc-internal-prec
4) 3)))
274 (math-normalize (nth 3 a
)))))
278 (setq s
(math-add s -
60)
281 (setq m
(math-add m -
60)
283 (if (not (Math-lessp -
60 s
))
284 (setq s
(math-add s
60)
286 (if (not (Math-lessp -
60 m
))
287 (setq m
(math-add m
60)
290 (setq s
(math-add s
60)
293 (setq m
(math-add m
60)
295 (if (not (Math-lessp s
60))
296 (setq s
(math-add s -
60)
298 (if (not (Math-lessp m
60))
299 (setq m
(math-add m -
60)
301 (if (and (eq (car-safe s
) 'float
)
302 (<= (+ (math-numdigs (nth 1 s
)) (nth 2 s
))
303 (- 2 calc-internal-prec
)))
307 ;;; Convert A from ANG or current angular mode to HMS format.
308 (defun math-to-hms (a &optional ang
) ; [X R] [Public]
309 (cond ((eq (car-safe a
) 'hms
) a
)
310 ((eq (car-safe a
) 'sdev
)
311 (math-make-sdev (math-to-hms (nth 1 a
))
312 (math-to-hms (nth 2 a
))))
313 ((not (Math-numberp a
))
314 (list 'calcFunc-hms a
))
316 (math-neg (math-to-hms (math-neg a
) ang
)))
317 ((eq (or ang calc-angle-mode
) 'rad
)
318 (math-to-hms (math-div a
(math-pi-over-180)) 'deg
))
319 ((memq (car-safe a
) '(cplx polar
)) a
)
321 ;(setq a (let ((calc-internal-prec (max (1- calc-internal-prec) 3)))
322 ; (math-normalize a)))
324 (let* ((b (math-mul a
3600))
325 (hm (math-trunc (math-div b
60)))
326 (hmd (math-idivmod hm
60)))
330 (math-sub b
(math-mul hm
60))))))))
331 (defun calcFunc-hms (h &optional m s
)
332 (or (Math-realp h
) (math-reject-arg h
'realp
))
334 (or (Math-realp m
) (math-reject-arg m
'realp
))
336 (or (Math-realp s
) (math-reject-arg s
'realp
))
337 (if (and (not (Math-lessp m
0)) (Math-lessp m
60)
338 (not (Math-lessp s
0)) (Math-lessp s
60))
339 (math-add (math-to-hms h
)
341 (math-to-hms (math-add h
342 (math-add (math-div (or m
0) 60)
343 (math-div (or s
0) 3600)))
346 ;;; Convert A from HMS format to ANG or current angular mode.
347 (defun math-from-hms (a &optional ang
) ; [R X] [Public]
348 (cond ((not (eq (car-safe a
) 'hms
))
351 (if (eq (car-safe a
) 'sdev
)
352 (math-make-sdev (math-from-hms (nth 1 a
) ang
)
353 (math-from-hms (nth 2 a
) ang
))
354 (if (eq (or ang calc-angle-mode
) 'rad
)
355 (list 'calcFunc-rad a
)
356 (list 'calcFunc-deg a
)))))
358 (math-neg (math-from-hms (math-neg a
) ang
)))
359 ((eq (or ang calc-angle-mode
) 'rad
)
360 (math-mul (math-from-hms a
'deg
) (math-pi-over-180)))
362 (math-add (math-div (math-add (math-div (nth 3 a
)
371 ;;; Some of these functions are adapted from Edward Reingold's "calendar.el".
372 ;;; These versions are rewritten to use arbitrary-size integers.
373 ;;; The Julian calendar is used up to 9/2/1752, after which the Gregorian
374 ;;; calendar is used; the first day after 9/2/1752 is 9/14/1752.
376 ;;; A numerical date is the number of days since midnight on
377 ;;; the morning of January 1, 1 A.D. If the date is a non-integer,
378 ;;; it represents a specific date and time.
379 ;;; A "dt" is a list of the form, (year month day), corresponding to
380 ;;; an integer code, or (year month day hour minute second), corresponding
381 ;;; to a non-integer code.
383 (defun math-date-to-dt (value)
384 (if (eq (car-safe value
) 'date
)
385 (setq value
(nth 1 value
)))
386 (or (math-realp value
)
387 (math-reject-arg value
'datep
))
388 (let* ((parts (math-date-parts value
))
393 (year (math-quotient (math-add date
(if (Math-lessp date
711859)
394 365 ; for speed, we take
395 -
108)) ; >1950 as a special case
396 (if (math-negp value
) 366 365)))
397 ; this result may be an overestimate
399 (while (Math-lessp date
(setq temp
(math-absolute-from-date year
1 1)))
400 (setq year
(math-add year -
1)))
401 (if (eq year
0) (setq year -
1))
402 (setq date
(1+ (math-sub date temp
)))
403 (and (eq year
1752) (>= date
247)
404 (setq date
(+ date
11)))
405 (setq temp
(if (math-leap-year-p year
)
406 [1 32 61 92 122 153 183 214 245 275 306 336 999]
407 [1 32 60 91 121 152 182 213 244 274 305 335 999]))
408 (while (>= date
(aref temp month
))
409 (setq month
(1+ month
)))
410 (setq day
(1+ (- date
(aref temp
(1- month
)))))
411 (if (math-integerp value
)
412 (list year month day
)
416 (math-add (% time
60) (nth 2 parts
))))))
418 (defun math-dt-to-date (dt)
419 (or (integerp (nth 1 dt
))
420 (math-reject-arg (nth 1 dt
) 'fixnump
))
421 (if (or (< (nth 1 dt
) 1) (> (nth 1 dt
) 12))
422 (math-reject-arg (nth 1 dt
) "Month value is out of range"))
423 (or (integerp (nth 2 dt
))
424 (math-reject-arg (nth 2 dt
) 'fixnump
))
425 (if (or (< (nth 2 dt
) 1) (> (nth 2 dt
) 31))
426 (math-reject-arg (nth 2 dt
) "Day value is out of range"))
427 (let ((date (math-absolute-from-date (car dt
) (nth 1 dt
) (nth 2 dt
))))
429 (math-add (math-float date
)
430 (math-div (math-add (+ (* (nth 3 dt
) 3600)
436 (defun math-date-parts (value &optional offset
)
437 (let* ((date (math-floor value
))
438 (time (math-round (math-mul (math-sub value
(or offset date
)) 86400)
439 (and (> calc-internal-prec
12)
440 (- calc-internal-prec
12))))
441 (ftime (math-floor time
)))
444 (math-sub time ftime
))))
447 (defun math-this-year ()
448 (string-to-number (substring (current-time-string) -
4)))
450 (defun math-leap-year-p (year)
451 (if (Math-lessp year
1752)
453 (= (math-imod (math-neg year
) 4) 1)
454 (= (math-imod year
4) 0))
455 (setq year
(math-imod year
400))
456 (or (and (= (% year
4) 0) (/= (% year
100) 0))
459 (defun math-days-in-month (year month
)
460 (if (and (= month
2) (math-leap-year-p year
))
462 (aref [31 28 31 30 31 30 31 31 30 31 30 31] (1- month
))))
464 (defun math-day-number (year month day
)
465 (let ((day-of-year (+ day
(* 31 (1- month
)))))
468 (setq day-of-year
(- day-of-year
(/ (+ 23 (* 4 month
)) 10)))
469 (if (math-leap-year-p year
)
470 (setq day-of-year
(1+ day-of-year
)))))
473 (and (= month
9) (>= day
14)))
474 (setq day-of-year
(- day-of-year
11)))
477 (defun math-absolute-from-date (year month day
)
478 (if (eq year
0) (setq year -
1))
479 (let ((yearm1 (math-sub year
1)))
480 (math-sub (math-add (math-day-number year month day
)
481 (math-add (math-mul 365 yearm1
)
483 (math-quotient yearm1
4)
485 (math-quotient (math-sub 3 year
)
487 (if (or (Math-lessp year
1753)
488 (and (eq year
1752) (<= month
9)))
490 (let ((correction (math-mul (math-quotient yearm1
100) 3)))
491 (let ((res (math-idivmod correction
4)))
492 (math-add (if (= (cdr res
) 0)
498 ;;; It is safe to redefine these in your .emacs file to use a different
501 (defvar math-long-weekday-names
'( "Sunday" "Monday" "Tuesday" "Wednesday"
502 "Thursday" "Friday" "Saturday" ))
503 (defvar math-short-weekday-names
'( "Sun" "Mon" "Tue" "Wed"
506 (defvar math-long-month-names
'( "January" "February" "March" "April"
507 "May" "June" "July" "August"
508 "September" "October" "November" "December" ))
509 (defvar math-short-month-names
'( "Jan" "Feb" "Mar" "Apr" "May" "Jun"
510 "Jul" "Aug" "Sep" "Oct" "Nov" "Dec" ))
513 (defvar math-format-date-cache nil
)
515 ;; The variables math-fd-date, math-fd-dt, math-fd-year,
516 ;; math-fd-month, math-fd-day, math-fd-weekday, math-fd-hour,
517 ;; math-fd-minute, math-fd-second, math-fd-bc-flag are local
518 ;; to math-format-date, but are used by math-format-date-part,
519 ;; which is called by math-format-date.
520 (defvar math-fd-date
)
522 (defvar math-fd-year
)
523 (defvar math-fd-month
)
525 (defvar math-fd-weekday
)
526 (defvar math-fd-hour
)
527 (defvar math-fd-minute
)
528 (defvar math-fd-second
)
529 (defvar math-fd-bc-flag
)
531 (defun math-format-date (math-fd-date)
532 (if (eq (car-safe math-fd-date
) 'date
)
533 (setq math-fd-date
(nth 1 math-fd-date
)))
534 (let ((entry (list math-fd-date calc-internal-prec calc-date-format
)))
535 (or (cdr (assoc entry math-format-date-cache
))
536 (let* ((math-fd-dt nil
)
537 (calc-group-digits nil
)
538 (calc-leading-zeros nil
)
539 (calc-number-radix 10)
540 (calc-twos-complement-mode nil
)
541 math-fd-year math-fd-month math-fd-day math-fd-weekday
542 math-fd-hour math-fd-minute math-fd-second
543 (math-fd-bc-flag nil
)
544 (fmt (apply 'concat
(mapcar 'math-format-date-part
546 (setq math-format-date-cache
(cons (cons entry fmt
)
547 math-format-date-cache
))
548 (and (setq math-fd-dt
(nthcdr 10 math-format-date-cache
))
549 (setcdr math-fd-dt nil
))
552 (defconst math-julian-date-beginning
'(float 17214235 -
1)
553 "The beginning of the Julian calendar,
554 as measured in the number of days before January 1 of the year 1AD.")
556 (defconst math-julian-date-beginning-int
1721424
557 "The beginning of the Julian calendar,
558 as measured in the integer number of days before January 1 of the year 1AD.")
560 (defun math-format-date-part (x)
564 (if (math-integerp math-fd-date
)
566 (apply 'concat
(mapcar 'math-format-date-part x
))))
570 (math-format-number math-fd-date
))
572 (math-format-number (math-floor math-fd-date
)))
575 (math-add math-fd-date math-julian-date-beginning
)))
577 (math-format-number (math-add
578 (math-floor math-fd-date
)
579 math-julian-date-beginning-int
)))
581 (math-format-number (nth 1 (math-date-parts math-fd-date
719164))))
585 (setq math-fd-dt
(math-date-to-dt math-fd-date
)
586 math-fd-year
(car math-fd-dt
)
587 math-fd-month
(nth 1 math-fd-dt
)
588 math-fd-day
(nth 2 math-fd-dt
)
589 math-fd-weekday
(math-mod
590 (math-add (math-floor math-fd-date
) 6) 7)
591 math-fd-hour
(nth 3 math-fd-dt
)
592 math-fd-minute
(nth 4 math-fd-dt
)
593 math-fd-second
(nth 5 math-fd-dt
))
594 (and (memq 'b calc-date-format
)
595 (math-negp math-fd-year
)
596 (setq math-fd-year
(math-neg math-fd-year
)
597 math-fd-bc-flag t
))))
599 (if (and (integerp math-fd-year
) (> math-fd-year
1940) (< math-fd-year
2040))
600 (format (cond ((eq x
'YY
) "%02d")
603 (% math-fd-year
100))
604 (if (and (natnump math-fd-year
) (< math-fd-year
100))
605 (format "+%d" math-fd-year
)
606 (math-format-number math-fd-year
))))
608 (math-format-number math-fd-year
))
610 (if (and (natnump math-fd-year
) (< math-fd-year
100))
611 (format "+%d" math-fd-year
)
612 (math-format-number math-fd-year
)))
615 (and (not math-fd-bc-flag
) "ad"))
617 (and (not math-fd-bc-flag
) "AD"))
619 (and (not math-fd-bc-flag
) "ad "))
621 (and (not math-fd-bc-flag
) "AD "))
623 (and (not math-fd-bc-flag
) "a.d."))
625 (and (not math-fd-bc-flag
) "A.D."))
627 (and math-fd-bc-flag
"bc"))
629 (and math-fd-bc-flag
"BC"))
631 (and math-fd-bc-flag
" bc"))
633 (and math-fd-bc-flag
" BC"))
635 (and math-fd-bc-flag
"b.c."))
637 (and math-fd-bc-flag
"B.C."))
639 (format "%d" math-fd-month
))
641 (format "%02d" math-fd-month
))
643 (format "%2d" math-fd-month
))
645 (downcase (nth (1- math-fd-month
) math-short-month-names
)))
647 (nth (1- math-fd-month
) math-short-month-names
))
649 (upcase (nth (1- math-fd-month
) math-short-month-names
)))
651 (nth (1- math-fd-month
) math-long-month-names
))
653 (upcase (nth (1- math-fd-month
) math-long-month-names
)))
655 (format "%d" math-fd-day
))
657 (format "%02d" math-fd-day
))
659 (format "%2d" math-fd-day
))
661 (format "%d" math-fd-weekday
))
663 (downcase (nth math-fd-weekday math-short-weekday-names
)))
665 (nth math-fd-weekday math-short-weekday-names
))
667 (upcase (nth math-fd-weekday math-short-weekday-names
)))
669 (nth math-fd-weekday math-long-weekday-names
))
671 (upcase (nth math-fd-weekday math-long-weekday-names
)))
673 (format "%d" (math-day-number math-fd-year math-fd-month math-fd-day
)))
675 (format "%03d" (math-day-number math-fd-year math-fd-month math-fd-day
)))
677 (format "%3d" (math-day-number math-fd-year math-fd-month math-fd-day
)))
679 (and math-fd-hour
(format "%d" math-fd-hour
)))
681 (and math-fd-hour
(format "%02d" math-fd-hour
)))
683 (and math-fd-hour
(format "%2d" math-fd-hour
)))
685 (and math-fd-hour
(format "%d" (1+ (%
(+ math-fd-hour
11) 12)))))
687 (and math-fd-hour
(format "%02d" (1+ (%
(+ math-fd-hour
11) 12)))))
689 (and math-fd-hour
(format "%2d" (1+ (%
(+ math-fd-hour
11) 12)))))
691 (and math-fd-hour
(if (< math-fd-hour
12) "a" "p")))
693 (and math-fd-hour
(if (< math-fd-hour
12) "A" "P")))
695 (and math-fd-hour
(if (< math-fd-hour
12) "am" "pm")))
697 (and math-fd-hour
(if (< math-fd-hour
12) "AM" "PM")))
699 (and math-fd-hour
(if (< math-fd-hour
12) "a.m." "p.m.")))
701 (and math-fd-hour
(if (< math-fd-hour
12) "A.M." "P.M.")))
703 (and math-fd-minute
(format "%d" math-fd-minute
)))
705 (and math-fd-minute
(format "%02d" math-fd-minute
)))
707 (and math-fd-minute
(format "%2d" math-fd-minute
)))
709 (and math-fd-second
(not (math-zerop math-fd-second
))
711 ((memq x
'(s ss bs SS BS
))
713 (not (and (memq x
'(SS BS
)) (math-zerop math-fd-second
)))
714 (if (integerp math-fd-second
)
715 (format (cond ((memq x
'(ss SS
)) "%02d")
716 ((memq x
'(bs BS
)) "%2d")
719 (concat (if (Math-lessp math-fd-second
10)
720 (cond ((memq x
'(ss SS
)) "0")
721 ((memq x
'(bs BS
)) " ")
724 (let ((calc-float-format
725 (list 'fix
(min (- 12 calc-internal-prec
)
727 (math-format-number math-fd-second
))))))))
729 ;; The variable math-pd-str is local to math-parse-date and
730 ;; math-parse-standard-date, but is used by math-parse-date-word,
731 ;; which is called by math-parse-date and math-parse-standard-date.
734 (defun math-parse-date (math-pd-str)
736 (or (math-parse-standard-date math-pd-str t
)
737 (math-parse-standard-date math-pd-str nil
)
738 (and (string-match "\\`[^-+/0-9a-zA-Z]*\\([-+]?[0-9]+\\.?[0-9]*\\([eE][-+]?[0-9]+\\)?\\)[^-+/0-9a-zA-Z]*\\'" math-pd-str
)
739 (list 'date
(math-read-number (math-match-substring math-pd-str
1))))
740 (let ((case-fold-search t
)
741 (year nil
) (month nil
) (day nil
) (weekday nil
)
742 (hour nil
) (minute nil
) (second nil
) (bc-flag nil
)
743 (a nil
) (b nil
) (c nil
) (bigyear nil
) temp
)
745 ;; Extract the time, if any.
746 (if (or (string-match "\\([0-9][0-9]?\\):\\([0-9][0-9]?\\)\\(:\\([0-9][0-9]?\\(\\.[0-9]+\\)?\\)\\)? *\\([ap]\\>\\|[ap]m\\|[ap]\\. *m\\.\\|noon\\|n\\>\\|midnight\\|mid\\>\\|m\\>\\)?" math-pd-str
)
747 (string-match "\\([0-9][0-9]?\\)\\(\\)\\(\\(\\(\\)\\)\\) *\\([ap]\\>\\|[ap]m\\|[ap]\\. *m\\.\\|noon\\|n\\>\\|midnight\\|mid\\>\\|m\\>\\)" math-pd-str
))
748 (let ((ampm (math-match-substring math-pd-str
6)))
749 (setq hour
(string-to-number (math-match-substring math-pd-str
1))
750 minute
(math-match-substring math-pd-str
2)
751 second
(math-match-substring math-pd-str
4)
752 math-pd-str
(concat (substring math-pd-str
0 (match-beginning 0))
753 (substring math-pd-str
(match-end 0))))
754 (if (equal minute
"")
756 (setq minute
(string-to-number minute
)))
757 (if (equal second
"")
759 (setq second
(math-read-number second
)))
762 (throw 'syntax
"Hour value out of range"))
763 (setq ampm
(upcase (aref ampm
0)))
764 (if (memq ampm
'(?N ?M
))
765 (if (and (= hour
12) (= minute
0) (eq second
0))
766 (if (eq ampm ?M
) (setq hour
0))
768 "Time must be 12:00:00 in this context"))
769 (if (or (= hour
0) (> hour
12))
770 (throw 'syntax
"Hour value out of range"))
771 (if (eq (= ampm ?A
) (= hour
12))
772 (setq hour
(%
(+ hour
12) 24)))))))
774 ;; Rewrite xx-yy-zz to xx/yy/zz to avoid seeing "-" as a minus sign.
775 (while (string-match "[0-9a-zA-Z]\\(-\\)[0-9a-zA-Z]" math-pd-str
)
777 (setq math-pd-str
(copy-sequence math-pd-str
))
778 (aset math-pd-str
(match-beginning 1) ?\
/)))
780 ;; Extract obvious month or weekday names.
781 (if (string-match "[a-zA-Z]" math-pd-str
)
783 (setq month
(math-parse-date-word math-long-month-names
))
784 (setq weekday
(math-parse-date-word math-long-weekday-names
))
785 (or month
(setq month
786 (math-parse-date-word math-short-month-names
)))
787 (or weekday
(math-parse-date-word math-short-weekday-names
))
789 (if (setq temp
(math-parse-date-word
790 '( "noon" "midnight" "mid" )))
791 (setq hour
(if (= temp
1) 12 0) minute
0 second
0)))
792 (or (math-parse-date-word '( "ad" "a.d." ))
793 (if (math-parse-date-word '( "bc" "b.c." ))
795 (if (string-match "[a-zA-Z]+" math-pd-str
)
796 (throw 'syntax
(format "Bad word in date: \"%s\""
797 (math-match-substring math-pd-str
0))))))
799 ;; If there is a huge number other than the year, ignore it.
800 (while (and (string-match "[-+]?0*[1-9][0-9][0-9][0-9][0-9]+" math-pd-str
)
801 (setq temp
(concat (substring math-pd-str
0 (match-beginning 0))
802 (substring math-pd-str
(match-end 0))))
804 "[4-9][0-9]\\|[0-9][0-9][0-9]\\|[-+][0-9]+[^-]*\\'" temp
))
805 (setq math-pd-str temp
))
807 ;; If there is a number with a sign or a large number, it is a year.
808 (if (or (string-match "\\([-+][0-9]+\\)[^-]*\\'" math-pd-str
)
809 (string-match "\\(0*[1-9][0-9][0-9]+\\)" math-pd-str
))
810 (setq year
(math-match-substring math-pd-str
1)
811 math-pd-str
(concat (substring math-pd-str
0 (match-beginning 1))
812 (substring math-pd-str
(match-end 1)))
813 year
(math-read-number year
)
816 ;; Collect remaining numbers.
818 (while (string-match "[0-9]+" math-pd-str temp
)
819 (and c
(throw 'syntax
"Too many numbers in date"))
820 (setq c
(string-to-number (math-match-substring math-pd-str
0)))
821 (or b
(setq b c c nil
))
822 (or a
(setq a b b nil
))
823 (setq temp
(match-end 0)))
825 ;; Check that we have the right amount of information.
826 (setq temp
(+ (if year
1 0) (if month
1 0) (if day
1 0)
827 (if a
1 0) (if b
1 0) (if c
1 0)))
829 (throw 'syntax
"Too many numbers in date")
830 (if (or (< temp
2) (and year
(= temp
2)))
831 (throw 'syntax
"Not enough numbers in date")
832 (if (= temp
2) ; if year omitted, assume current year
833 (setq year
(math-this-year)))))
835 ;; A large number must be a year.
837 (if (and a
(or (> a
31) (< a
1)))
838 (setq year a a b b c c nil
)
839 (if (and b
(or (> b
31) (< b
1)))
840 (setq year b b c c nil
)
841 (if (and c
(or (> c
31) (< c
1)))
842 (setq year c c nil
)))))
844 ;; A medium-large number must be a day.
847 (setq day a a b b c c nil
)
849 (setq day b b c c nil
)
851 (setq day c c nil
)))))
853 ;; We may know enough to sort it out now.
855 (or month
(setq month a
))
859 ;; Interpret order of numbers as same as for display format.
860 (setq temp calc-date-format
)
862 (cond ((not (symbolp (car temp
))))
863 ((memq (car temp
) '(Y YY BY YYY YYYY
))
864 (or year
(setq year a a b b c
)))
865 ((memq (car temp
) '(M MM BM mmm Mmm Mmmm MMM MMMM
))
866 (or month
(setq month a a b b c
)))
867 ((memq (car temp
) '(D DD BD
))
868 (or day
(setq day a a b b c
))))
869 (setq temp
(cdr temp
)))
871 ;; If display format was not complete, assume American style.
872 (or month
(setq month a a b b c
))
873 (or day
(setq day a a b b c
))
874 (or year
(setq year a a b b c
))))
877 (setq year
(math-neg (math-abs year
))))
879 (math-parse-date-validate year bigyear month day
880 hour minute second
)))))
882 (defun math-parse-date-validate (year bigyear month day hour minute second
)
883 (and (not bigyear
) (natnump year
) (< year
100)
884 (setq year
(+ year
(if (< year
40) 2000 1900))))
886 (throw 'syntax
"Year value is out of range"))
887 (if (or (< month
1) (> month
12))
888 (throw 'syntax
"Month value is out of range"))
889 (if (or (< day
1) (> day
(math-days-in-month year month
)))
890 (throw 'syntax
"Day value is out of range"))
893 (if (or (< hour
0) (> hour
23))
894 (throw 'syntax
"Hour value is out of range"))
895 (if (or (< minute
0) (> minute
59))
896 (throw 'syntax
"Minute value is out of range"))
897 (if (or (math-negp second
) (not (Math-lessp second
60)))
898 (throw 'syntax
"Seconds value is out of range"))))
899 (list 'date
(math-dt-to-date (append (list year month day
)
900 (and hour
(list hour minute second
))))))
902 (defun math-parse-date-word (names &optional front
)
904 (while (and names
(not (string-match (if (equal (car names
) "Sep")
906 (regexp-quote (car names
)))
908 (setq names
(cdr names
)
911 (or (not front
) (= (match-beginning 0) 0))
913 (setq math-pd-str
(concat (substring math-pd-str
0 (match-beginning 0))
915 (substring math-pd-str
(match-end 0))))
918 (defun math-parse-standard-date (math-pd-str with-time
)
919 (let ((case-fold-search t
)
921 (fmt calc-date-format
) this next
(gnext nil
)
922 (year nil
) (month nil
) (day nil
) (bigyear nil
) (yearday nil
)
923 (hour nil
) (minute nil
) (second nil
) (bc-flag nil
))
924 (while (and fmt okay
)
926 fmt
(setq fmt
(or (cdr fmt
)
931 (if (consp next
) (setq next
(car next
)))
932 (or (cond ((listp this
)
938 (if (and (<= (length this
) (length math-pd-str
))
940 (substring math-pd-str
0 (length this
))))
941 (setq math-pd-str
(substring math-pd-str
(length this
)))))
944 ((memq this
'(n N j J
))
945 (and (string-match "\\`[-+]?[0-9.]+\\([eE][-+]?[0-9]+\\)?" math-pd-str
)
946 (setq num
(math-match-substring math-pd-str
0)
947 math-pd-str
(substring math-pd-str
(match-end 0))
948 num
(math-date-to-dt (math-read-number num
))
950 (if (memq this
'(n N
))
954 math-julian-date-beginning-int
955 math-julian-date-beginning
)))
956 hour
(or (nth 3 num
) hour
)
957 minute
(or (nth 4 num
) minute
)
958 second
(or (nth 5 num
) second
)
963 (and (string-match "\\`[-+]?[0-9]+" math-pd-str
)
964 (setq num
(math-match-substring math-pd-str
0)
965 math-pd-str
(substring math-pd-str
(match-end 0))
968 (math-div (math-read-number num
)
976 ((memq this
'(mmm Mmm MMM
))
977 (setq month
(math-parse-date-word math-short-month-names t
)))
978 ((memq this
'(Mmmm MMMM
))
979 (setq month
(math-parse-date-word math-long-month-names t
)))
980 ((memq this
'(www Www WWW
))
981 (math-parse-date-word math-short-weekday-names t
))
982 ((memq this
'(Wwww WWWW
))
983 (math-parse-date-word math-long-weekday-names t
))
985 (if (string-match "\\`a" math-pd-str
)
986 (setq hour
(if (= hour
12) 0 hour
)
987 math-pd-str
(substring math-pd-str
1))
988 (if (string-match "\\`p" math-pd-str
)
989 (setq hour
(if (= hour
12) 12 (%
(+ hour
12) 24))
990 math-pd-str
(substring math-pd-str
1)))))
991 ((memq this
'(pp PP pppp PPPP
))
992 (if (string-match "\\`am\\|a\\.m\\." math-pd-str
)
993 (setq hour
(if (= hour
12) 0 hour
)
994 math-pd-str
(substring math-pd-str
(match-end 0)))
995 (if (string-match "\\`pm\\|p\\.m\\." math-pd-str
)
996 (setq hour
(if (= hour
12) 12 (%
(+ hour
12) 24))
997 math-pd-str
(substring math-pd-str
(match-end 0))))))
998 ((memq this
'(Y YY BY YYY YYYY
))
999 (and (if (memq next
'(MM DD ddd hh HH mm ss SS
))
1000 (if (memq this
'(Y YY BYY
))
1001 (string-match "\\` *[0-9][0-9]" math-pd-str
)
1002 (string-match "\\`[0-9][0-9][0-9][0-9]" math-pd-str
))
1003 (string-match "\\`[-+]?[0-9]+" math-pd-str
))
1004 (setq year
(math-match-substring math-pd-str
0)
1005 bigyear
(or (eq this
'YYY
)
1006 (memq (aref math-pd-str
0) '(?\
+ ?\-
)))
1007 math-pd-str
(substring math-pd-str
(match-end 0))
1008 year
(math-read-number year
))))
1011 ((memq this
'(aa AA aaaa AAAA
))
1012 (if (string-match "\\` *\\(ad\\|a\\.d\\.\\)" math-pd-str
)
1013 (setq math-pd-str
(substring math-pd-str
(match-end 0)))))
1014 ((memq this
'(aaa AAA
))
1015 (if (string-match "\\` *ad *" math-pd-str
)
1016 (setq math-pd-str
(substring math-pd-str
(match-end 0)))))
1017 ((memq this
'(bb BB bbb BBB bbbb BBBB
))
1018 (if (string-match "\\` *\\(bc\\|b\\.c\\.\\)" math-pd-str
)
1019 (setq math-pd-str
(substring math-pd-str
(match-end 0))
1021 ((memq this
'(s ss bs SS BS
))
1022 (and (if (memq next
'(YY YYYY MM DD hh HH mm
))
1023 (string-match "\\` *[0-9][0-9]\\(\\.[0-9]+\\)?" math-pd-str
)
1024 (string-match "\\` *[0-9][0-9]?\\(\\.[0-9]+\\)?" math-pd-str
))
1025 (setq second
(math-match-substring math-pd-str
0)
1026 math-pd-str
(substring math-pd-str
(match-end 0))
1027 second
(math-read-number second
))))
1029 (if (string-match "\\`:[0-9][0-9]" math-pd-str
)
1030 (setq math-pd-str
(substring math-pd-str
1))
1032 ((or (not (if (and (memq this
'(ddd MM DD hh HH mm
))
1033 (memq next
'(YY YYYY MM DD ddd
1036 (string-match "\\` *[0-9][0-9][0-9]" math-pd-str
)
1037 (string-match "\\` *[0-9][0-9]" math-pd-str
))
1038 (string-match "\\` *[0-9]+" math-pd-str
)))
1039 (and (setq num
(string-to-number
1040 (math-match-substring math-pd-str
0))
1041 math-pd-str
(substring math-pd-str
(match-end 0)))
1045 (and (>= num
0) (< num
7)))
1046 ((memq this
'(d ddd bdd
))
1048 ((memq this
'(M MM BM
))
1050 ((memq this
'(D DD BD
))
1052 ((memq this
'(h hh bh H HH BH
))
1054 ((memq this
'(m mm bm
))
1060 (setq month
1 day
1)))
1061 (if (and okay
(equal math-pd-str
""))
1062 (and month day
(or (not (or hour minute second
))
1065 (or year
(setq year
(math-this-year)))
1066 (or second
(setq second
0))
1068 (setq year
(math-neg (math-abs year
))))
1069 (setq day
(math-parse-date-validate year bigyear month day
1070 hour minute second
))
1072 (setq day
(math-add day
(1- yearday
))))
1076 (defun calcFunc-now (&optional zone
)
1077 (let ((date (let ((calc-date-format nil
))
1078 (math-parse-date (current-time-string)))))
1081 (math-add date
(math-div (math-sub (calcFunc-tzone nil date
)
1082 (calcFunc-tzone zone date
))
1085 (calc-record-why "*Unable to interpret current date from system")
1086 (append (list 'calcFunc-now
) (and zone
(list zone
))))))
1088 (defun calcFunc-year (date)
1089 (car (math-date-to-dt date
)))
1091 (defun calcFunc-month (date)
1092 (nth 1 (math-date-to-dt date
)))
1094 (defun calcFunc-day (date)
1095 (nth 2 (math-date-to-dt date
)))
1097 (defun calcFunc-weekday (date)
1098 (if (eq (car-safe date
) 'date
)
1099 (setq date
(nth 1 date
)))
1100 (or (math-realp date
)
1101 (math-reject-arg date
'datep
))
1102 (math-mod (math-add (math-floor date
) 6) 7))
1104 (defun calcFunc-yearday (date)
1105 (let ((dt (math-date-to-dt date
)))
1106 (math-day-number (car dt
) (nth 1 dt
) (nth 2 dt
))))
1108 (defun calcFunc-hour (date)
1109 (if (eq (car-safe date
) 'hms
)
1111 (or (nth 3 (math-date-to-dt date
)) 0)))
1113 (defun calcFunc-minute (date)
1114 (if (eq (car-safe date
) 'hms
)
1116 (or (nth 4 (math-date-to-dt date
)) 0)))
1118 (defun calcFunc-second (date)
1119 (if (eq (car-safe date
) 'hms
)
1121 (or (nth 5 (math-date-to-dt date
)) 0)))
1123 (defun calcFunc-time (date)
1124 (let ((dt (math-date-to-dt date
)))
1126 (cons 'hms
(nthcdr 3 dt
))
1127 (list 'hms
0 0 0))))
1129 (defun calcFunc-date (date &optional month day hour minute second
)
1130 (and (math-messy-integerp month
) (setq month
(math-trunc month
)))
1131 (and month
(not (integerp month
)) (math-reject-arg month
'fixnump
))
1132 (and (math-messy-integerp day
) (setq day
(math-trunc day
)))
1133 (and day
(not (integerp day
)) (math-reject-arg day
'fixnump
))
1134 (if (and (eq (car-safe hour
) 'hms
) (not minute
))
1135 (setq second
(nth 3 hour
)
1138 (and (math-messy-integerp hour
) (setq hour
(math-trunc hour
)))
1139 (and hour
(not (integerp hour
)) (math-reject-arg hour
'fixnump
))
1140 (and (math-messy-integerp minute
) (setq minute
(math-trunc minute
)))
1141 (and minute
(not (integerp minute
)) (math-reject-arg minute
'fixnump
))
1142 (and (math-messy-integerp second
) (setq second
(math-trunc second
)))
1143 (and second
(not (math-realp second
)) (math-reject-arg second
'realp
))
1146 (and (math-messy-integerp date
) (setq date
(math-trunc date
)))
1147 (and date
(not (math-integerp date
)) (math-reject-arg date
'integerp
))
1150 (list 'date
(math-dt-to-date (list date month day hour
1153 (list 'date
(math-dt-to-date (list date month day
))))
1154 (list 'date
(math-dt-to-date (list (math-this-year) date month
)))))
1155 (if (math-realp date
)
1157 (if (eq (car date
) 'date
)
1159 (math-reject-arg date
'datep
)))))
1161 (defun calcFunc-julian (date &optional zone
)
1162 (if (math-realp date
)
1163 (list 'date
(if (math-integerp date
)
1164 (math-sub date math-julian-date-beginning-int
)
1165 (setq date
(math-sub date math-julian-date-beginning
))
1166 (math-sub date
(math-div (calcFunc-tzone zone date
)
1168 (if (eq (car date
) 'date
)
1169 (math-add (nth 1 date
) (if (math-integerp (nth 1 date
))
1170 math-julian-date-beginning-int
1171 (math-add math-julian-date-beginning
1172 (math-div (calcFunc-tzone zone date
)
1174 (math-reject-arg date
'datep
))))
1176 (defun calcFunc-unixtime (date &optional zone
)
1177 (if (math-realp date
)
1179 (setq date
(math-add 719164 (math-div date
'(float 864 2))))
1180 (list 'date
(math-sub date
(math-div (calcFunc-tzone zone date
)
1182 (if (eq (car date
) 'date
)
1183 (math-add (nth 1 (math-date-parts (nth 1 date
) 719164))
1184 (calcFunc-tzone zone date
))
1185 (math-reject-arg date
'datep
))))
1188 ;;; Note: Longer names must appear before shorter names which are
1189 ;;; substrings of them.
1190 (defvar math-tzone-names
1192 ( "MEGT" -
1 "MET" "METDST" ) ; Middle Europe
1193 ( "METDST" -
1 -
1 ) ( "MET" -
1 0 )
1194 ( "MEGZ" -
1 "MEZ" "MESZ" ) ( "MEZ" -
1 0 ) ( "MESZ" -
1 -
1 )
1195 ( "WEGT" 0 "WET" "WETDST" ) ; Western Europe
1196 ( "WETDST" 0 -
1 ) ( "WET" 0 0 )
1197 ( "BGT" 0 "GMT" "BST" ) ( "GMT" 0 0 ) ( "BST" 0 -
1 ) ; Britain
1198 ( "NGT" (float 35 -
1) "NST" "NDT" ) ; Newfoundland
1199 ( "NST" (float 35 -
1) 0 ) ( "NDT" (float 35 -
1) -
1 )
1200 ( "AGT" 4 "AST" "ADT" ) ( "AST" 4 0 ) ( "ADT" 4 -
1 ) ; Atlantic
1201 ( "EGT" 5 "EST" "EDT" ) ( "EST" 5 0 ) ( "EDT" 5 -
1 ) ; Eastern
1202 ( "CGT" 6 "CST" "CDT" ) ( "CST" 6 0 ) ( "CDT" 6 -
1 ) ; Central
1203 ( "MGT" 7 "MST" "MDT" ) ( "MST" 7 0 ) ( "MDT" 7 -
1 ) ; Mountain
1204 ( "PGT" 8 "PST" "PDT" ) ( "PST" 8 0 ) ( "PDT" 8 -
1 ) ; Pacific
1205 ( "YGT" 9 "YST" "YDT" ) ( "YST" 9 0 ) ( "YDT" 9 -
1 ) ; Yukon
1207 "No doc yet. See calc manual for now. ")
1209 (defvar var-TimeZone nil
)
1212 (defvar calendar-current-time-zone-cache
)
1214 (defvar math-calendar-tzinfo
1216 "Information about the timezone, retrieved from the calendar.")
1218 (defun math-get-calendar-tzinfo ()
1219 "Get information about the timezone from the calendar.
1220 The result should be a list of two items about the current time zone:
1221 first, the number of seconds difference from GMT
1222 second, the number of seconds offset for daylight savings."
1223 (if math-calendar-tzinfo
1224 math-calendar-tzinfo
1226 (let ((tzinfo (progn
1227 (calendar-current-time-zone)
1228 calendar-current-time-zone-cache
)))
1229 (setq math-calendar-tzinfo
1230 (list (* 60 (abs (nth 0 tzinfo
)))
1231 (* 60 (nth 1 tzinfo
)))))))
1233 (defun calcFunc-tzone (&optional zone date
)
1235 (cond ((math-realp zone
)
1236 (math-round (math-mul zone
3600)))
1237 ((eq (car zone
) 'hms
)
1238 (math-round (math-mul (math-from-hms zone
'deg
) 3600)))
1240 (math-add (calcFunc-tzone (nth 1 zone
) date
)
1241 (calcFunc-tzone (nth 2 zone
) date
)))
1243 (math-sub (calcFunc-tzone (nth 1 zone
) date
)
1244 (calcFunc-tzone (nth 2 zone
) date
)))
1245 ((eq (car zone
) 'var
)
1246 (let ((name (upcase (symbol-name (nth 1 zone
))))
1248 (if (setq found
(assoc name math-tzone-names
))
1249 (calcFunc-tzone (math-add (nth 1 found
)
1250 (if (integerp (nth 2 found
))
1253 (math-daylight-savings-adjust
1257 (if (equal name
"LOCAL")
1258 (calcFunc-tzone nil date
)
1259 (math-reject-arg zone
"*Unrecognized time zone name")))))
1260 (t (math-reject-arg zone
"*Expected a time zone")))
1261 (if (calc-var-value 'var-TimeZone
)
1262 (calcFunc-tzone (calc-var-value 'var-TimeZone
) date
)
1263 (let ((tzinfo (math-get-calendar-tzinfo)))
1265 (* (math-cal-daylight-savings-adjust date
) (nth 1 tzinfo
)))))))
1267 (defvar math-daylight-savings-hook
'math-std-daylight-savings
)
1269 (defun math-daylight-savings-adjust (date zone
&optional dt
)
1270 (or date
(setq date
(nth 1 (calcFunc-now))))
1272 (if (eq (car-safe date
) 'date
)
1275 (if (and date
(math-realp date
))
1276 (let ((zadj (assoc zone math-tzone-names
)))
1277 (if zadj
(setq bump -
1
1278 date
(math-sub date
(math-div (nth 1 zadj
)
1280 (math-reject-arg date
'datep
)))
1281 (setq date
(math-float date
))
1282 (or dt
(setq dt
(math-date-to-dt date
)))
1283 (and math-daylight-savings-hook
1284 (funcall math-daylight-savings-hook date dt zone bump
))))
1286 ;;; Based on part of dst-adjust-time in cal-dst.el
1287 ;;; For calcFunc-dst, when zone=nil
1288 (defun math-cal-daylight-savings-adjust (date)
1289 "Return -1 if DATE is using daylight saving, 0 otherwise."
1291 (unless date
(setq date
(calcFunc-now)))
1292 (let* ((dt (math-date-to-dt date
))
1297 (+ (nth 3 dt
) (/ (nth 4 dt
) 60.0)))
1302 (calendar-absolute-from-gregorian
1303 (list (nth 1 dt
) (nth 2 dt
) (nth 0 dt
)))
1304 (/ (round (* 60 time
)) 60.0 24.0))))
1305 (if (dst-in-effect rounded-abs-date
)
1309 (defun calcFunc-dsadj (date &optional zone
)
1311 (or (eq (car-safe zone
) 'var
)
1312 (math-reject-arg zone
"*Time zone variable expected"))
1313 (setq zone
(calc-var-value 'var-TimeZone
)))
1316 (setq zone
(and (eq (car-safe zone
) 'var
)
1317 (upcase (symbol-name (nth 1 zone
)))))
1318 (let ((zadj (assoc zone math-tzone-names
)))
1319 (or zadj
(math-reject-arg zone
"*Unrecognized time zone name"))
1320 (if (integerp (nth 2 zadj
))
1322 (math-daylight-savings-adjust date zone
))))
1323 (math-cal-daylight-savings-adjust date
)))
1325 ;; (defun calcFunc-dsadj (date &optional zone)
1327 ;; (or (eq (car-safe zone) 'var)
1328 ;; (math-reject-arg zone "*Time zone variable expected"))
1329 ;; (setq zone (or (calc-var-value 'var-TimeZone)
1332 ;; (calc-var-value 'var-TimeZone)))))
1333 ;; (setq zone (and (eq (car-safe zone) 'var)
1334 ;; (upcase (symbol-name (nth 1 zone)))))
1335 ;; (let ((zadj (assoc zone math-tzone-names)))
1336 ;; (or zadj (math-reject-arg zone "*Unrecognized time zone name"))
1337 ;; (if (integerp (nth 2 zadj))
1339 ;; (math-daylight-savings-adjust date zone))))
1341 (defun calcFunc-tzconv (date z1 z2
)
1342 (if (math-realp date
)
1343 (nth 1 (calcFunc-tzconv (list 'date date
) z1 z2
))
1344 (calcFunc-unixtime (calcFunc-unixtime date z1
) z2
)))
1346 (defun math-std-daylight-savings (date dt zone bump
)
1347 "Standard North American daylight saving algorithm.
1348 Before 2007, this uses `math-std-daylight-savings-old', where
1349 daylight saving began on the first Sunday of April at 2 a.m.,
1350 and ended on the last Sunday of October at 2 a.m.
1351 As of 2007, this uses `math-std-daylight-savings-new', where
1352 daylight saving begins on the second Sunday of March at 2 a.m.,
1353 and ends on the first Sunday of November at 2 a.m."
1354 (if (< (car dt
) 2007)
1355 (math-std-daylight-savings-old date dt zone bump
)
1356 (math-std-daylight-savings-new date dt zone bump
)))
1358 (defun math-std-daylight-savings-new (date dt zone bump
)
1359 "Standard North American daylight saving algorithm as of 2007.
1360 This implements the rules for the U.S. and Canada.
1361 Daylight saving begins on the second Sunday of March at 2 a.m.,
1362 and ends on the first Sunday of November at 2 a.m."
1363 (cond ((< (nth 1 dt
) 3) 0)
1365 (let ((sunday (math-prev-weekday-in-month date dt
14 0)))
1366 (cond ((< (nth 2 dt
) sunday
) 0)
1367 ((= (nth 2 dt
) sunday
)
1368 (if (>= (nth 3 dt
) (+ 3 bump
)) -
1 0))
1370 ((< (nth 1 dt
) 11) -
1)
1372 (let ((sunday (math-prev-weekday-in-month date dt
7 0)))
1373 (cond ((< (nth 2 dt
) sunday
) -
1)
1374 ((= (nth 2 dt
) sunday
)
1375 (if (>= (nth 3 dt
) (+ 2 bump
)) 0 -
1))
1379 (defun math-std-daylight-savings-old (date dt zone bump
)
1380 "Standard North American daylight saving algorithm before 2007.
1381 This implements the rules for the U.S. and Canada.
1382 Daylight saving begins on the first Sunday of April at 2 a.m.,
1383 and ends on the last Sunday of October at 2 a.m."
1384 (cond ((< (nth 1 dt
) 4) 0)
1386 (let ((sunday (math-prev-weekday-in-month date dt
7 0)))
1387 (cond ((< (nth 2 dt
) sunday
) 0)
1388 ((= (nth 2 dt
) sunday
)
1389 (if (>= (nth 3 dt
) (+ 3 bump
)) -
1 0))
1391 ((< (nth 1 dt
) 10) -
1)
1393 (let ((sunday (math-prev-weekday-in-month date dt
31 0)))
1394 (cond ((< (nth 2 dt
) sunday
) -
1)
1395 ((= (nth 2 dt
) sunday
)
1396 (if (>= (nth 3 dt
) (+ 2 bump
)) 0 -
1))
1400 ;;; Compute the day (1-31) of the WDAY (0-6) on or preceding the given
1401 ;;; day of the given month.
1402 (defun math-prev-weekday-in-month (date dt day wday
)
1403 (or day
(setq day
(nth 2 dt
)))
1404 (if (> day
(math-days-in-month (car dt
) (nth 1 dt
)))
1405 (setq day
(math-days-in-month (car dt
) (nth 1 dt
))))
1406 (let ((zeroth (math-sub (math-floor date
) (nth 2 dt
))))
1407 (math-sub (nth 1 (calcFunc-newweek (math-add zeroth day
))) zeroth
)))
1409 (defun calcFunc-pwday (date &optional day weekday
)
1410 (if (eq (car-safe date
) 'date
)
1411 (setq date
(nth 1 date
)))
1412 (or (math-realp date
)
1413 (math-reject-arg date
'datep
))
1414 (if (math-messy-integerp day
) (setq day
(math-trunc day
)))
1415 (or (integerp day
) (math-reject-arg day
'fixnump
))
1416 (if (= day
0) (setq day
31))
1417 (and (or (< day
7) (> day
31)) (math-reject-arg day
'range
))
1418 (math-prev-weekday-in-month date
(math-date-to-dt date
) day
(or weekday
0)))
1421 (defun calcFunc-newweek (date &optional weekday
)
1422 (if (eq (car-safe date
) 'date
)
1423 (setq date
(nth 1 date
)))
1424 (or (math-realp date
)
1425 (math-reject-arg date
'datep
))
1426 (or weekday
(setq weekday
0))
1427 (and (math-messy-integerp weekday
) (setq weekday
(math-trunc weekday
)))
1428 (or (integerp weekday
) (math-reject-arg weekday
'fixnump
))
1429 (and (or (< weekday
0) (> weekday
6)) (math-reject-arg weekday
'range
))
1430 (setq date
(math-floor date
))
1431 (list 'date
(math-sub date
(calcFunc-weekday (math-sub date weekday
)))))
1433 (defun calcFunc-newmonth (date &optional day
)
1434 (or day
(setq day
1))
1435 (and (math-messy-integerp day
) (setq day
(math-trunc day
)))
1436 (or (integerp day
) (math-reject-arg day
'fixnump
))
1437 (and (or (< day
0) (> day
31)) (math-reject-arg day
'range
))
1438 (let ((dt (math-date-to-dt date
)))
1439 (if (or (= day
0) (> day
(math-days-in-month (car dt
) (nth 1 dt
))))
1440 (setq day
(math-days-in-month (car dt
) (nth 1 dt
))))
1441 (and (eq (car dt
) 1752) (= (nth 1 dt
) 9)
1442 (if (>= day
14) (setq day
(- day
11))))
1443 (list 'date
(math-add (math-dt-to-date (list (car dt
) (nth 1 dt
) 1))
1446 (defun calcFunc-newyear (date &optional day
)
1447 (or day
(setq day
1))
1448 (and (math-messy-integerp day
) (setq day
(math-trunc day
)))
1449 (or (integerp day
) (math-reject-arg day
'fixnump
))
1450 (let ((dt (math-date-to-dt date
)))
1451 (if (and (>= day
0) (<= day
366))
1452 (let ((max (if (eq (car dt
) 1752) 355
1453 (if (math-leap-year-p (car dt
)) 366 365))))
1454 (if (or (= day
0) (> day max
)) (setq day max
))
1455 (list 'date
(math-add (math-dt-to-date (list (car dt
) 1 1))
1457 (if (and (>= day -
12) (<= day -
1))
1458 (list 'date
(math-dt-to-date (list (car dt
) (- day
) 1)))
1459 (math-reject-arg day
'range
)))))
1461 (defun calcFunc-incmonth (date &optional step
)
1462 (or step
(setq step
1))
1463 (and (math-messy-integerp step
) (setq step
(math-trunc step
)))
1464 (or (math-integerp step
) (math-reject-arg step
'integerp
))
1465 (let* ((dt (math-date-to-dt date
))
1467 (month (math-add (1- (nth 1 dt
)) step
))
1468 (extra (calcFunc-idiv month
12))
1470 (setq month
(1+ (math-sub month
(math-mul extra
12)))
1471 year
(math-add year extra
)
1472 day
(min day
(math-days-in-month year month
)))
1473 (and (math-posp (car dt
)) (not (math-posp year
))
1474 (setq year
(math-sub year
1))) ; did we go past the year zero?
1475 (and (math-negp (car dt
)) (not (math-negp year
))
1476 (setq year
(math-add year
1)))
1477 (list 'date
(math-dt-to-date
1478 (cons year
(cons month
(cons day
(cdr (cdr (cdr dt
))))))))))
1480 (defun calcFunc-incyear (date &optional step
)
1481 (calcFunc-incmonth date
(math-mul (or step
1) 12)))
1485 (defun calcFunc-bsub (a b
)
1486 (or (eq (car-safe a
) 'date
)
1487 (math-reject-arg a
'datep
))
1488 (if (eq (car-safe b
) 'date
)
1489 (if (math-lessp (nth 1 a
) (nth 1 b
))
1490 (math-neg (calcFunc-bsub b a
))
1491 (math-setup-holidays b
)
1492 (let* ((da (math-to-business-day a
))
1493 (db (math-to-business-day b
)))
1494 (math-add (math-sub (car da
) (car db
))
1495 (if (and (cdr db
) (not (cdr da
))) 1 0))))
1496 (calcFunc-badd a
(math-neg b
))))
1498 (defvar math-holidays-cache nil
)
1499 (defvar math-holidays-cache-tag t
)
1500 (defun calcFunc-badd (a b
)
1501 (if (eq (car-safe b
) 'date
)
1502 (if (eq (car-safe a
) 'date
)
1503 (math-reject-arg nil
"*Invalid combination in date arithmetic")
1504 (calcFunc-badd b a
))
1505 (if (eq (car-safe a
) 'date
)
1509 (let* ((d (math-to-business-day a
))
1510 (bb (math-add (car d
)
1511 (if (and (cdr d
) (Math-posp b
))
1512 (math-sub b
1) b
))))
1513 (or (math-from-business-day bb
)
1514 (calcFunc-badd a b
))))
1515 (if (eq (car-safe b
) 'hms
)
1516 (let ((hours (nth 7 math-holidays-cache
)))
1517 (setq b
(math-div (math-from-hms b
'deg
) 24))
1519 (setq b
(math-div b
(cdr hours
))))
1520 (calcFunc-badd a b
))
1521 (math-reject-arg nil
"*Invalid combination in date arithmetic")))
1522 (math-reject-arg a
'datep
))))
1524 (defun calcFunc-holiday (a)
1525 (if (cdr (math-to-business-day a
)) 1 0))
1527 ;;; Compute the number of business days since Jan 1, 1 AD.
1529 (defun math-to-business-day (date &optional need-year
)
1530 (if (eq (car-safe date
) 'date
)
1531 (setq date
(nth 1 date
)))
1532 (or (Math-realp date
)
1533 (math-reject-arg date
'datep
))
1534 (let* ((day (math-floor date
))
1535 (time (math-sub date day
))
1536 (dt (math-date-to-dt day
))
1539 (or (not need-year
) (eq (car dt
) need-year
)
1540 (math-reject-arg (list 'date day
) "*Generated holiday has wrong year"))
1541 (math-setup-holidays date
)
1542 (let ((days (car math-holidays-cache
)))
1543 (while (and (setq days
(cdr days
)) (< (car days
) day
))
1544 (setq delta
(1+ delta
)))
1545 (and days
(= day
(car days
))
1547 (let* ((weekdays (nth 3 math-holidays-cache
))
1548 (weeks (1- (/ (+ day
6) 7)))
1549 (wkday (- day
1 (* weeks
7))))
1550 (setq delta
(+ delta
(* weeks
(length weekdays
))))
1551 (while (and weekdays
(< (car weekdays
) wkday
))
1552 (setq weekdays
(cdr weekdays
)
1554 (and weekdays
(eq wkday
(car weekdays
))
1556 (let ((hours (nth 7 math-holidays-cache
)))
1559 (setq time
(math-div (math-sub time
(car hours
)) (cdr hours
)))
1560 (if (Math-lessp time
0) (setq time
0))
1561 (or (Math-lessp time
1)
1564 (math-div 1 (math-mul 86400 (cdr hours
)))))))))
1565 (cons (math-add (math-sub day delta
) time
) holiday
)))
1568 ;;; Compute the date a certain number of business days since Jan 1, 1 AD.
1569 ;;; If this returns nil, holiday table was adjusted; redo calculation.
1571 (defun math-from-business-day (num)
1572 (let* ((day (math-floor num
))
1573 (time (math-sub num day
)))
1575 (math-reject-arg nil
"*Date is outside valid range"))
1576 (math-setup-holidays)
1577 (let ((days (nth 1 math-holidays-cache
))
1579 (while (and (setq days
(cdr days
)) (< (car days
) day
))
1580 (setq delta
(1+ delta
)))
1581 (setq day
(+ day delta
)))
1582 (let* ((weekdays (nth 3 math-holidays-cache
))
1583 (bweek (- 7 (length weekdays
)))
1584 (weeks (1- (/ (+ day
(1- bweek
)) bweek
)))
1585 (wkday (- day
1 (* weeks bweek
)))
1587 (setq day
(+ day
(* weeks
(length weekdays
))))
1588 (while (if (memq w weekdays
)
1590 (> (setq wkday
(1- wkday
)) 0))
1592 (let ((hours (nth 7 math-holidays-cache
)))
1594 (setq time
(math-add (math-mul time
(cdr hours
)) (car hours
)))))
1595 (and (not (math-setup-holidays day
))
1596 (list 'date
(math-add day time
))))))
1598 ;; The variable math-sh-year is local to math-setup-holidays
1599 ;; and math-setup-year-holiday, but is used by math-setup-add-holidays,
1600 ;; which is called by math-setup-holidays and math-setup-year-holiday.
1601 (defvar math-sh-year
)
1603 (defun math-setup-holidays (&optional date
)
1604 (or (eq (calc-var-value 'var-Holidays
) math-holidays-cache-tag
)
1605 (let ((h (calc-var-value 'var-Holidays
))
1606 (wdnames '( (sun .
0) (mon .
1) (tue .
2) (wed .
3)
1607 (thu .
4) (fri .
5) (sat .
6) ))
1608 (days nil
) (weekdays nil
) (exprs nil
) (limit nil
) (hours nil
))
1609 (or (math-vectorp h
)
1610 (math-reject-arg h
"*Holidays variable must be a vector"))
1611 (while (setq h
(cdr h
))
1612 (cond ((or (and (eq (car-safe (car h
)) 'date
)
1613 (integerp (nth 1 (car h
))))
1614 (and (eq (car-safe (car h
)) 'intv
)
1615 (eq (car-safe (nth 2 (car h
))) 'date
))
1616 (eq (car-safe (car h
)) 'vec
))
1617 (setq days
(cons (car h
) days
)))
1618 ((and (eq (car-safe (car h
)) 'var
)
1619 (assq (nth 1 (car h
)) wdnames
))
1620 (setq weekdays
(cons (cdr (assq (nth 1 (car h
)) wdnames
))
1622 ((and (eq (car-safe (car h
)) 'intv
)
1623 (eq (car-safe (nth 2 (car h
))) 'hms
)
1624 (eq (car-safe (nth 3 (car h
))) 'hms
))
1627 (car h
) "*Only one hours interval allowed in Holidays"))
1628 (setq hours
(math-div (car h
) '(hms 24 0 0)))
1629 (if (or (Math-lessp (nth 2 hours
) 0)
1630 (Math-lessp 1 (nth 3 hours
)))
1632 (car h
) "*Hours interval out of range"))
1633 (setq hours
(cons (nth 2 hours
)
1634 (math-sub (nth 3 hours
) (nth 2 hours
))))
1635 (if (Math-zerop (cdr hours
))
1637 (car h
) "*Degenerate hours interval")))
1638 ((or (and (eq (car-safe (car h
)) 'intv
)
1639 (Math-integerp (nth 2 (car h
)))
1640 (Math-integerp (nth 3 (car h
))))
1641 (and (integerp (car h
))
1642 (> (car h
) 1900) (< (car h
) 2100)))
1645 (car h
) "*Only one limit allowed in Holidays"))
1646 (setq limit
(calcFunc-vint (car h
) '(intv 3 1 2737)))
1647 (if (equal limit
'(vec))
1648 (math-reject-arg (car h
) "*Limit is out of range")))
1649 ((or (math-expr-contains (car h
) '(var y var-y
))
1650 (math-expr-contains (car h
) '(var m var-m
)))
1651 (setq exprs
(cons (car h
) exprs
)))
1653 (car h
) "*Holidays must contain a vector of holidays"))))
1654 (if (= (length weekdays
) 7)
1655 (math-reject-arg nil
"*Too many weekend days"))
1656 (setq math-holidays-cache
(list (list -
1) ; 0: days list
1657 (list -
1) ; 1: inverse-days list
1660 (or limit
'(intv 3 1 2737))
1661 nil
; 5: (lo.hi) expanded years
1663 hours
) ; 7: business hours
1664 math-holidays-cache-tag
(calc-var-value 'var-Holidays
))))
1666 (let ((year (calcFunc-year date
))
1667 (limits (nth 5 math-holidays-cache
))
1669 (or (eq (calcFunc-in year
(nth 4 math-holidays-cache
)) 1)
1671 (or (eq (car-safe date
) 'date
) (setq date
(list 'date date
)))
1672 (math-reject-arg date
"*Date is outside valid range")))
1674 (let ((days (nth 6 math-holidays-cache
)))
1676 (let ((math-sh-year nil
)) ; see below
1677 (setcar (nthcdr 6 math-holidays-cache
) nil
)
1678 (math-setup-add-holidays (cons 'vec
(cdr days
)))
1679 (setcar (nthcdr 2 math-holidays-cache
) (car days
))))
1680 (cond ((not (nth 2 math-holidays-cache
))
1684 (setcar (nthcdr 5 math-holidays-cache
) (cons year year
))
1685 (math-setup-year-holidays year
)
1687 ((< year
(car limits
))
1688 (message "Computing holidays, %d .. %d"
1689 year
(1- (car limits
)))
1690 (calc-set-command-flag 'clear-message
)
1691 (while (< year
(car limits
))
1692 (setcar limits
(1- (car limits
)))
1693 (math-setup-year-holidays (car limits
)))
1695 ((> year
(cdr limits
))
1696 (message "Computing holidays, %d .. %d"
1697 (1+ (cdr limits
)) year
)
1698 (calc-set-command-flag 'clear-message
)
1699 (while (> year
(cdr limits
))
1700 (setcdr limits
(1+ (cdr limits
)))
1701 (math-setup-year-holidays (cdr limits
)))
1706 (or done
(setq math-holidays-cache-tag t
))))))
1708 (defun math-setup-year-holidays (math-sh-year)
1709 (let ((exprs (nth 2 math-holidays-cache
)))
1711 (let* ((var-y math-sh-year
)
1713 (expr (math-evaluate-expr (car exprs
))))
1714 (if (math-expr-contains expr
'(var m var-m
))
1716 (while (<= (setq var-m
(1+ var-m
)) 12)
1717 (math-setup-add-holidays (math-evaluate-expr expr
))))
1718 (math-setup-add-holidays expr
)))
1719 (setq exprs
(cdr exprs
)))))
1721 (defun math-setup-add-holidays (days) ; uses "math-sh-year"
1722 (cond ((eq (car-safe days
) 'vec
)
1723 (while (setq days
(cdr days
))
1724 (math-setup-add-holidays (car days
))))
1725 ((eq (car-safe days
) 'intv
)
1726 (let ((day (math-ceiling (nth 2 days
))))
1727 (or (eq (calcFunc-in day days
) 1)
1728 (setq day
(math-add day
1)))
1729 (while (eq (calcFunc-in day days
) 1)
1730 (math-setup-add-holidays day
)
1731 (setq day
(math-add day
1)))))
1732 ((eq (car-safe days
) 'date
)
1733 (math-setup-add-holidays (nth 1 days
)))
1736 (let ((b (math-to-business-day days math-sh-year
)))
1737 (or (cdr b
) ; don't register holidays twice!
1738 (let ((prev (car math-holidays-cache
))
1739 (iprev (nth 1 math-holidays-cache
)))
1740 (while (and (cdr prev
) (< (nth 1 prev
) days
))
1741 (setq prev
(cdr prev
) iprev
(cdr iprev
)))
1742 (setcdr prev
(cons days
(cdr prev
)))
1743 (setcdr iprev
(cons (car b
) (cdr iprev
)))
1744 (while (setq iprev
(cdr iprev
))
1745 (setcar iprev
(1- (car iprev
))))))))
1747 (math-reject-arg (list 'date days
) "*Invalid holiday value"))
1749 (math-reject-arg days
"*Holiday formula failed to evaluate"))))
1756 ;;; Build a standard deviation form. [X X X]
1757 (defun math-make-sdev (x sigma
)
1758 (if (memq (car-safe x
) '(date mod sdev intv vec
))
1759 (math-reject-arg x
'realp
))
1760 (if (memq (car-safe sigma
) '(date mod sdev intv vec
))
1761 (math-reject-arg sigma
'realp
))
1762 (if (or (Math-negp sigma
) (memq (car-safe sigma
) '(cplx polar
)))
1763 (setq sigma
(math-abs sigma
)))
1764 (if (and (Math-zerop sigma
) (Math-scalarp x
))
1766 (list 'sdev x sigma
)))
1767 (defun calcFunc-sdev (x sigma
)
1768 (math-make-sdev x sigma
))
1774 (defun math-normalize-mod (a)
1775 (let ((n (math-normalize (nth 1 a
)))
1776 (m (math-normalize (nth 2 a
))))
1777 (if (and (math-anglep n
) (math-anglep m
) (math-posp m
))
1779 (math-normalize (list 'calcFunc-makemod n m
)))))
1781 ;;; Build a modulo form. [N R R]
1782 (defun math-make-mod (n m
)
1783 (setq calc-previous-modulo m
)
1785 (cond ((not (Math-anglep m
))
1786 (math-reject-arg m
'anglep
))
1787 ((not (math-posp m
))
1788 (math-reject-arg m
'posp
))
1790 (if (or (Math-negp n
)
1791 (not (Math-lessp n m
)))
1792 (list 'mod
(math-mod n m
) m
)
1794 ((memq (car n
) '(+ -
/ vec neg
))
1797 (mapcar (function (lambda (x) (math-make-mod x m
)))
1799 ((and (eq (car n
) '*) (Math-anglep (nth 1 n
)))
1800 (math-mul (math-make-mod (nth 1 n
) m
) (nth 2 n
)))
1801 ((memq (car n
) '(* ^ var calcFunc-subscr
))
1802 (math-mul (math-make-mod 1 m
) n
))
1803 (t (math-reject-arg n
'anglep
)))))
1804 (defun calcFunc-makemod (n m
)
1805 (math-make-mod n m
))
1809 ;;;; Interval forms.
1811 ;;; Build an interval form. [X S X X]
1812 (defun math-make-intv (mask lo hi
)
1813 (if (memq (car-safe lo
) '(cplx polar mod sdev intv vec
))
1814 (math-reject-arg lo
'realp
))
1815 (if (memq (car-safe hi
) '(cplx polar mod sdev intv vec
))
1816 (math-reject-arg hi
'realp
))
1817 (or (eq (eq (car-safe lo
) 'date
) (eq (car-safe hi
) 'date
))
1818 (math-reject-arg (if (eq (car-safe lo
) 'date
) hi lo
) 'datep
))
1819 (if (and (or (Math-realp lo
) (eq (car lo
) 'date
))
1820 (or (Math-realp hi
) (eq (car hi
) 'date
)))
1821 (let ((cmp (math-compare lo hi
)))
1825 (list 'intv mask lo hi
))
1828 (list 'intv
2 lo lo
)
1829 (list 'intv mask lo lo
))
1830 (list 'intv mask lo hi
))))
1831 (list 'intv mask lo hi
)))
1832 (defun calcFunc-intv (mask lo hi
)
1833 (if (math-messy-integerp mask
) (setq mask
(math-trunc mask
)))
1834 (or (natnump mask
) (math-reject-arg mask
'fixnatnump
))
1835 (or (<= mask
3) (math-reject-arg mask
'range
))
1836 (math-make-intv mask lo hi
))
1838 (defun math-sort-intv (mask lo hi
)
1839 (if (Math-lessp hi lo
)
1840 (math-make-intv (aref [0 2 1 3] mask
) hi lo
)
1841 (math-make-intv mask lo hi
)))
1846 (defun math-combine-intervals (a am b bm c cm d dm
)
1848 (if (= (setq res
(math-compare a c
)) 1)
1851 (setq am
(or am cm
))))
1852 (if (= (setq res
(math-compare b d
)) -
1)
1855 (setq bm
(or bm dm
))))
1856 (math-make-intv (+ (if am
2 0) (if bm
1 0)) a b
)))
1859 (defun math-div-mod (a b m
) ; [R R R R] (Returns nil if no solution)
1860 (and (Math-integerp a
) (Math-integerp b
) (Math-integerp m
)
1861 (let ((u1 1) (u3 b
) (v1 0) (v3 m
))
1862 (while (not (eq v3
0)) ; See Knuth sec 4.5.2, exercise 15
1863 (let* ((q (math-idivmod u3 v3
))
1864 (t1 (math-sub u1
(math-mul v1
(car q
)))))
1865 (setq u1 v1 u3 v3 v1 t1 v3
(cdr q
))))
1866 (let ((q (math-idivmod a u3
)))
1868 (math-mod (math-mul (car q
) u1
) m
))))))
1870 (defun math-mod-intv (a b
)
1871 (let* ((q1 (math-floor (math-div (nth 2 a
) b
)))
1872 (q2 (math-floor (math-div (nth 3 a
) b
)))
1873 (m1 (math-sub (nth 2 a
) (math-mul q1 b
)))
1874 (m2 (math-sub (nth 3 a
) (math-mul q2 b
))))
1875 (cond ((equal q1 q2
)
1876 (math-sort-intv (nth 1 a
) m1 m2
))
1877 ((and (math-equal-int (math-sub q2 q1
) 1)
1879 (memq (nth 1 a
) '(0 2)))
1880 (math-make-intv (nth 1 a
) m1 b
))
1882 (math-make-intv 2 0 b
)))))
1884 ;; The variables math-exp-str and math-exp-pos are local to
1885 ;; math-read-exprs in math-aent.el, but are used by
1886 ;; math-read-angle-brackets, which is called (indirectly) by
1888 (defvar math-exp-str
)
1889 (defvar math-exp-pos
)
1891 (defun math-read-angle-brackets ()
1892 (let* ((last (or (math-check-for-commas t
) (length math-exp-str
)))
1893 (str (substring math-exp-str math-exp-pos last
))
1895 (if (string-match "\\` *\\([a-zA-Z#][a-zA-Z0-9#]* *,? *\\)*:" str
)
1896 (let ((str1 (substring str
0 (1- (match-end 0))))
1897 (str2 (substring str
(match-end 0)))
1898 (calc-hashes-used 0))
1899 (setq str1
(math-read-expr (concat "[" str1
"]")))
1900 (if (eq (car-safe str1
) 'error
)
1902 (setq str2
(math-read-expr str2
))
1903 (if (eq (car-safe str2
) 'error
)
1905 (append '(calcFunc-lambda) (cdr str1
) (list str2
)))))
1906 (if (string-match "#" str
)
1907 (let ((calc-hashes-used 0))
1908 (and (setq str
(math-read-expr str
))
1909 (if (eq (car-safe str
) 'error
)
1911 (append '(calcFunc-lambda)
1912 (calc-invent-args calc-hashes-used
)
1914 (math-parse-date str
)))))
1916 (throw 'syntax res
))
1917 (if (eq (car-safe res
) 'error
)
1918 (throw 'syntax
(nth 2 res
)))
1919 (setq math-exp-pos
(1+ last
))
1923 (provide 'calc-forms
)
1925 ;; arch-tag: a3d8f33b-9508-4043-8060-d02b8c9c750c
1926 ;;; calc-forms.el ends here