Merge branch 'master' into comment-cache
[emacs.git] / lisp / calendar / appt.el
blob08f1bf49788ce0e898f86da4451c60302308ad69
1 ;;; appt.el --- appointment notification functions
3 ;; Copyright (C) 1989-1990, 1994, 1998, 2001-2017 Free Software
4 ;; Foundation, Inc.
6 ;; Author: Neil Mager <neilm@juliet.ll.mit.edu>
7 ;; Maintainer: Glenn Morris <rgm@gnu.org>
8 ;; Keywords: calendar
9 ;; Package: calendar
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 of the License, or
16 ;; (at your option) 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. If not, see <http://www.gnu.org/licenses/>.
26 ;;; Commentary:
29 ;; appt.el - visible and/or audible notification of
30 ;; appointments from diary file.
33 ;; Thanks to Edward M. Reingold for much help and many suggestions,
34 ;; And to many others for bug fixes and suggestions.
37 ;; This functions in this file will alert the user of a
38 ;; pending appointment based on his/her diary file. This package
39 ;; is documented in the Emacs manual.
41 ;; To activate this package, simply use (appt-activate 1).
42 ;; A `diary-file' with appointments of the format described in the
43 ;; documentation of the function `appt-check' is required.
44 ;; Relevant customizable variables are also listed in the
45 ;; documentation of that function.
47 ;; Today's appointment list is initialized from the diary when this
48 ;; package is activated. Additionally, the appointments list is
49 ;; recreated automatically at 12:01am for those who do not logout
50 ;; every day or are programming late. It is also updated when the
51 ;; `diary-file' (or a file it includes) is saved. Calling
52 ;; `appt-check' with an argument (or re-enabling the package) forces a
53 ;; re-initialization at any time.
55 ;; In order to add or delete items from today's list, without
56 ;; changing the diary file, use `appt-add' and `appt-delete'.
59 ;; Brief internal description - Skip this if you are not interested!
61 ;; The function `appt-make-list' creates the appointments list which
62 ;; `appt-check' reads.
64 ;; You can change the way the appointment window is created/deleted by
65 ;; setting the variables `appt-disp-window-function' and
66 ;; `appt-delete-window-function'. For instance, you could be set them
67 ;; to functions that display appointments in pop-up frames, which are
68 ;; lowered or iconified after `appt-display-interval' minutes.
71 ;;; Code:
73 (require 'diary-lib)
76 (defgroup appt nil
77 "Appointment notification."
78 :prefix "appt-"
79 :group 'calendar)
81 (defcustom appt-message-warning-time 12
82 "Default time in minutes before an appointment that the warning begins.
83 You probably want to make `appt-display-interval' a factor of this."
84 :type 'integer
85 :group 'appt)
87 (defcustom appt-warning-time-regexp "warntime \\([0-9]+\\)"
88 "Regexp matching a string giving the warning time for an appointment.
89 The first subexpression matches the time in minutes (an integer).
90 This overrides the default `appt-message-warning-time'.
91 You may want to put this inside a diary comment (see `diary-comment-start').
92 For example, to be warned 30 minutes in advance of an appointment:
93 2011/06/01 12:00 Do something ## warntime 30
95 :version "24.1"
96 :type 'regexp
97 :group 'appt)
99 (defcustom appt-audible t
100 "Non-nil means beep to indicate appointment."
101 :type 'boolean
102 :group 'appt)
104 ;; TODO - add popup.
105 (defcustom appt-display-format 'window
106 "How appointment reminders should be displayed.
107 The options are:
108 window - use a separate window
109 echo - use the echo area
110 nil - no visible reminder.
111 See also `appt-audible' and `appt-display-mode-line'."
112 :type '(choice
113 (const :tag "Separate window" window)
114 (const :tag "Echo-area" echo)
115 (const :tag "No visible display" nil))
116 :group 'appt
117 :version "24.1") ; no longer inherit from deleted obsolete variables
119 (defcustom appt-display-mode-line t
120 "Non-nil means display minutes to appointment and time on the mode line.
121 This is in addition to any other display of appointment messages.
122 The mode line updates every minute, independent of the value of
123 `appt-display-interval'."
124 :type 'boolean
125 :group 'appt)
127 (defcustom appt-display-duration 10
128 "The number of seconds an appointment message is displayed.
129 Only relevant if reminders are to be displayed in their own window."
130 :type 'integer
131 :group 'appt)
133 (defcustom appt-display-diary t
134 "Non-nil displays the diary when the appointment list is first initialized.
135 This occurs when this package is first activated, and then at
136 midnight when the appointment list updates."
137 :type 'boolean
138 :group 'appt)
140 (defcustom appt-display-interval 3
141 "Interval in minutes at which to display appointment reminders.
142 Once an appointment becomes due, Emacs displays reminders every
143 `appt-display-interval' minutes. You probably want to make
144 `appt-message-warning-time' be a multiple of this, so that you get
145 a final message displayed precisely when the appointment is due.
147 Note that this variable controls the interval at which
148 `appt-display-message' is called. The mode line display (if active)
149 always updates every minute."
150 :type 'integer
151 :group 'appt)
153 (defcustom appt-disp-window-function 'appt-disp-window
154 "Function called to display appointment window.
155 Only relevant if reminders are being displayed in a window.
156 It should take three string arguments: the number of minutes till
157 the appointment, the current time, and the text of the appointment.
158 Each argument may also be a list, if multiple appointments are
159 relevant at any one time."
160 :type 'function
161 :group 'appt)
163 (defcustom appt-delete-window-function 'appt-delete-window
164 "Function called to remove appointment window and buffer.
165 Only relevant if reminders are being displayed in a window."
166 :type 'function
167 :group 'appt)
170 ;;; Internal variables below this point.
172 (defconst appt-buffer-name "*appt-buf*"
173 "Name of the appointments buffer.")
175 ;; TODO Turn this into an alist? It would be easier to add more
176 ;; optional elements.
177 ;; Why is the first element (MINUTES) rather than just MINUTES?
178 ;; It may just inherit from diary-entries-list, where we have
179 ;; ((MONTH DAY YEAR) ENTRY)
180 (defvar appt-time-msg-list nil
181 "The list of appointments for today.
182 Use `appt-add' and `appt-delete' to add and delete appointments.
183 The original list is generated from today's `diary-entries-list', and
184 can be regenerated using the function `appt-check'.
185 Each element of the generated list has the form
186 \((MINUTES) STRING [FLAG] [WARNTIME])
187 where MINUTES is the time in minutes of the appointment after midnight,
188 and STRING is the description of the appointment.
189 FLAG and WARNTIME are not always present. A non-nil FLAG
190 indicates that the element was made with `appt-add', so calling
191 `appt-make-list' again should preserve it. If WARNTIME is non-nil,
192 it is an integer to use in place of `appt-message-warning-time'.")
194 (defconst appt-max-time (1- (* 24 60))
195 "11:59pm in minutes - number of minutes in a day minus 1.")
197 (defvar appt-mode-string nil
198 "String being displayed in the mode line saying you have an appointment.
199 The actual string includes the amount of time till the appointment.
200 Only used if `appt-display-mode-line' is non-nil.")
201 (put 'appt-mode-string 'risky-local-variable t) ; for 'face property
203 (defvar appt-prev-comp-time nil
204 "Time of day (mins since midnight) at which we last checked appointments.")
206 (defvar appt-display-count 0
207 "Internal variable used to count number of consecutive reminders.")
209 (defvar appt-timer nil
210 "Timer used for diary appointment notifications (`appt-check').
211 If this is non-nil, appointment checking is active.")
214 ;;; Functions.
216 (defun appt-display-message (string mins)
217 "Display a reminder about an appointment.
218 The string STRING describes the appointment, due in integer MINS minutes.
219 The arguments may also be lists, where each element relates to a
220 separate appointment. The variable `appt-display-format' controls
221 the format of the visible reminder. If `appt-audible' is non-nil,
222 also calls `beep' for an audible reminder."
223 (if appt-audible (beep 1))
224 ;; Backwards compatibility: avoid passing lists to a-d-w-f if not necessary.
225 (and (listp mins)
226 (= (length mins) 1)
227 (setq mins (car mins)
228 string (car string)))
229 (cond ((eq appt-display-format 'window)
230 ;; TODO use calendar-month-abbrev-array rather than %b?
231 (let ((time (format-time-string "%a %b %e "))
232 err)
233 (condition-case err
234 (funcall appt-disp-window-function
235 (if (listp mins)
236 (mapcar 'number-to-string mins)
237 (number-to-string mins))
238 time string)
239 (wrong-type-argument
240 (if (not (listp mins))
241 (signal (car err) (cdr err))
242 (message "Argtype error in `appt-disp-window-function' - \
243 update it for multiple appts?")
244 ;; Fallback to just displaying the first appt, as we used to.
245 (funcall appt-disp-window-function
246 (number-to-string (car mins)) time
247 (car string))))))
248 (run-at-time (format "%d sec" appt-display-duration)
250 appt-delete-window-function))
251 ((eq appt-display-format 'echo)
252 (message "%s" (if (listp string)
253 (mapconcat 'identity string "\n")
254 string)))))
256 (defun appt-mode-line (min-to-app &optional abbrev)
257 "Return an appointment string suitable for use in the mode-line.
258 MIN-TO-APP is a list of minutes, as strings.
259 If ABBREV is non-nil, abbreviates some text."
260 ;; All this silliness is just to make the formatting slightly nicer.
261 (let* ((multiple (> (length min-to-app) 1))
262 (imin (if (or (not multiple)
263 (not (delete (car min-to-app) min-to-app)))
264 (car min-to-app))))
265 (format "%s%s %s"
266 (if abbrev "App't" "Appointment")
267 (if multiple "s" "")
268 (if (equal imin "0") "now"
269 (format "in %s %s"
270 (or imin (mapconcat 'identity min-to-app ","))
271 (if abbrev "min."
272 (format "minute%s" (if (equal imin "1") "" "s"))))))))
274 (defun appt-check (&optional force)
275 "Check for an appointment and update any reminder display.
276 If optional argument FORCE is non-nil, reparse the diary file for
277 appointments. Otherwise the diary file is only parsed once per day,
278 or when it (or a file it includes) is saved.
280 Note: the time must be the first thing in the line in the diary
281 for a warning to be issued. The format of the time can be either
282 24 hour or am/pm. For example:
284 02/23/89
285 18:00 Dinner
287 Thursday
288 11:45am Lunch meeting.
290 Appointments are checked every `appt-display-interval' minutes.
291 The following variables control appointment notification:
293 `appt-display-format'
294 Controls the format in which reminders are displayed.
296 `appt-audible'
297 Non-nil means there is an audible component to reminders.
299 `appt-message-warning-time'
300 The default number of minutes in advance at which reminders
301 should start.
303 `appt-display-mode-line'
304 Non-nil means show in the mode line a countdown to the
305 time of each appointment, once reminders start.
307 `appt-display-interval'
308 Interval in minutes at which to display appointment messages.
310 `appt-display-diary'
311 Non-nil means display the diary whenever the appointment list is
312 initialized (e.g. the first time we check for appointments each day).
314 The following variables are only relevant if reminders are being
315 displayed in a window:
317 `appt-display-duration'
318 Number of seconds for which an appointment message is displayed.
320 `appt-disp-window-function'
321 Function called to display appointment window.
323 `appt-delete-window-function'
324 Function called to remove appointment window and buffer."
325 (interactive "P") ; so people can force updates
326 (let* ((prev-appt-mode-string appt-mode-string)
327 (prev-appt-display-count appt-display-count)
328 ;; Convert current time to minutes after midnight (12.01am = 1).
329 (now (decode-time))
330 (now-mins (+ (* 60 (nth 2 now)) (nth 1 now)))
331 appt-mins appt-warn-time min-to-app min-list string-list)
332 (save-excursion ; FIXME ?
333 ;; At first check in any day, update appointments to today's list.
334 (if (or force ; eg initialize, diary save
335 (null appt-prev-comp-time) ; first check
336 (< now-mins appt-prev-comp-time)) ; new day
337 (ignore-errors
338 (let ((diary-hook (if (assoc 'appt-make-list diary-hook)
339 diary-hook
340 (cons 'appt-make-list diary-hook))))
341 (if appt-display-diary
342 (diary)
343 ;; Not displaying the diary, so we can ignore
344 ;; diary-number-of-entries. Since appt.el only
345 ;; works on a daily basis, no need for more entries.
346 (diary-list-entries (calendar-current-date) 1 t)))))
347 ;; Reset everything now in case we somehow missed a minute,
348 ;; or (more likely) an appt was deleted. (This is the only
349 ;; reason we need prev-appt-display-count.)
350 (setq appt-prev-comp-time now-mins
351 appt-mode-string nil
352 appt-display-count 0)
353 ;; If there are entries in the list get each time off of the
354 ;; list and calculate the number of minutes until the appointment.
355 ;; TODO we are looping over all the appointments each time.
356 ;; We could instead sort them by the time at which we need to
357 ;; start warning. But then removing entries in the past becomes
358 ;; less straightforward.
359 (dolist (appt appt-time-msg-list)
360 ;; Remove any entries that are in the past.
361 ;; FIXME how can there be any such entries, given that this
362 ;; function removes entries when they hit zero minutes,
363 ;; and appt-make-list doesn't add any in the past in the first place?
364 (if (< (setq appt-mins (caar appt)) now-mins)
365 (setq appt-time-msg-list (cdr appt-time-msg-list))
366 (setq appt-warn-time (or (nth 3 appt) appt-message-warning-time)
367 min-to-app (- appt-mins now-mins))
368 ;; If we have an appointment between midnight and
369 ;; `appt-warn-time' minutes after midnight, we
370 ;; must begin to issue a message before midnight. Midnight
371 ;; is considered 0 minutes and 11:59pm is 1439
372 ;; minutes. Therefore we must recalculate the minutes to
373 ;; appointment variable. It is equal to the number of
374 ;; minutes before midnight plus the number of minutes after
375 ;; midnight our appointment is.
376 ;; FIXME but appt-make-list constructs appt-time-msg-list to only
377 ;; contain entries with today's date, so this cannot work?
378 ;; Also above we just removed anything with appt-mins < now-mins.
379 (if (and (< appt-mins appt-warn-time)
380 (> (+ now-mins appt-warn-time) appt-max-time))
381 (setq min-to-app (+ (- (1+ appt-max-time) now-mins)
382 appt-mins)))
383 ;; Issue warning if the appointment time is within the warning time.
384 (when (and (<= min-to-app appt-warn-time)
385 (>= min-to-app 0))
386 (push min-to-app min-list)
387 (push (cadr appt) string-list)
388 ;; When an appointment is reached, delete it from the list.
389 (if (zerop min-to-app)
390 (setq appt-time-msg-list (delete appt appt-time-msg-list))))))
391 (when min-list
392 (setq min-list (nreverse min-list)
393 string-list (nreverse string-list))
394 ;; This is true every appt-display-interval minutes from the
395 ;; time at which we first started reminding.
396 ;; TODO in the case of multiple appointments, whose interval
397 ;; should we respect? The first one that we started warning about?
398 ;; That's what we do now, and this makes sense if you interpret
399 ;; a-d-i as "don't remind me any more frequently than this".
400 ;; But should we always show a message when a new appt becomes due?
401 ;; When one appt gets removed, should we switch to the interval
402 ;; of the next?
403 (and (zerop (mod prev-appt-display-count appt-display-interval))
404 (appt-display-message string-list min-list))
405 (when appt-display-mode-line
406 (setq appt-mode-string
407 (concat " " (propertize
408 (appt-mode-line (mapcar 'number-to-string
409 min-list) t)
410 'face 'mode-line-emphasis))))
411 ;; Reset count to 0 in case we display another appt on the next cycle.
412 (setq appt-display-count (if (eq '(0) min-list) 0
413 (1+ prev-appt-display-count))))
414 ;; If we have changed the mode line string, redisplay all mode lines.
415 (and appt-display-mode-line
416 (not (string-equal appt-mode-string prev-appt-mode-string))
417 (progn
418 (force-mode-line-update t)
419 ;; If the string now has a notification, redisplay right now.
420 (if appt-mode-string
421 (sit-for 0)))))))
423 (defun appt-disp-window (min-to-app new-time appt-msg)
424 "Display appointment due in MIN-TO-APP (a string) minutes.
425 NEW-TIME is a string giving the current date.
426 Displays the appointment message APPT-MSG in a separate buffer.
427 The arguments may also be lists, where each element relates to a
428 separate appointment."
429 (let ((this-window (selected-window))
430 (appt-disp-buf (get-buffer-create appt-buffer-name)))
431 ;; Make sure we're not in the minibuffer before splitting the window.
432 ;; FIXME this seems needlessly complicated?
433 (when (minibufferp)
434 (other-window 1)
435 (and (minibufferp) (display-multi-frame-p) (other-frame 1)))
436 (if (cdr (assq 'unsplittable (frame-parameters)))
437 ;; In an unsplittable frame, use something somewhere else.
438 (progn
439 (set-buffer appt-disp-buf)
440 (display-buffer appt-disp-buf))
441 (unless (or (special-display-p (buffer-name appt-disp-buf))
442 (same-window-p (buffer-name appt-disp-buf)))
443 ;; By default, split the bottom window and use the lower part.
444 (appt-select-lowest-window)
445 ;; Split the window, unless it's too small to do so.
446 (when (>= (window-height) (* 2 window-min-height))
447 (select-window (split-window))))
448 (switch-to-buffer appt-disp-buf))
449 (or (listp min-to-app)
450 (setq min-to-app (list min-to-app)
451 appt-msg (list appt-msg)))
452 ;; I don't really see the point of the new-time argument.
453 ;; It repeatedly reminds you of the date?
454 ;; It would make more sense if it was eg the time of the appointment.
455 ;; Let's allow it to be a list or not independent of the other elements.
456 (or (listp new-time)
457 (setq new-time (list new-time)))
458 ;; FIXME Link to diary entry?
459 (calendar-set-mode-line
460 (format " %s. %s" (appt-mode-line min-to-app)
461 (mapconcat 'identity new-time ", ")))
462 (setq buffer-read-only nil
463 buffer-undo-list t)
464 (erase-buffer)
465 ;; If we have appointments at different times, prepend the times.
466 (if (or (= 1 (length min-to-app))
467 (not (delete (car min-to-app) min-to-app)))
468 (insert (mapconcat 'identity appt-msg "\n"))
469 (dotimes (i (length appt-msg))
470 (insert (format "%s%sm: %s" (if (> i 0) "\n" "")
471 (nth i min-to-app) (nth i appt-msg)))))
472 (shrink-window-if-larger-than-buffer (get-buffer-window appt-disp-buf t))
473 (set-buffer-modified-p nil)
474 (setq buffer-read-only t)
475 (raise-frame)
476 (select-window this-window)))
478 (defun appt-delete-window ()
479 "Function called to undisplay appointment messages.
480 Usually just deletes the appointment buffer."
481 (let ((window (get-buffer-window appt-buffer-name t)))
482 (and window
483 (or (eq window (frame-root-window (window-frame window)))
484 (delete-window window))))
485 (let ((buffer (get-buffer appt-buffer-name)))
486 (when buffer
487 (kill-buffer buffer)))
488 (if appt-audible
489 (beep 1)))
491 (defun appt-select-lowest-window ()
492 "Select the lowest window on the frame."
493 (let ((lowest-window (selected-window))
494 (bottom-edge (nth 3 (window-edges)))
495 next-bottom-edge)
496 (walk-windows (lambda (w)
497 (when (< bottom-edge (setq next-bottom-edge
498 (nth 3 (window-edges w))))
499 (setq bottom-edge next-bottom-edge
500 lowest-window w))) 'nomini)
501 (select-window lowest-window)))
503 (defconst appt-time-regexp
504 "[0-9]?[0-9]\\(h\\([0-9][0-9]\\)?\\|[:.][0-9][0-9]\\)\\(am\\|pm\\)?")
506 ;;;###autoload
507 (defun appt-add (time msg &optional warntime)
508 "Add an appointment for today at TIME with message MSG.
509 The time should be in either 24 hour format or am/pm format.
510 Optional argument WARNTIME is an integer (or string) giving the number
511 of minutes before the appointment at which to start warning.
512 The default is `appt-message-warning-time'."
513 (interactive "sTime (hh:mm[am/pm]): \nsMessage: \n\
514 sMinutes before the appointment to start warning: ")
515 (unless (string-match appt-time-regexp time)
516 (user-error "Unacceptable time-string"))
517 (and (stringp warntime)
518 (setq warntime (unless (string-equal warntime "")
519 (string-to-number warntime))))
520 (and warntime
521 (not (integerp warntime))
522 (user-error "Argument WARNTIME must be an integer, or nil"))
523 (or appt-timer (appt-activate))
524 (let ((time-msg (list (list (appt-convert-time time))
525 (concat time " " msg) t)))
526 ;; It is presently nonsensical to have multiple warnings about
527 ;; the same appointment with just different delays, but it might
528 ;; not always be so. TODO
529 (if warntime (setq time-msg (append time-msg (list warntime))))
530 (unless (member time-msg appt-time-msg-list)
531 (setq appt-time-msg-list
532 (appt-sort-list (nconc appt-time-msg-list (list time-msg)))))))
534 (defun appt-delete ()
535 "Delete an appointment from the list of appointments."
536 (interactive)
537 (let ((tmp-msg-list appt-time-msg-list))
538 (dolist (element tmp-msg-list)
539 (if (y-or-n-p (concat "Delete "
540 ;; We want to quote any doublequotes in the
541 ;; string, as well as put doublequotes around it.
542 (prin1-to-string
543 (substring-no-properties (cadr element) 0))
544 " from list? "))
545 (setq appt-time-msg-list (delq element appt-time-msg-list)))))
546 (appt-check)
547 (message ""))
550 (defvar number)
551 (defvar original-date)
552 (defvar diary-entries-list)
554 (defun appt-make-list ()
555 "Update the appointments list from today's diary buffer.
556 The time must be at the beginning of a line for it to be
557 put in the appointments list (see examples in documentation of
558 the function `appt-check'). We assume that the variables DATE and
559 NUMBER hold the arguments that `diary-list-entries' received.
560 They specify the range of dates that the diary is being processed for.
562 Any appointments made with `appt-add' are not affected by this function."
563 ;; We have something to do if the range of dates that the diary is
564 ;; considering includes the current date.
565 (if (and (not (calendar-date-compare
566 (list (calendar-current-date))
567 (list original-date)))
568 (calendar-date-compare
569 (list (calendar-current-date))
570 (list (calendar-gregorian-from-absolute
571 (+ (calendar-absolute-from-gregorian original-date)
572 number)))))
573 (save-excursion
574 ;; Clear the appointments list, then fill it in from the diary.
575 (dolist (elt appt-time-msg-list)
576 ;; Delete any entries that were not made with appt-add.
577 (unless (nth 2 elt)
578 (setq appt-time-msg-list
579 (delq elt appt-time-msg-list))))
580 (if diary-entries-list
581 ;; Cycle through the entry-list (diary-entries-list)
582 ;; looking for entries beginning with a time. If the
583 ;; entry begins with a time, add it to the
584 ;; appt-time-msg-list. Then sort the list.
585 (let ((entry-list diary-entries-list)
586 time-string literal)
587 ;; Below, we assume diary-entries-list was in date
588 ;; order. It is, unless something on
589 ;; diary-list-entries-hook has changed it, eg
590 ;; diary-include-other-files (bug#7019). It must be
591 ;; in date order if number = 1.
592 (and diary-list-entries-hook
593 appt-display-diary
594 (not (eq diary-number-of-entries 1))
595 (not (memq (car (last diary-list-entries-hook))
596 '(diary-sort-entries sort-diary-entries)))
597 (setq entry-list (sort entry-list 'diary-entry-compare)))
598 ;; Skip diary entries for dates before today.
599 (while (and entry-list
600 (calendar-date-compare
601 (car entry-list) (list (calendar-current-date))))
602 (setq entry-list (cdr entry-list)))
603 ;; Parse the entries for today.
604 (while (and entry-list
605 (calendar-date-equal
606 (calendar-current-date) (caar entry-list)))
607 (setq time-string (cadr (car entry-list))
608 ;; Including any comments.
609 literal (or (nth 2 (nth 3 (car entry-list)))
610 time-string))
611 (while (string-match appt-time-regexp time-string)
612 (let* ((beg (match-beginning 0))
613 ;; Get just the time for this appointment.
614 (only-time (match-string 0 time-string))
615 ;; Find the end of this appointment
616 ;; (the start of the next).
617 (end (string-match
618 (concat "\n[ \t]*" appt-time-regexp)
619 time-string
620 (match-end 0)))
621 (warntime
622 (if (string-match appt-warning-time-regexp literal)
623 (string-to-number (match-string 1 literal))))
624 ;; Get the whole string for this appointment.
625 (appt-time-string
626 (substring time-string beg end))
627 ;; FIXME why the list? It makes the first
628 ;; element (MINUTES) rather than MINUTES.
629 (appt-time (list (appt-convert-time only-time)))
630 (time-msg (append
631 (list appt-time appt-time-string)
632 (if warntime (list nil warntime)))))
633 ;; Add this appointment to appt-time-msg-list.
634 (setq appt-time-msg-list
635 (nconc appt-time-msg-list (list time-msg))
636 ;; Discard this appointment from the string.
637 ;; (This allows for multiple appts per entry.)
638 time-string
639 (if end (substring time-string end) ""))
640 ;; Similarly, discard the start of literal.
641 (and (> (length time-string) 0)
642 (string-match appt-time-regexp literal)
643 (setq end (string-match
644 (concat "\n[ \t]*" appt-time-regexp)
645 literal (match-end 0)))
646 (setq literal (substring literal end)))))
647 (setq entry-list (cdr entry-list)))))
648 (setq appt-time-msg-list (appt-sort-list appt-time-msg-list))
649 ;; Convert current time to minutes after midnight (12:01am = 1),
650 ;; and remove elements in the list that are in the past.
651 (let* ((now (decode-time))
652 (now-mins (+ (* 60 (nth 2 now)) (nth 1 now))))
653 (while (and appt-time-msg-list
654 (< (caar (car appt-time-msg-list)) now-mins))
655 (setq appt-time-msg-list (cdr appt-time-msg-list)))))))
658 (defun appt-sort-list (appt-list)
659 "Sort an appointment list, putting earlier items at the front.
660 APPT-LIST is a list of the same format as `appt-time-msg-list'."
661 (sort appt-list (lambda (e1 e2) (< (caar e1) (caar e2)))))
664 (defun appt-convert-time (time2conv)
665 "Convert hour:min[am/pm] format TIME2CONV to minutes from midnight.
666 A period (.) can be used instead of a colon (:) to separate the
667 hour and minute parts."
668 ;; Formats that should be accepted:
669 ;; 10:00 10.00 10h00 10h 10am 10:00am 10.00am
670 (let ((min (if (string-match "[h:.]\\([0-9][0-9]\\)" time2conv)
671 (string-to-number (match-string 1 time2conv))
673 (hr (if (string-match "[0-9]*[0-9]" time2conv)
674 (string-to-number (match-string 0 time2conv))
675 0)))
676 ;; Convert the time appointment time into 24 hour time.
677 (cond ((and (string-match "pm" time2conv) (< hr 12))
678 (setq hr (+ 12 hr)))
679 ((and (string-match "am" time2conv) (= hr 12))
680 (setq hr 0)))
681 ;; Convert the actual time into minutes.
682 (+ (* hr 60) min)))
684 (defun appt-update-list ()
685 "If the current buffer is visiting the diary, update appointments.
686 This function also acts on any file listed in `diary-included-files'.
687 It is intended for use with `write-file-functions'."
688 (and (member buffer-file-name (append diary-included-files
689 (list (expand-file-name diary-file))))
690 appt-timer
691 (let ((appt-display-diary nil))
692 (appt-check t)))
693 nil)
695 ;;;###autoload
696 (defun appt-activate (&optional arg)
697 "Toggle checking of appointments.
698 With optional numeric argument ARG, turn appointment checking on if
699 ARG is positive, otherwise off."
700 (interactive "P")
701 (let ((appt-active appt-timer))
702 (setq appt-active (if arg (> (prefix-numeric-value arg) 0)
703 (not appt-active)))
704 (remove-hook 'write-file-functions 'appt-update-list)
705 (or global-mode-string (setq global-mode-string '("")))
706 (delq 'appt-mode-string global-mode-string)
707 (when appt-timer
708 (cancel-timer appt-timer)
709 (setq appt-timer nil))
710 (if appt-active
711 (progn
712 (add-hook 'write-file-functions 'appt-update-list)
713 (setq appt-timer (run-at-time t 60 'appt-check)
714 global-mode-string
715 (append global-mode-string '(appt-mode-string)))
716 (appt-check t)
717 (message "Appointment reminders enabled%s"
718 ;; Someone might want to use appt-add without a diary.
719 (if (ignore-errors (diary-check-diary-file))
721 " (no diary file found)")))
722 (message "Appointment reminders disabled"))))
725 (provide 'appt)
727 ;;; appt.el ends here