Mercurial > emacs
annotate lisp/gnus/gnus-demon.el @ 19699:ce0b47a57e23
(sys_subshell) [DOS_NT]: Save and restore parent's
working directory.
(sys_subshell) [WINDOWSNT]: Share MSDOS code. Don't take console.
(init_sys_modes, reset_sys_modes) [WINDOWSNT]: Do it even with
a read_socket_hook.
author | Geoff Voelker <voelker@cs.washington.edu> |
---|---|
date | Wed, 03 Sep 1997 00:37:00 +0000 |
parents | 8d840c4548c0 |
children | 5f1ab3dd344d |
rev | line source |
---|---|
17493 | 1 ;;; gnus-demon.el --- daemonic Gnus behaviour |
2 ;; Copyright (C) 1995,96,97 Free Software Foundation, Inc. | |
3 | |
4 ;; Author: Lars Magne Ingebrigtsen <larsi@ifi.uio.no> | |
5 ;; Keywords: news | |
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 | |
11 ;; the Free Software Foundation; either version 2, or (at your option) | |
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 the | |
21 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
22 ;; Boston, MA 02111-1307, USA. | |
23 | |
24 ;;; Commentary: | |
25 | |
26 ;;; Code: | |
27 | |
19493
8d840c4548c0
Require cl at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
17493
diff
changeset
|
28 (eval-when-compile (require 'cl)) |
8d840c4548c0
Require cl at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
17493
diff
changeset
|
29 |
17493 | 30 (require 'gnus) |
31 (require 'gnus-int) | |
32 (require 'nnheader) | |
33 (eval-and-compile | |
34 (if (string-match "XEmacs" (emacs-version)) | |
35 (require 'itimer) | |
36 (require 'timer))) | |
37 | |
38 (defgroup gnus-demon nil | |
39 "Demonic behaviour." | |
40 :group 'gnus) | |
41 | |
42 (defcustom gnus-demon-handlers nil | |
43 "Alist of daemonic handlers to be run at intervals. | |
44 Each handler is a list on the form | |
45 | |
46 \(FUNCTION TIME IDLE) | |
47 | |
48 FUNCTION is the function to be called. | |
49 TIME is the number of `gnus-demon-timestep's between each call. | |
50 If nil, never call. If t, call each `gnus-demon-timestep'. | |
51 If IDLE is t, only call if Emacs has been idle for a while. If IDLE | |
52 is a number, only call when Emacs has been idle more than this number | |
53 of `gnus-demon-timestep's. If IDLE is nil, don't care about | |
54 idleness. If IDLE is a number and TIME is nil, then call once each | |
55 time Emacs has been idle for IDLE `gnus-demon-timestep's." | |
56 :group 'gnus-demon | |
57 :type '(repeat (list function | |
58 (choice :tag "Time" | |
59 (const :tag "never" nil) | |
60 (const :tag "one" t) | |
61 (integer :tag "steps" 1)) | |
62 (choice :tag "Idle" | |
63 (const :tag "don't care" nil) | |
64 (const :tag "for a while" t) | |
65 (integer :tag "steps" 1))))) | |
66 | |
67 (defcustom gnus-demon-timestep 60 | |
68 "*Number of seconds in each demon timestep." | |
69 :group 'gnus-demon | |
70 :type 'integer) | |
71 | |
72 ;;; Internal variables. | |
73 | |
74 (defvar gnus-demon-timer nil) | |
75 (defvar gnus-demon-idle-has-been-called nil) | |
76 (defvar gnus-demon-idle-time 0) | |
77 (defvar gnus-demon-handler-state nil) | |
78 (defvar gnus-demon-last-keys nil) | |
79 (defvar gnus-inhibit-demon nil | |
80 "*If non-nil, no daemonic function will be run.") | |
81 | |
82 (eval-and-compile | |
83 (autoload 'timezone-parse-date "timezone") | |
84 (autoload 'timezone-make-arpa-date "timezone")) | |
85 | |
86 ;;; Functions. | |
87 | |
88 (defun gnus-demon-add-handler (function time idle) | |
89 "Add the handler FUNCTION to be run at TIME and IDLE." | |
90 ;; First remove any old handlers that use this function. | |
91 (gnus-demon-remove-handler function) | |
92 ;; Then add the new one. | |
93 (push (list function time idle) gnus-demon-handlers) | |
94 (gnus-demon-init)) | |
95 | |
96 (defun gnus-demon-remove-handler (function &optional no-init) | |
97 "Remove the handler FUNCTION from the list of handlers." | |
98 (setq gnus-demon-handlers | |
99 (delq (assq function gnus-demon-handlers) | |
100 gnus-demon-handlers)) | |
101 (unless no-init | |
102 (gnus-demon-init))) | |
103 | |
104 (defun gnus-demon-init () | |
105 "Initialize the Gnus daemon." | |
106 (interactive) | |
107 (gnus-demon-cancel) | |
108 (if (null gnus-demon-handlers) | |
109 () ; Nothing to do. | |
110 ;; Set up timer. | |
111 (setq gnus-demon-timer | |
112 (nnheader-run-at-time | |
113 gnus-demon-timestep gnus-demon-timestep 'gnus-demon)) | |
114 ;; Reset control variables. | |
115 (setq gnus-demon-handler-state | |
116 (mapcar | |
117 (lambda (handler) | |
118 (list (car handler) (gnus-demon-time-to-step (nth 1 handler)) | |
119 (nth 2 handler))) | |
120 gnus-demon-handlers)) | |
121 (setq gnus-demon-idle-time 0) | |
122 (setq gnus-demon-idle-has-been-called nil) | |
123 (setq gnus-use-demon t))) | |
124 | |
125 (gnus-add-shutdown 'gnus-demon-cancel 'gnus) | |
126 | |
127 (defun gnus-demon-cancel () | |
128 "Cancel any Gnus daemons." | |
129 (interactive) | |
130 (when gnus-demon-timer | |
131 (nnheader-cancel-timer gnus-demon-timer)) | |
132 (setq gnus-demon-timer nil | |
133 gnus-use-demon nil) | |
134 (condition-case () | |
135 (nnheader-cancel-function-timers 'gnus-demon) | |
136 (error t))) | |
137 | |
138 (defun gnus-demon-is-idle-p () | |
139 "Whether Emacs is idle or not." | |
140 ;; We do this simply by comparing the 100 most recent keystrokes | |
141 ;; with the ones we had last time. If they are the same, one might | |
142 ;; guess that Emacs is indeed idle. This only makes sense if one | |
143 ;; calls this function seldom -- like once a minute, which is what | |
144 ;; we do here. | |
145 (let ((keys (recent-keys))) | |
146 (or (equal keys gnus-demon-last-keys) | |
147 (progn | |
148 (setq gnus-demon-last-keys keys) | |
149 nil)))) | |
150 | |
151 (defun gnus-demon-time-to-step (time) | |
152 "Find out how many seconds to TIME, which is on the form \"17:43\"." | |
153 (if (not (stringp time)) | |
154 time | |
155 (let* ((date (current-time-string)) | |
156 (dv (timezone-parse-date date)) | |
157 (tdate (timezone-make-arpa-date | |
158 (string-to-number (aref dv 0)) | |
159 (string-to-number (aref dv 1)) | |
160 (string-to-number (aref dv 2)) time | |
161 (or (aref dv 4) "UT"))) | |
162 (nseconds (gnus-time-minus | |
163 (gnus-encode-date tdate) (gnus-encode-date date)))) | |
164 (round | |
165 (/ (+ (if (< (car nseconds) 0) | |
166 86400 0) | |
167 (* 65536 (car nseconds)) | |
168 (nth 1 nseconds)) | |
169 gnus-demon-timestep))))) | |
170 | |
171 (defun gnus-demon () | |
172 "The Gnus daemon that takes care of running all Gnus handlers." | |
173 ;; Increase or reset the time Emacs has been idle. | |
174 (if (gnus-demon-is-idle-p) | |
175 (incf gnus-demon-idle-time) | |
176 (setq gnus-demon-idle-time 0) | |
177 (setq gnus-demon-idle-has-been-called nil)) | |
178 ;; Disable all daemonic stuff if we're in the minibuffer | |
179 (when (and (not (window-minibuffer-p (selected-window))) | |
180 (not gnus-inhibit-demon)) | |
181 ;; Then we go through all the handler and call those that are | |
182 ;; sufficiently ripe. | |
183 (let ((handlers gnus-demon-handler-state) | |
184 (gnus-inhibit-demon t) | |
185 handler time idle) | |
186 (while handlers | |
187 (setq handler (pop handlers)) | |
188 (cond | |
189 ((numberp (setq time (nth 1 handler))) | |
190 ;; These handlers use a regular timeout mechanism. We decrease | |
191 ;; the timer if it hasn't reached zero yet. | |
192 (unless (zerop time) | |
193 (setcar (nthcdr 1 handler) (decf time))) | |
194 (and (zerop time) ; If the timer now is zero... | |
195 ;; Test for appropriate idleness | |
196 (progn | |
197 (setq idle (nth 2 handler)) | |
198 (cond | |
199 ((null idle) t) ; Don't care about idle. | |
200 ((numberp idle) ; Numerical idle... | |
201 (< idle gnus-demon-idle-time)) ; Idle timed out. | |
202 (t (< 0 gnus-demon-idle-time)))) ; Or just need to be idle. | |
203 ;; So we call the handler. | |
204 (progn | |
205 (funcall (car handler)) | |
206 ;; And reset the timer. | |
207 (setcar (nthcdr 1 handler) | |
208 (gnus-demon-time-to-step | |
209 (nth 1 (assq (car handler) gnus-demon-handlers))))))) | |
210 ;; These are only supposed to be called when Emacs is idle. | |
211 ((null (setq idle (nth 2 handler))) | |
212 ;; We do nothing. | |
213 ) | |
214 ((not (numberp idle)) | |
215 ;; We want to call this handler each and every time that | |
216 ;; Emacs is idle. | |
217 (funcall (car handler))) | |
218 (t | |
219 ;; We want to call this handler only if Emacs has been idle | |
220 ;; for a specified number of timesteps. | |
221 (and (not (memq (car handler) gnus-demon-idle-has-been-called)) | |
222 (< idle gnus-demon-idle-time) | |
223 (progn | |
224 (funcall (car handler)) | |
225 ;; Make sure the handler won't be called once more in | |
226 ;; this idle-cycle. | |
227 (push (car handler) gnus-demon-idle-has-been-called))))))))) | |
228 | |
229 (defun gnus-demon-add-nocem () | |
230 "Add daemonic NoCeM handling to Gnus." | |
231 (gnus-demon-add-handler 'gnus-demon-scan-nocem 60 t)) | |
232 | |
233 (defun gnus-demon-scan-nocem () | |
234 "Scan NoCeM groups for NoCeM messages." | |
235 (save-window-excursion | |
236 (gnus-nocem-scan-groups))) | |
237 | |
238 (defun gnus-demon-add-disconnection () | |
239 "Add daemonic server disconnection to Gnus." | |
240 (gnus-demon-add-handler 'gnus-demon-close-connections nil 30)) | |
241 | |
242 (defun gnus-demon-close-connections () | |
243 (save-window-excursion | |
244 (gnus-close-backends))) | |
245 | |
246 (defun gnus-demon-add-scanmail () | |
247 "Add daemonic scanning of mail from the mail backends." | |
248 (gnus-demon-add-handler 'gnus-demon-scan-mail 120 60)) | |
249 | |
250 (defun gnus-demon-scan-mail () | |
251 (save-window-excursion | |
252 (let ((servers gnus-opened-servers) | |
253 server) | |
254 (while (setq server (car (pop servers))) | |
255 (and (gnus-check-backend-function 'request-scan (car server)) | |
256 (or (gnus-server-opened server) | |
257 (gnus-open-server server)) | |
258 (gnus-request-scan nil server)))))) | |
259 | |
260 (defun gnus-demon-add-rescan () | |
261 "Add daemonic scanning of new articles from all backends." | |
262 (gnus-demon-add-handler 'gnus-demon-scan-news 120 60)) | |
263 | |
264 (defun gnus-demon-scan-news () | |
265 (save-window-excursion | |
266 (when (gnus-alive-p) | |
267 (save-excursion | |
268 (set-buffer gnus-group-buffer) | |
269 (gnus-group-get-new-news))))) | |
270 | |
271 (defun gnus-demon-add-scan-timestamps () | |
272 "Add daemonic updating of timestamps in empty newgroups." | |
273 (gnus-demon-add-handler 'gnus-demon-scan-timestamps nil 30)) | |
274 | |
275 (defun gnus-demon-scan-timestamps () | |
276 "Set the timestamp on all newsgroups with no unread and no ticked articles." | |
277 (when (gnus-alive-p) | |
278 (let ((cur-time (current-time)) | |
279 (newsrc (cdr gnus-newsrc-alist)) | |
280 info group unread has-ticked) | |
281 (while (setq info (pop newsrc)) | |
282 (setq group (gnus-info-group info) | |
283 unread (gnus-group-unread group) | |
284 has-ticked (cdr (assq 'tick (gnus-info-marks info)))) | |
285 (when (and (numberp unread) | |
286 (= unread 0) | |
287 (not has-ticked)) | |
288 (gnus-group-set-parameter group 'timestamp cur-time)))))) | |
289 | |
290 (provide 'gnus-demon) | |
291 | |
292 ;;; gnus-demon.el ends here |