(Recognize Coding): Explain how to see what Emacs used to decode a file.
[bpt/emacs.git] / lisp / calendar / holidays.el
CommitLineData
1a06eabd 1;;; holidays.el --- holiday functions for the calendar package
fc68affa 2
a96a5fca 3;; Copyright (C) 1989, 90, 92, 93, 94, 1997 Free Software Foundation, Inc.
3a801d0c 4
fc68affa 5;; Author: Edward M. Reingold <reingold@cs.uiuc.edu>
7e1dae73 6;; Keywords: holidays, calendar
fc68affa 7
1802278a
JB
8;; This file is part of GNU Emacs.
9
59243403
RS
10;; GNU Emacs is free software; you can redistribute it and/or modify
11;; it under the terms of the GNU General Public License as published by
12;; the Free Software Foundation; either version 2, or (at your option)
13;; any later version.
8ec105a0 14
1802278a 15;; GNU Emacs is distributed in the hope that it will be useful,
59243403
RS
16;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18;; GNU General Public License for more details.
19
20;; You should have received a copy of the GNU General Public License
b578f267
EN
21;; along with GNU Emacs; see the file COPYING. If not, write to the
22;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23;; Boston, MA 02111-1307, USA.
1802278a 24
fc68affa
ER
25;;; Commentary:
26
1802278a
JB
27;; This collection of functions implements the holiday features as described
28;; in calendar.el.
29
1802278a
JB
30;; Technical details of all the calendrical calculations can be found in
31;; ``Calendrical Calculations'' by Nachum Dershowitz and Edward M. Reingold,
a96a5fca
PE
32;; Cambridge University Press (1997).
33
34;; An earlier version of the technical details appeared in
35;; ``Calendrical Calculations'' by Nachum Dershowitz and Edward M. Reingold,
1802278a 36;; Software--Practice and Experience, Volume 20, Number 9 (September, 1990),
7e1dae73
JB
37;; pages 899-928. ``Calendrical Calculations, Part II: Three Historical
38;; Calendars'' by E. M. Reingold, N. Dershowitz, and S. M. Clamen,
c8d190a5
JB
39;; Software--Practice and Experience, Volume 23, Number 4 (April, 1993),
40;; pages 383-404.
7e1dae73
JB
41
42;; Hard copies of these two papers can be obtained by sending email to
43;; reingold@cs.uiuc.edu with the SUBJECT "send-paper-cal" (no quotes) and
44;; the message BODY containing your mailing address (snail).
1802278a 45
a96a5fca
PE
46;; Comments, corrections, and improvements should be sent to
47;; Edward M. Reingold Department of Computer Science
48;; (217) 333-6733 University of Illinois at Urbana-Champaign
49;; reingold@cs.uiuc.edu 1304 West Springfield Avenue
50;; Urbana, Illinois 61801
51
fc68affa
ER
52;;; Code:
53
1802278a 54(require 'calendar)
e5d77022 55
32933edb
ER
56(autoload 'holiday-julian "cal-julian"
57 "Holiday on MONTH, DAY (Julian) called STRING."
58 t)
59
60(autoload 'holiday-hebrew "cal-hebrew"
61 "Holiday on MONTH, DAY (Hebrew) called STRING."
62 t)
63
64(autoload 'holiday-rosh-hashanah-etc "cal-hebrew"
65 "List of dates related to Rosh Hashanah, as visible in calendar window."
66 t)
67
68(autoload 'holiday-hanukkah "cal-hebrew"
69 "List of dates related to Hanukkah, as visible in calendar window."
70 t)
71
72(autoload 'holiday-passover-etc "cal-hebrew"
73 "List of dates related to Passover, as visible in calendar window."
74 t)
75
76(autoload 'holiday-tisha-b-av-etc "cal-hebrew"
77 "List of dates around Tisha B'Av, as visible in calendar window."
78 t)
79
327b6868 80(autoload 'holiday-islamic "cal-islam"
32933edb
ER
81 "Holiday on MONTH, DAY (Islamic) called STRING."
82 t)
83
327b6868 84(autoload 'holiday-chinese-new-year "cal-china"
32933edb
ER
85 "Date of Chinese New Year."
86 t)
87
8ec105a0 88(autoload 'solar-equinoxes-solstices "solar"
7e1dae73
JB
89 "Date and time of equinoxes and solstices, if visible in the calendar window.
90Requires floating point."
91 t)
92
93(defun holidays (&optional arg)
1802278a 94 "Display the holidays for last month, this month, and next month.
7e1dae73
JB
95If called with an optional prefix argument, prompts for month and year.
96
1802278a 97This function is suitable for execution in a .emacs file."
7e1dae73 98 (interactive "P")
1802278a 99 (save-excursion
7e1dae73 100 (let* ((completion-ignore-case t)
c99d4526
ER
101 (date (if arg
102 (calendar-read-date t)
103 (calendar-current-date)))
104 (displayed-month (extract-calendar-month date))
105 (displayed-year (extract-calendar-year date)))
1802278a
JB
106 (list-calendar-holidays))))
107
40b14a0c 108;;;###autoload
056a21c4
RS
109(defun list-holidays (y1 y2 &optional l label)
110 "Display holidays for years Y1 to Y2 (inclusive).
111
112The optional list of holidays L defaults to `calendar-holidays'. See the
113documentation for that variable for a description of holiday lists.
114
115The optional LABEL is used to label the buffer created."
116 (interactive
117 (let* ((start-year (calendar-read
118 "Starting year of holidays (>0): "
119 '(lambda (x) (> x 0))
120 (int-to-string (extract-calendar-year
121 (calendar-current-date)))))
122 (end-year (calendar-read
123 (format "Ending year (inclusive) of holidays (>=%s): "
124 start-year)
125 '(lambda (x) (>= x start-year))
126 (int-to-string start-year)))
127 (completion-ignore-case t)
128 (lists
129 (list
130 (cons "All" calendar-holidays)
131 (if (fboundp 'atan)
132 (cons "Equinoxes/Solstices"
133 (list (list 'solar-equinoxes-solstices))))
134 (if general-holidays (cons "General" general-holidays))
135 (if local-holidays (cons "Local" local-holidays))
136 (if other-holidays (cons "Other" other-holidays))
137 (if christian-holidays (cons "Christian" christian-holidays))
138 (if hebrew-holidays (cons "Hebrew" hebrew-holidays))
139 (if islamic-holidays (cons "Islamic" islamic-holidays))
140 (if oriental-holidays (cons "Oriental" oriental-holidays))
141 (if solar-holidays (cons "Solar" solar-holidays))
142 (cons "Ask" nil)))
143 (choice (capitalize
144 (completing-read "List (TAB for choices): " lists nil t)))
145 (which (if (string-equal choice "Ask")
146 (eval (read-variable "Enter list name: "))
147 (cdr (assoc choice lists))))
148 (name (if (string-equal choice "Equinoxes/Solstices")
149 choice
ebad70de 150 (if (member choice '("Ask" ""))
056a21c4
RS
151 "Holidays"
152 (format "%s Holidays" choice)))))
153 (list start-year end-year which name)))
154 (message "Computing holidays...")
155 (let* ((holiday-buffer "*Holidays*")
156 (calendar-holidays (if l l calendar-holidays))
ebad70de 157 (title (or label "Holidays"))
056a21c4
RS
158 (holiday-list nil)
159 (s (calendar-absolute-from-gregorian (list 2 1 y1)))
160 (e (calendar-absolute-from-gregorian (list 11 1 y2)))
161 (d s)
162 (never t)
163 (displayed-month 2)
164 (displayed-year y1))
165 (while (or never (<= d e))
166 (setq holiday-list (append holiday-list (calendar-holiday-list)))
167 (setq never nil)
168 (increment-calendar-month displayed-month displayed-year 3)
169 (setq d (calendar-absolute-from-gregorian
170 (list displayed-month 1 displayed-year))))
ebad70de
RS
171 (save-excursion
172 (set-buffer (get-buffer-create holiday-buffer))
173 (setq buffer-read-only nil)
174 (calendar-set-mode-line
175 (if (= y1 y2)
176 (format "%s for %s" title y1)
177 (format "%s for %s-%s" title y1 y2)))
178 (erase-buffer)
179 (goto-char (point-min))
180 (insert
181 (mapconcat
182 '(lambda (x) (concat (calendar-date-string (car x))
183 ": " (car (cdr x))))
184 holiday-list "\n"))
185 (goto-char (point-min))
186 (set-buffer-modified-p nil)
187 (setq buffer-read-only t)
188 (display-buffer holiday-buffer)
189 (message "Computing holidays...done"))))
190
056a21c4 191
1802278a
JB
192(defun check-calendar-holidays (date)
193 "Check the list of holidays for any that occur on DATE.
194The value returned is a list of strings of relevant holiday descriptions.
195The holidays are those in the list calendar-holidays."
196 (let* ((displayed-month (extract-calendar-month date))
197 (displayed-year (extract-calendar-year date))
198 (h (calendar-holiday-list))
199 (holiday-list))
200 (while h
201 (if (calendar-date-equal date (car (car h)))
202 (setq holiday-list (append holiday-list (cdr (car h)))))
203 (setq h (cdr h)))
204 holiday-list))
205
206(defun calendar-cursor-holidays ()
207 "Find holidays for the date specified by the cursor in the calendar window."
208 (interactive)
209 (message "Checking holidays...")
56e7830d 210 (let* ((date (calendar-cursor-to-date t))
1802278a
JB
211 (date-string (calendar-date-string date))
212 (holiday-list (check-calendar-holidays date))
213 (holiday-string (mapconcat 'identity holiday-list "; "))
214 (msg (format "%s: %s" date-string holiday-string)))
215 (if (not holiday-list)
216 (message "No holidays known for %s" date-string)
8ec105a0 217 (if (<= (length msg) (frame-width))
eec5a2e4 218 (message "%s" msg)
1802278a
JB
219 (set-buffer (get-buffer-create holiday-buffer))
220 (setq buffer-read-only nil)
7e1dae73 221 (calendar-set-mode-line date-string)
1802278a
JB
222 (erase-buffer)
223 (insert (mapconcat 'identity holiday-list "\n"))
224 (goto-char (point-min))
225 (set-buffer-modified-p nil)
226 (setq buffer-read-only t)
227 (display-buffer holiday-buffer)
228 (message "Checking holidays...done")))))
229
230(defun mark-calendar-holidays ()
231 "Mark notable days in the calendar window."
232 (interactive)
233 (setq mark-holidays-in-calendar t)
234 (message "Marking holidays...")
235 (let ((holiday-list (calendar-holiday-list)))
236 (while holiday-list
237 (mark-visible-calendar-date
238 (car (car holiday-list)) calendar-holiday-marker)
239 (setq holiday-list (cdr holiday-list))))
240 (message "Marking holidays...done"))
241
242(defun list-calendar-holidays ()
243 "Create a buffer containing the holidays for the current calendar window.
244The holidays are those in the list calendar-notable-days. Returns t if any
245holidays are found, nil if not."
246 (interactive)
247 (message "Looking up holidays...")
248 (let ((holiday-list (calendar-holiday-list))
249 (m1 displayed-month)
250 (y1 displayed-year)
251 (m2 displayed-month)
252 (y2 displayed-year))
253 (if (not holiday-list)
254 (progn
255 (message "Looking up holidays...none found")
256 nil)
257 (set-buffer (get-buffer-create holiday-buffer))
258 (setq buffer-read-only nil)
259 (increment-calendar-month m1 y1 -1)
260 (increment-calendar-month m2 y2 1)
7e1dae73 261 (calendar-set-mode-line
1d34f349
RS
262 (if (= y1 y2)
263 (format "Notable Dates from %s to %s, %d%%-"
264 (calendar-month-name m1) (calendar-month-name m2) y2)
265 (format "Notable Dates from %s, %d to %s, %d%%-"
266 (calendar-month-name m1) y1 (calendar-month-name m2) y2)))
1802278a
JB
267 (erase-buffer)
268 (insert
269 (mapconcat
270 '(lambda (x) (concat (calendar-date-string (car x))
271 ": " (car (cdr x))))
272 holiday-list "\n"))
273 (goto-char (point-min))
274 (set-buffer-modified-p nil)
275 (setq buffer-read-only t)
276 (display-buffer holiday-buffer)
277 (message "Looking up holidays...done")
278 t)))
279
280(defun calendar-holiday-list ()
281 "Form the list of holidays that occur on dates in the calendar window.
282The holidays are those in the list calendar-holidays."
8ec105a0 283 (let ((p calendar-holidays)
1802278a
JB
284 (holiday-list))
285 (while p
8ec105a0
JB
286 (let* ((holidays
287 (if calendar-debug-sexp
288 (let ((stack-trace-on-error t))
289 (eval (car p)))
290 (condition-case nil
291 (eval (car p))
292 (error (beep)
293 (message "Bad holiday list item: %s" (car p))
294 (sleep-for 2))))))
1802278a
JB
295 (if holidays
296 (setq holiday-list (append holidays holiday-list))))
297 (setq p (cdr p)))
298 (setq holiday-list (sort holiday-list 'calendar-date-compare))))
299
300;; Below are the functions that calculate the dates of holidays; these
8ec105a0
JB
301;; are eval'ed in the function calendar-holiday-list. If you
302;; write other such functions, be sure to imitate the style used below.
303;; Remember that each function must return a list of items of the form
304;; ((month day year) string) of VISIBLE dates in the calendar window.
305
306(defun holiday-fixed (month day string)
307 "Holiday on MONTH, DAY (Gregorian) called STRING.
308If MONTH, DAY is visible, the value returned is the list (((MONTH DAY year)
309STRING)). Returns nil if it is not visible in the current calendar window."
310 (let ((m displayed-month)
311 (y displayed-year))
1802278a
JB
312 (increment-calendar-month m y (- 11 month))
313 (if (> m 9)
314 (list (list (list month day y) string)))))
315
8ec105a0 316(defun holiday-float (month dayname n string &optional day)
151eeaa7 317 "Holiday on MONTH, DAYNAME (Nth occurrence) called STRING.
8ec105a0 318If the Nth DAYNAME in MONTH is visible, the value returned is the list
a4e104bf 319\(((MONTH DAY year) STRING)).
8ec105a0
JB
320
321If N<0, count backward from the end of MONTH.
322
151eeaa7 323An optional parameter DAY means the Nth DAYNAME on or after/before MONTH DAY.
8ec105a0 324
1802278a 325Returns nil if it is not visible in the current calendar window."
151eeaa7
RS
326;; This is messy because the holiday may be visible, while the date on which
327;; it is based is not. For example, the first Monday after December 30 may be
328;; visible when January is not. For large values of |n| the problem is more
329;; grotesque. If we didn't have to worry about such cases, we could just use
330
331;; (let ((m displayed-month)
332;; (y displayed-year))
333;; (increment-calendar-month m y (- 11 month))
334;; (if (> m 9); month in year y is visible
335;; (list (list (calendar-nth-named-day n dayname month y day) string)))))
336
337;; which is the way the function was originally written.
338
339 (let* ((m1 displayed-month)
340 (y1 displayed-year)
341 (m2 m1)
342 (y2 y1))
343 (increment-calendar-month m1 y1 -1)
344 (increment-calendar-month m2 y2 1)
345 (let* ((d1; first possible base date for holiday
346 (+ (calendar-nth-named-absday 1 dayname m1 y1)
347 (* -7 n)
348 (if (> n 0) 1 -7)))
349 (d2; last possible base date for holiday
350 (+ (calendar-nth-named-absday -1 dayname m2 y2)
351 (* -7 n)
352 (if (> n 0) 7 -1)))
353 (y1 (extract-calendar-year (calendar-gregorian-from-absolute d1)))
354 (y2 (extract-calendar-year (calendar-gregorian-from-absolute d2)))
355 (y; year of base date
356 (if (or (= y1 y2) (> month 9))
357 y1
358 y2))
359 (d; day of base date
360 (or day (if (> n 0)
361 1
362 (calendar-last-day-of-month month y))))
363 (date; base date for holiday
364 (calendar-absolute-from-gregorian (list month d y))))
365 (if (and (<= d1 date) (<= date d2))
366 (list (list (calendar-nth-named-day n dayname month y d)
367 string))))))
8ec105a0 368
8ec105a0 369(defun holiday-sexp (sexp string)
7e1dae73 370 "Sexp holiday for dates in the calendar window.
8ec105a0
JB
371SEXP is an expression in variable `year' evaluates to `date'.
372
373STRING is an expression in `date' that evaluates to the holiday description
374of `date'.
375
376If `date' is visible in the calendar window, the holiday STRING is on that
377date. If date is nil, or if the date is not visible, there is no holiday."
7e1dae73
JB
378 (let ((m displayed-month)
379 (y displayed-year))
380 (increment-calendar-month m y -1)
381 (filter-visible-calendar-holidays
382 (append
8ec105a0
JB
383 (let* ((year y)
384 (date (eval sexp))
385 (string (if date (eval string))))
386 (list (list date string)))
387 (let* ((year (1+ y))
388 (date (eval sexp))
389 (string (if date (eval string))))
390 (list (list date string)))))))
391
392(defun holiday-advent ()
1802278a
JB
393 "Date of Advent, if visible in calendar window."
394 (let ((year displayed-year)
395 (month displayed-month))
396 (increment-calendar-month month year -1)
397 (let ((advent (calendar-gregorian-from-absolute
398 (calendar-dayname-on-or-before 0
399 (calendar-absolute-from-gregorian
400 (list 12 3 year))))))
401 (if (calendar-date-is-visible-p advent)
402 (list (list advent "Advent"))))))
403
8ec105a0 404(defun holiday-easter-etc ()
1802278a
JB
405 "List of dates related to Easter, as visible in calendar window."
406 (if (and (> displayed-month 5) (not all-christian-calendar-holidays))
407 nil;; Ash Wednesday, Good Friday, and Easter are not visible.
408 (let* ((century (1+ (/ displayed-year 100)))
409 (shifted-epact ;; Age of moon for April 5...
410 (% (+ 14 (* 11 (% displayed-year 19));; ...by Nicaean rule
411 (- ;; ...corrected for the Gregorian century rule
412 (/ (* 3 century) 4))
413 (/ ;; ...corrected for Metonic cycle inaccuracy.
414 (+ 5 (* 8 century)) 25)
415 (* 30 century));; Keeps value positive.
416 30))
417 (adjusted-epact ;; Adjust for 29.5 day month.
418 (if (or (= shifted-epact 0)
419 (and (= shifted-epact 1) (< 10 (% displayed-year 19))))
420 (1+ shifted-epact)
421 shifted-epact))
422 (paschal-moon ;; Day after the full moon on or after March 21.
423 (- (calendar-absolute-from-gregorian (list 4 19 displayed-year))
424 adjusted-epact))
425 (abs-easter (calendar-dayname-on-or-before 0 (+ paschal-moon 7)))
426 (mandatory
427 (list
428 (list (calendar-gregorian-from-absolute abs-easter)
429 "Easter Sunday")
430 (list (calendar-gregorian-from-absolute (- abs-easter 2))
431 "Good Friday")
432 (list (calendar-gregorian-from-absolute (- abs-easter 46))
433 "Ash Wednesday")))
434 (optional
435 (list
436 (list (calendar-gregorian-from-absolute (- abs-easter 63))
437 "Septuagesima Sunday")
438 (list (calendar-gregorian-from-absolute (- abs-easter 56))
439 "Sexagesima Sunday")
440 (list (calendar-gregorian-from-absolute (- abs-easter 49))
441 "Shrove Sunday")
442 (list (calendar-gregorian-from-absolute (- abs-easter 48))
443 "Shrove Monday")
444 (list (calendar-gregorian-from-absolute (- abs-easter 47))
445 "Shrove Tuesday")
446 (list (calendar-gregorian-from-absolute (- abs-easter 14))
447 "Passion Sunday")
448 (list (calendar-gregorian-from-absolute (- abs-easter 7))
449 "Palm Sunday")
450 (list (calendar-gregorian-from-absolute (- abs-easter 3))
451 "Maundy Thursday")
452 (list (calendar-gregorian-from-absolute (+ abs-easter 35))
453 "Rogation Sunday")
454 (list (calendar-gregorian-from-absolute (+ abs-easter 39))
2ba08787 455 "Ascension Day")
1802278a
JB
456 (list (calendar-gregorian-from-absolute (+ abs-easter 49))
457 "Pentecost (Whitsunday)")
458 (list (calendar-gregorian-from-absolute (+ abs-easter 50))
69f5afe4 459 "Whitmonday")
1802278a
JB
460 (list (calendar-gregorian-from-absolute (+ abs-easter 56))
461 "Trinity Sunday")
462 (list (calendar-gregorian-from-absolute (+ abs-easter 60))
463 "Corpus Christi")))
464 (output-list
465 (filter-visible-calendar-holidays mandatory)))
466 (if all-christian-calendar-holidays
467 (setq output-list
468 (append
469 (filter-visible-calendar-holidays optional)
470 output-list)))
471 output-list)))
472
8ec105a0
JB
473(defun holiday-greek-orthodox-easter ()
474 "Date of Easter according to the rule of the Council of Nicaea."
7e1dae73
JB
475 (let ((m displayed-month)
476 (y displayed-year))
477 (increment-calendar-month m y 1)
478 (let* ((julian-year
479 (extract-calendar-year
480 (calendar-julian-from-absolute
481 (calendar-absolute-from-gregorian
482 (list m (calendar-last-day-of-month m y) y)))))
483 (shifted-epact ;; Age of moon for April 5.
484 (% (+ 14
485 (* 11 (% julian-year 19)))
486 30))
487 (paschal-moon ;; Day after full moon on or after March 21.
488 (- (calendar-absolute-from-julian (list 4 19 julian-year))
489 shifted-epact))
490 (nicaean-easter;; Sunday following the Paschal moon
491 (calendar-gregorian-from-absolute
492 (calendar-dayname-on-or-before 0 (+ paschal-moon 7)))))
493 (if (calendar-date-is-visible-p nicaean-easter)
494 (list (list nicaean-easter "Pascha (Greek Orthodox Easter)"))))))
495
1802278a
JB
496(defun filter-visible-calendar-holidays (l)
497 "Return a list of all visible holidays of those on L."
498 (let ((visible)
499 (p l))
500 (while p
c8d190a5
JB
501 (and (car (car p))
502 (calendar-date-is-visible-p (car (car p)))
503 (setq visible (append (list (car p)) visible)))
1802278a
JB
504 (setq p (cdr p)))
505 visible))
49116ac0
JB
506
507(provide 'holidays)
508
1a06eabd 509;;; holidays.el ends here