Mercurial > emacs
annotate lisp/=timer.el @ 1875:f569bc4e9b8f
* xterm.c (x_set_window_size): Call change_frame_size instead of
just setting the `rows' and `cols' members of the frame, and
leaving the window tree in complete disarray.
* xterm.c (x_io_error_quitter): New function.
(x_error_quitter): Note that this is only used for protocol
errors now, not I/O errors.
(x_term_init): Set the I/O error handler to x_io_error_quitter.
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Sun, 14 Feb 1993 14:40:55 +0000 |
parents | 852bc0022185 |
children | f7da227e3e68 |
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 | |
1223 | 39 the call to the function. If REPEAT is nil, call it just once." |
45 | 40 (interactive "sRun at time: \nNRepeat interval: \naFunction: ") |
41 (cond ((or (not timer-process) | |
42 (memq (process-status timer-process) '(exit signal nil))) | |
43 (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
|
44 (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
|
45 (start-process "timer" nil "timer")) |
45 | 46 timer-alist nil) |
47 (set-process-filter timer-process 'timer-process-filter) | |
48 (set-process-sentinel timer-process 'timer-process-sentinel) | |
49 (process-kill-without-query timer-process)) | |
50 ((eq (process-status timer-process) 'stop) | |
51 (continue-process timer-process))) | |
52 ;; There should be a living, breathing timer process now | |
53 (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
|
54 (process-send-string timer-process (concat time "@" token "\n")) |
45 | 55 (setq timer-alist (cons (list token repeat function args) timer-alist)))) |
56 | |
57 (defun timer-process-filter (proc str) | |
58 (setq timer-out (concat timer-out str)) | |
59 (let (do token error) | |
60 (while (string-match "\n" timer-out) | |
61 (setq token (substring timer-out 0 (match-beginning 0)) | |
62 do (assoc token timer-alist) | |
63 timer-out (substring timer-out (match-end 0))) | |
64 (cond | |
65 (do (apply (nth 2 do) (nth 3 do)) ; do it | |
66 (if (natnump (nth 1 do)) ; reschedule it | |
998 | 67 (send-string proc (concat (nth 1 do) " sec@" (car do) "\n")) |
45 | 68 (setq timer-alist (delq do timer-alist)))) |
998 | 69 ((string-match "timer: \\([^:]+\\): \\([^@]*\\)@\\(.*\\)$" token) |
45 | 70 (setq error (substring token (match-beginning 1) (match-end 1)) |
71 do (substring token (match-beginning 2) (match-end 2)) | |
72 token (assoc (substring token (match-beginning 3) (match-end 3)) | |
73 timer-alist) | |
74 timer-alist (delq token timer-alist)) | |
75 (ding 'no-terminate) ; using error function in process filters is rude | |
76 (message "%s for %s; couldn't set at \"%s\"" error (nth 2 token) do)))) | |
77 (or timer-alist timer-dont-exit (process-send-eof proc)))) | |
78 | |
79 (defun timer-process-sentinel (proc str) | |
80 (let ((stat (process-status proc))) | |
81 (if (eq stat 'stop) (continue-process proc) | |
82 ;; if it exited normally, presumably it was intentional. | |
83 ;; if there were no pending events, who cares that it exited? | |
84 (if (or (not timer-alist) (eq stat 'exit)) () | |
85 (ding 'no-terminate) | |
86 (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
|
87 ;; 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
|
88 (setq timer-process nil timer-alist nil)))) |
45 | 89 |
90 (defun cancel-timer (function) | |
1577 | 91 "Cancel all events scheduled by `run-at-time' which would run FUNCTION." |
45 | 92 (interactive "aCancel function: ") |
93 (let ((alist timer-alist)) | |
94 (while alist | |
95 (if (eq (nth 2 (car alist)) function) | |
96 (setq timer-alist (delq (car alist) timer-alist))) | |
97 (setq alist (cdr alist)))) | |
98 (or timer-alist timer-dont-exit (process-send-eof timer-process))) | |
99 | |
100 (provide 'timer) | |
657
fec3f9a1e3e5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
101 |
fec3f9a1e3e5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
102 ;;; timer.el ends here |