(calendar-mark-1): Autoload it.
[emacs.git] / lisp / calendar / cal-persia.el
blob9a81a7c29a860d28d8fe29c4e1273d0c64bc4561
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 ;; This collection of functions implements the features of calendar.el and
31 ;; diary.el that deal with the Persian calendar.
33 ;;; Code:
35 (require 'cal-julian)
37 (defconst persian-calendar-month-name-array
38 ["Farvardin" "Ordibehest" "Xordad" "Tir" "Mordad" "Sahrivar" "Mehr" "Aban"
39 "Azar" "Dey" "Bahman" "Esfand"]
40 "Names of the months in the Persian calendar.")
42 (defconst persian-calendar-epoch (calendar-absolute-from-julian '(3 19 622))
43 "Absolute date of start of Persian calendar = March 19, 622 AD (Julian).")
45 (defun persian-calendar-leap-year-p (year)
46 "True if YEAR is a leap year on the Persian calendar."
47 (< (mod (* (mod (mod (if (<= 0 year)
48 (+ year 2346) ; no year zero
49 (+ year 2347))
50 2820)
51 768)
52 683)
53 2820)
54 683))
56 (defun persian-calendar-last-day-of-month (month year)
57 "Return last day of MONTH, YEAR on the Persian calendar."
58 (cond
59 ((< month 7) 31)
60 ((or (< month 12) (persian-calendar-leap-year-p year)) 30)
61 (t 29)))
63 (defun calendar-absolute-from-persian (date)
64 "Compute absolute date from Persian date DATE.
65 The absolute date is the number of days elapsed since the (imaginary)
66 Gregorian date Sunday, December 31, 1 BC."
67 (let ((month (extract-calendar-month date))
68 (day (extract-calendar-day date))
69 (year (extract-calendar-year date)))
70 (if (< year 0)
71 (+ (calendar-absolute-from-persian
72 (list month day (1+ (mod year 2820))))
73 (* 1029983 (floor year 2820)))
74 (+ (1- persian-calendar-epoch) ; days before epoch
75 (* 365 (1- year)) ; days in prior years
76 (* 683 ; leap days in prior 2820-year cycles
77 (floor (+ year 2345) 2820))
78 (* 186 ; leap days in prior 768 year cycles
79 (floor (mod (+ year 2345) 2820) 768))
80 (floor ; leap years in current 768 or 516 year cycle
81 (* 683 (mod (mod (+ year 2345) 2820) 768))
82 2820)
83 -568 ; leap years in Persian years -2345...-1
84 (calendar-sum ; days in prior months this year
85 m 1 (< m month)
86 (persian-calendar-last-day-of-month m year))
87 day)))) ; days so far this month
89 (defun calendar-persian-year-from-absolute (date)
90 "Persian year corresponding to the absolute DATE."
91 (let* ((d0 ; prior days since start of 2820 cycles
92 (- date (calendar-absolute-from-persian (list 1 1 -2345))))
93 (n2820 ; completed 2820-year cycles
94 (floor d0 1029983))
95 (d1 ; prior days not in n2820
96 (mod d0 1029983))
97 (n768 ; 768-year cycles not in n2820
98 (floor d1 280506))
99 (d2 ; prior days not in n2820 or n768
100 (mod d1 280506))
101 (n1 ; years not in n2820 or n768
102 ;; Want:
103 ;; (floor (+ (* 2820 d2) (* 2820 366)) 1029983))
104 ;; but that causes overflow, so use the following.
105 ;; Use 366 as the divisor because (2820*366 mod 1029983) is small.
106 (let ((a (floor d2 366))
107 (b (mod d2 366)))
108 (+ 1 a (floor (+ (* 2137 a) (* 2820 b) 2137) 1029983))))
109 (year (+ (* 2820 n2820) ; complete 2820 year cycles
110 (* 768 n768) ; complete 768 year cycles
111 ;; Remaining years.
112 (if (= d1 1029617) ; last day of 2820 year cycle
113 (1- n1)
115 -2345))) ; years before year 1
116 (if (< year 1)
117 (1- year) ; no year zero
118 year)))
120 (defun calendar-persian-from-absolute (date)
121 "Compute the Persian equivalent for absolute date DATE.
122 The result is a list of the form (MONTH DAY YEAR).
123 The absolute date is the number of days elapsed since the imaginary
124 Gregorian date Sunday, December 31, 1 BC."
125 (let* ((year (calendar-persian-year-from-absolute date))
126 (month ; search forward from Farvardin
127 (1+ (calendar-sum m 1
128 (> date
129 (calendar-absolute-from-persian
130 (list
132 (persian-calendar-last-day-of-month m year)
133 year)))
134 1)))
135 (day ; calculate the day by subtraction
136 (- date (1- (calendar-absolute-from-persian
137 (list month 1 year))))))
138 (list month day year)))
140 ;;;###cal-autoload
141 (defun calendar-persian-date-string (&optional date)
142 "String of Persian date of Gregorian DATE, default today."
143 (let* ((persian-date (calendar-persian-from-absolute
144 (calendar-absolute-from-gregorian
145 (or date (calendar-current-date)))))
146 (y (extract-calendar-year persian-date))
147 (m (extract-calendar-month persian-date)))
148 (let ((monthname (aref persian-calendar-month-name-array (1- m)))
149 (day (int-to-string (extract-calendar-day persian-date)))
150 (dayname nil)
151 (month (int-to-string m))
152 (year (int-to-string y)))
153 (mapconcat 'eval calendar-date-display-form ""))))
155 ;;;###cal-autoload
156 (defun calendar-print-persian-date ()
157 "Show the Persian calendar equivalent of the selected date."
158 (interactive)
159 (message "Persian date: %s"
160 (calendar-persian-date-string (calendar-cursor-to-date t))))
162 ;;;###cal-autoload
163 (defun calendar-goto-persian-date (date &optional noecho)
164 "Move cursor to Persian date DATE.
165 Echo Persian date unless NOECHO is non-nil."
166 (interactive (persian-prompt-for-date))
167 (calendar-goto-date (calendar-gregorian-from-absolute
168 (calendar-absolute-from-persian date)))
169 (or noecho (calendar-print-persian-date)))
171 (defun persian-prompt-for-date ()
172 "Ask for a Persian date."
173 (let* ((year (calendar-read
174 "Persian calendar year (not 0): "
175 (lambda (x) (not (zerop x)))
176 (int-to-string
177 (extract-calendar-year
178 (calendar-persian-from-absolute
179 (calendar-absolute-from-gregorian
180 (calendar-current-date)))))))
181 (completion-ignore-case t)
182 (month (cdr (assoc
183 (completing-read
184 "Persian calendar month name: "
185 (mapcar 'list
186 (append persian-calendar-month-name-array nil))
187 nil t)
188 (calendar-make-alist persian-calendar-month-name-array
189 1))))
190 (last (persian-calendar-last-day-of-month month year))
191 (day (calendar-read
192 (format "Persian calendar day (1-%d): " last)
193 (lambda (x) (and (< 0 x) (<= x last))))))
194 (list (list month day year))))
196 (defvar date)
198 ;; To be called from list-sexp-diary-entries, where DATE is bound.
199 ;;;###diary-autoload
200 (defun diary-persian-date ()
201 "Persian calendar equivalent of date diary entry."
202 (format "Persian date: %s" (calendar-persian-date-string date)))
204 (provide 'cal-persia)
206 ;; arch-tag: 2832383c-e4b4-4dc2-8ee9-cfbdd53e5e2d
207 ;;; cal-persia.el ends here