Mercurial > emacs
annotate lisp/=timer.el @ 2002:4c9113b2d6e0
(S_IFLNK): Add #undef.
(C_SWITCH_SYSTEM): Add conditional definition.
(NO_ASM, USE_UTIME, NO_X_DESTROY_DATABASE): Defined.
(LIB_STANDARD): Alternate definition if __GNUC__.
(SIGTSTP): #undef deleted.
(LIBS_SYSTEM): Define only if HAVE_X_WINDOWS.
(USG_SHARED_LIBRARIES, CLASH_DETECTION, NO_FCHMOD): Define.
(HAVE_TIMEVAL): Do not define.
(NO_ASM): Only define once.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 02 Mar 1993 22:25:16 +0000 |
parents | f7da227e3e68 |
children | 3daa7f080f2b |
rev | line source |
---|---|
657
fec3f9a1e3e5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
1 ;;; timer.el --- run a function with args at some time in future |
fec3f9a1e3e5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
2 |
1747
aae774aae3de
(run-at-time): Use a pipe to talk to the timer process.
Roland McGrath <roland@gnu.org>
parents:
1577
diff
changeset
|
3 ;; Copyright (C) 1990, 1993 Free Software Foundation, Inc. |
840
113281b361ec
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
4 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
657
diff
changeset
|
5 ;; Maintainer: FSF |
45 | 6 |
7 ;; This file is part of GNU Emacs. | |
8 | |
9 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
10 ;; it under the terms of the GNU General Public License as published by | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
657
diff
changeset
|
11 ;; the Free Software Foundation; either version 2, or (at your option) |
45 | 12 ;; any later version. |
13 | |
14 ;; GNU Emacs is distributed in the hope that it will be useful, | |
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 ;; GNU General Public License for more details. | |
18 | |
19 ;; You should have received a copy of the GNU General Public License | |
20 ;; along with GNU Emacs; see the file COPYING. If not, write to | |
21 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
22 | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
657
diff
changeset
|
23 ;;; Code: |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
657
diff
changeset
|
24 |
45 | 25 (defvar timer-process nil) |
26 (defvar timer-alist ()) | |
27 (defvar timer-out "") | |
28 (defvar timer-dont-exit nil | |
29 ;; this is useful for functions which will be doing their own erratic | |
30 ;; rescheduling or people who otherwise expect to use the process frequently | |
31 "If non-nil, don't exit the timer process when no more events are pending.") | |
32 | |
584 | 33 ;;;###autoload |
45 | 34 (defun run-at-time (time repeat function &rest args) |
35 "Run a function at a time, and optionally on a regular interval. | |
36 Arguments are TIME, REPEAT, FUNCTION &rest ARGS. | |
37 TIME, a string, can be specified absolutely or relative to now. | |
38 REPEAT, an integer number of seconds, is the interval on which to repeat | |
1983
f7da227e3e68
* timer.el (run-at-time): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1753
diff
changeset
|
39 the call to the function. If REPEAT is nil, call it just once. |
f7da227e3e68
* timer.el (run-at-time): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1753
diff
changeset
|
40 |
f7da227e3e68
* timer.el (run-at-time): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1753
diff
changeset
|
41 Absolute times may be specified in a wide variety of formats; |
f7da227e3e68
* timer.el (run-at-time): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1753
diff
changeset
|
42 Something of the form `HOUR:MIN:SEC TIMEZONE MONTH/DAY/YEAR', where |
f7da227e3e68
* timer.el (run-at-time): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1753
diff
changeset
|
43 all fields are numbers, will work; the format used by the Unix `date' |
f7da227e3e68
* timer.el (run-at-time): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1753
diff
changeset
|
44 command will work too. |
f7da227e3e68
* timer.el (run-at-time): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1753
diff
changeset
|
45 |
f7da227e3e68
* timer.el (run-at-time): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1753
diff
changeset
|
46 Relative times may be specified as a series of numbers followed by units: |
f7da227e3e68
* timer.el (run-at-time): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1753
diff
changeset
|
47 1 min denotes one minute from now. |
f7da227e3e68
* timer.el (run-at-time): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1753
diff
changeset
|
48 min does too. |
f7da227e3e68
* timer.el (run-at-time): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1753
diff
changeset
|
49 1 min 5 sec denotes 65 seconds from now. |
f7da227e3e68
* timer.el (run-at-time): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1753
diff
changeset
|
50 1 min 2 sec 3 hour 4 day 5 week 6 fortnight 7 month 8 year |
f7da227e3e68
* timer.el (run-at-time): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
1753
diff
changeset
|
51 denotes the sum of all the given durations from now." |
45 | 52 (interactive "sRun at time: \nNRepeat interval: \naFunction: ") |
53 (cond ((or (not timer-process) | |
54 (memq (process-status timer-process) '(exit signal nil))) | |
55 (if timer-process (delete-process timer-process)) | |
1747
aae774aae3de
(run-at-time): Use a pipe to talk to the timer process.
Roland McGrath <roland@gnu.org>
parents:
1577
diff
changeset
|
56 (setq timer-process (let ((process-connection-type nil)) |
aae774aae3de
(run-at-time): Use a pipe to talk to the timer process.
Roland McGrath <roland@gnu.org>
parents:
1577
diff
changeset
|
57 (start-process "timer" nil "timer")) |
45 | 58 timer-alist nil) |
59 (set-process-filter timer-process 'timer-process-filter) | |
60 (set-process-sentinel timer-process 'timer-process-sentinel) | |
61 (process-kill-without-query timer-process)) | |
62 ((eq (process-status timer-process) 'stop) | |
63 (continue-process timer-process))) | |
64 ;; There should be a living, breathing timer process now | |
65 (let ((token (concat (current-time-string) "-" (length timer-alist)))) | |
1753
852bc0022185
Use process-send-string instead of send-string.
Michael I. Bushnell <mib@gnu.org>
parents:
1747
diff
changeset
|
66 (process-send-string timer-process (concat time "@" token "\n")) |
45 | 67 (setq timer-alist (cons (list token repeat function args) timer-alist)))) |
68 | |
69 (defun timer-process-filter (proc str) | |
70 (setq timer-out (concat timer-out str)) | |
71 (let (do token error) | |
72 (while (string-match "\n" timer-out) | |
73 (setq token (substring timer-out 0 (match-beginning 0)) | |
74 do (assoc token timer-alist) | |
75 timer-out (substring timer-out (match-end 0))) | |
76 (cond | |
77 (do (apply (nth 2 do) (nth 3 do)) ; do it | |
78 (if (natnump (nth 1 do)) ; reschedule it | |
998 | 79 (send-string proc (concat (nth 1 do) " sec@" (car do) "\n")) |
45 | 80 (setq timer-alist (delq do timer-alist)))) |
998 | 81 ((string-match "timer: \\([^:]+\\): \\([^@]*\\)@\\(.*\\)$" token) |
45 | 82 (setq error (substring token (match-beginning 1) (match-end 1)) |
83 do (substring token (match-beginning 2) (match-end 2)) | |
84 token (assoc (substring token (match-beginning 3) (match-end 3)) | |
85 timer-alist) | |
86 timer-alist (delq token timer-alist)) | |
87 (ding 'no-terminate) ; using error function in process filters is rude | |
88 (message "%s for %s; couldn't set at \"%s\"" error (nth 2 token) do)))) | |
89 (or timer-alist timer-dont-exit (process-send-eof proc)))) | |
90 | |
91 (defun timer-process-sentinel (proc str) | |
92 (let ((stat (process-status proc))) | |
93 (if (eq stat 'stop) (continue-process proc) | |
94 ;; if it exited normally, presumably it was intentional. | |
95 ;; if there were no pending events, who cares that it exited? | |
96 (if (or (not timer-alist) (eq stat 'exit)) () | |
97 (ding 'no-terminate) | |
98 (message "Timer exited abnormally. All events cancelled.")) | |
1241
de92360b091b
(timer-process-sentinel): Don't set timer-scratch.
Richard M. Stallman <rms@gnu.org>
parents:
1223
diff
changeset
|
99 ;; Used to set timer-scratch to "", but nothing uses that var. |
de92360b091b
(timer-process-sentinel): Don't set timer-scratch.
Richard M. Stallman <rms@gnu.org>
parents:
1223
diff
changeset
|
100 (setq timer-process nil timer-alist nil)))) |
45 | 101 |
102 (defun cancel-timer (function) | |
1577 | 103 "Cancel all events scheduled by `run-at-time' which would run FUNCTION." |
45 | 104 (interactive "aCancel function: ") |
105 (let ((alist timer-alist)) | |
106 (while alist | |
107 (if (eq (nth 2 (car alist)) function) | |
108 (setq timer-alist (delq (car alist) timer-alist))) | |
109 (setq alist (cdr alist)))) | |
110 (or timer-alist timer-dont-exit (process-send-eof timer-process))) | |
111 | |
112 (provide 'timer) | |
657
fec3f9a1e3e5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
113 |
fec3f9a1e3e5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
114 ;;; timer.el ends here |