Update for diary-lib name changes.
[emacs.git] / lisp / calendar / cal-persia.el
blob969821cb834009d30f5f29333bed39c379fe4efe
1 ;;; cal-persia.el --- calendar functions for the Persian calendar
3 ;; Copyright (C) 1996, 1997, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
4 ;; 2008 Free Software Foundation, Inc.
6 ;; Author: Edward M. Reingold <reingold@cs.uiuc.edu>
7 ;; Maintainer: Glenn Morris <rgm@gnu.org>
8 ;; Keywords: calendar
9 ;; Human-Keywords: Persian calendar, calendar, diary
11 ;; This file is part of GNU Emacs.
13 ;; GNU Emacs is free software; you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation; either version 3, or (at your option)
16 ;; any later version.
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs; see the file COPYING. If not, write to the
25 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
26 ;; Boston, MA 02110-1301, USA.
28 ;;; Commentary:
30 ;; See calendar.el.
32 ;;; Code:
34 (require 'calendar)
36 (defconst calendar-persian-month-name-array
37 ["Farvardin" "Ordibehest" "Xordad" "Tir" "Mordad" "Sahrivar" "Mehr" "Aban"
38 "Azar" "Dey" "Bahman" "Esfand"]
39 "Names of the months in the Persian calendar.")
41 (eval-and-compile
42 (autoload 'calendar-julian-to-absolute "cal-julian"))
44 (defconst calendar-persian-epoch
45 (eval-when-compile (calendar-julian-to-absolute '(3 19 622)))
46 "Absolute date of start of Persian calendar = March 19, 622 AD (Julian).")
48 (defun calendar-persian-leap-year-p (year)
49 "True if YEAR is a leap year on the Persian calendar."
50 (< (mod (* (mod (mod (if (<= 0 year)
51 (+ year 2346) ; no year zero
52 (+ year 2347))
53 2820)
54 768)
55 683)
56 2820)
57 683))
59 (defun calendar-persian-last-day-of-month (month year)
60 "Return last day of MONTH, YEAR on the Persian calendar."
61 (cond
62 ((< month 7) 31)
63 ((or (< month 12) (calendar-persian-leap-year-p year)) 30)
64 (t 29)))
66 (defun calendar-persian-to-absolute (date)
67 "Compute absolute date from Persian date DATE.
68 The absolute date is the number of days elapsed since the (imaginary)
69 Gregorian date Sunday, December 31, 1 BC."
70 (let ((month (extract-calendar-month date))
71 (day (extract-calendar-day date))
72 (year (extract-calendar-year date)))
73 (if (< year 0)
74 (+ (calendar-persian-to-absolute
75 (list month day (1+ (mod year 2820))))
76 (* 1029983 (floor year 2820)))
77 (+ (1- calendar-persian-epoch) ; days before epoch
78 (* 365 (1- year)) ; days in prior years
79 (* 683 ; leap days in prior 2820-year cycles
80 (floor (+ year 2345) 2820))
81 (* 186 ; leap days in prior 768 year cycles
82 (floor (mod (+ year 2345) 2820) 768))
83 (floor ; leap years in current 768 or 516 year cycle
84 (* 683 (mod (mod (+ year 2345) 2820) 768))
85 2820)
86 -568 ; leap years in Persian years -2345...-1
87 (calendar-sum ; days in prior months this year
88 m 1 (< m month)
89 (calendar-persian-last-day-of-month m year))
90 day)))) ; days so far this month
92 (define-obsolete-function-alias 'calendar-absolute-from-persian
93 'calendar-persian-to-absolute "23.1")
95 (defun calendar-persian-year-from-absolute (date)
96 "Persian year corresponding to the absolute DATE."
97 (let* ((d0 ; prior days since start of 2820 cycles
98 (- date (calendar-persian-to-absolute (list 1 1 -2345))))
99 (n2820 ; completed 2820-year cycles
100 (floor d0 1029983))
101 (d1 ; prior days not in n2820
102 (mod d0 1029983))
103 (n768 ; 768-year cycles not in n2820
104 (floor d1 280506))
105 (d2 ; prior days not in n2820 or n768
106 (mod d1 280506))
107 (n1 ; years not in n2820 or n768
108 ;; Want:
109 ;; (floor (+ (* 2820 d2) (* 2820 366)) 1029983))
110 ;; but that causes overflow, so use the following.
111 ;; Use 366 as the divisor because (2820*366 mod 1029983) is small.
112 (let ((a (floor d2 366))
113 (b (mod d2 366)))
114 (+ 1 a (floor (+ (* 2137 a) (* 2820 b) 2137) 1029983))))
115 (year (+ (* 2820 n2820) ; complete 2820 year cycles
116 (* 768 n768) ; complete 768 year cycles
117 ;; Remaining years.
118 (if (= d1 1029617) ; last day of 2820 year cycle
119 (1- n1)
121 -2345))) ; years before year 1
122 (if (< year 1)
123 (1- year) ; no year zero
124 year)))
126 (defun calendar-persian-from-absolute (date)
127 "Compute the Persian equivalent for absolute date DATE.
128 The result is a list of the form (MONTH DAY YEAR).
129 The absolute date is the number of days elapsed since the imaginary
130 Gregorian date Sunday, December 31, 1 BC."
131 (let* ((year (calendar-persian-year-from-absolute date))
132 (month ; search forward from Farvardin
133 (1+ (calendar-sum m 1
134 (> date
135 (calendar-persian-to-absolute
136 (list
138 (calendar-persian-last-day-of-month m year)
139 year)))
140 1)))
141 (day ; calculate the day by subtraction
142 (- date (1- (calendar-persian-to-absolute
143 (list month 1 year))))))
144 (list month day year)))
146 ;;;###cal-autoload
147 (defun calendar-persian-date-string (&optional date)
148 "String of Persian date of Gregorian DATE, default today."
149 (let* ((persian-date (calendar-persian-from-absolute
150 (calendar-absolute-from-gregorian
151 (or date (calendar-current-date)))))
152 (y (extract-calendar-year persian-date))
153 (m (extract-calendar-month persian-date))
154 (monthname (aref calendar-persian-month-name-array (1- m)))
155 (day (int-to-string (extract-calendar-day persian-date)))
156 (year (int-to-string y))
157 (month (int-to-string m))
158 dayname)
159 (mapconcat 'eval calendar-date-display-form "")))
161 ;;;###cal-autoload
162 (defun calendar-persian-print-date ()
163 "Show the Persian calendar equivalent of the selected date."
164 (interactive)
165 (message "Persian date: %s"
166 (calendar-persian-date-string (calendar-cursor-to-date t))))
168 (define-obsolete-function-alias 'calendar-print-persian-date
169 'calendar-persian-print-date "23.1")
171 (defun calendar-persian-read-date ()
172 "Interactively read the arguments for a Persian date command.
173 Reads a year, month, and day."
174 (let* ((year (calendar-read
175 "Persian calendar year (not 0): "
176 (lambda (x) (not (zerop x)))
177 (int-to-string
178 (extract-calendar-year
179 (calendar-persian-from-absolute
180 (calendar-absolute-from-gregorian
181 (calendar-current-date)))))))
182 (completion-ignore-case t)
183 (month (cdr (assoc
184 (completing-read
185 "Persian calendar month name: "
186 (mapcar 'list
187 (append calendar-persian-month-name-array nil))
188 nil t)
189 (calendar-make-alist calendar-persian-month-name-array
190 1))))
191 (last (calendar-persian-last-day-of-month month year))
192 (day (calendar-read
193 (format "Persian calendar day (1-%d): " last)
194 (lambda (x) (and (< 0 x) (<= x last))))))
195 (list (list month day year))))
197 (define-obsolete-function-alias 'persian-prompt-for-date
198 'calendar-persian-read-date "23.1")
200 ;;;###cal-autoload
201 (defun calendar-persian-goto-date (date &optional noecho)
202 "Move cursor to Persian date DATE.
203 Echo Persian date unless NOECHO is non-nil."
204 (interactive (calendar-persian-read-date))
205 (calendar-goto-date (calendar-gregorian-from-absolute
206 (calendar-persian-to-absolute date)))
207 (or noecho (calendar-persian-print-date)))
209 (define-obsolete-function-alias 'calendar-goto-persian-date
210 'calendar-persian-goto-date "23.1")
212 (defvar date)
214 ;; To be called from diary-list-sexp-entries, where DATE is bound.
215 ;;;###diary-autoload
216 (defun diary-persian-date ()
217 "Persian calendar equivalent of date diary entry."
218 (format "Persian date: %s" (calendar-persian-date-string date)))
220 (provide 'cal-persia)
222 ;; arch-tag: 2832383c-e4b4-4dc2-8ee9-cfbdd53e5e2d
223 ;;; cal-persia.el ends here