1 ;;; gnus-demon.el --- daemonic Gnus behaviour
2 ;; Copyright (C) 1995,96,97,98,99 Free Software Foundation, Inc.
4 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
7 ;; This file is part of GNU Emacs.
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)
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.
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.
28 (eval-when-compile (require 'cl
))
37 (if (featurep 'xemacs
)
41 (defgroup gnus-demon nil
45 (defcustom gnus-demon-handlers nil
46 "Alist of daemonic handlers to be run at intervals.
47 Each handler is a list on the form
51 FUNCTION is the function to be called.
52 TIME is the number of `gnus-demon-timestep's between each call.
53 If nil, never call. If t, call each `gnus-demon-timestep'.
54 If IDLE is t, only call if Emacs has been idle for a while. If IDLE
55 is a number, only call when Emacs has been idle more than this number
56 of `gnus-demon-timestep's. If IDLE is nil, don't care about
57 idleness. If IDLE is a number and TIME is nil, then call once each
58 time Emacs has been idle for IDLE `gnus-demon-timestep's."
60 :type
'(repeat (list function
62 (const :tag
"never" nil
)
64 (integer :tag
"steps" 1))
66 (const :tag
"don't care" nil
)
67 (const :tag
"for a while" t
)
68 (integer :tag
"steps" 1)))))
70 (defcustom gnus-demon-timestep
60
71 "*Number of seconds in each demon timestep."
75 ;;; Internal variables.
77 (defvar gnus-demon-timer nil
)
78 (defvar gnus-demon-idle-has-been-called nil
)
79 (defvar gnus-demon-idle-time
0)
80 (defvar gnus-demon-handler-state nil
)
81 (defvar gnus-demon-last-keys nil
)
82 (defvar gnus-inhibit-demon nil
83 "*If non-nil, no daemonic function will be run.")
87 (defun gnus-demon-add-handler (function time idle
)
88 "Add the handler FUNCTION to be run at TIME and IDLE."
89 ;; First remove any old handlers that use this function.
90 (gnus-demon-remove-handler function
)
91 ;; Then add the new one.
92 (push (list function time idle
) gnus-demon-handlers
)
95 (defun gnus-demon-remove-handler (function &optional no-init
)
96 "Remove the handler FUNCTION from the list of handlers."
97 (gnus-pull function gnus-demon-handlers
)
101 (defun gnus-demon-init ()
102 "Initialize the Gnus daemon."
105 (when gnus-demon-handlers
107 (setq gnus-demon-timer
108 (nnheader-run-at-time
109 gnus-demon-timestep gnus-demon-timestep
'gnus-demon
))
110 ;; Reset control variables.
111 (setq gnus-demon-handler-state
114 (list (car handler
) (gnus-demon-time-to-step (nth 1 handler
))
116 gnus-demon-handlers
))
117 (setq gnus-demon-idle-time
0)
118 (setq gnus-demon-idle-has-been-called nil
)))
120 (gnus-add-shutdown 'gnus-demon-cancel
'gnus
)
122 (defun gnus-demon-cancel ()
123 "Cancel any Gnus daemons."
125 (when gnus-demon-timer
126 (nnheader-cancel-timer gnus-demon-timer
))
127 (setq gnus-demon-timer nil
128 gnus-demon-idle-has-been-called nil
)
130 (nnheader-cancel-function-timers 'gnus-demon
)
133 (defun gnus-demon-is-idle-p ()
134 "Whether Emacs is idle or not."
135 ;; We do this simply by comparing the 100 most recent keystrokes
136 ;; with the ones we had last time. If they are the same, one might
137 ;; guess that Emacs is indeed idle. This only makes sense if one
138 ;; calls this function seldom -- like once a minute, which is what
140 (let ((keys (recent-keys)))
141 (or (equal keys gnus-demon-last-keys
)
143 (setq gnus-demon-last-keys keys
)
146 (defun gnus-demon-time-to-step (time)
147 "Find out how many seconds to TIME, which is on the form \"17:43\"."
148 (if (not (stringp time
))
150 (let* ((now (current-time))
151 ;; obtain NOW as discrete components -- make a vector for speed
152 (nowParts (decode-time now
))
153 ;; obtain THEN as discrete components
154 (thenParts (parse-time-string time
))
155 (thenHour (elt thenParts
2))
156 (thenMin (elt thenParts
1))
157 ;; convert time as elements into number of seconds since EPOCH.
161 ;; If THEN is earlier than NOW, make it
162 ;; same time tomorrow. Doc for encode-time
163 ;; says that this is OK.
165 (if (or (< thenHour
(elt nowParts
2))
166 (and (= thenHour
(elt nowParts
2))
167 (<= thenMin
(elt nowParts
1))))
174 ;; calculate number of seconds between NOW and THEN
175 (diff (+ (* 65536 (- (car then
) (car now
)))
176 (- (cadr then
) (cadr now
)))))
177 ;; return number of timesteps in the number of seconds
178 (round (/ diff gnus-demon-timestep
)))))
181 "The Gnus daemon that takes care of running all Gnus handlers."
182 ;; Increase or reset the time Emacs has been idle.
183 (if (gnus-demon-is-idle-p)
184 (incf gnus-demon-idle-time
)
185 (setq gnus-demon-idle-time
0)
186 (setq gnus-demon-idle-has-been-called nil
))
187 ;; Disable all daemonic stuff if we're in the minibuffer
188 (when (and (not (window-minibuffer-p (selected-window)))
189 (not gnus-inhibit-demon
))
190 ;; Then we go through all the handler and call those that are
191 ;; sufficiently ripe.
192 (let ((handlers gnus-demon-handler-state
)
193 (gnus-inhibit-demon t
)
194 ;; Try to avoid dialog boxes, e.g. by Mailcrypt.
195 ;; Unfortunately, Emacs 20's `message-or-box...' doesn't
196 ;; obey `use-dialog-box'.
197 use-dialog-box
(last-nonmenu-event 10)
200 (setq handler
(pop handlers
))
202 ((numberp (setq time
(nth 1 handler
)))
203 ;; These handlers use a regular timeout mechanism. We decrease
204 ;; the timer if it hasn't reached zero yet.
206 (setcar (nthcdr 1 handler
) (decf time
)))
207 (and (zerop time
) ; If the timer now is zero...
208 ;; Test for appropriate idleness
210 (setq idle
(nth 2 handler
))
212 ((null idle
) t
) ; Don't care about idle.
213 ((numberp idle
) ; Numerical idle...
214 (< idle gnus-demon-idle-time
)) ; Idle timed out.
215 (t (< 0 gnus-demon-idle-time
)))) ; Or just need to be idle.
216 ;; So we call the handler.
218 (ignore-errors (funcall (car handler
)))
219 ;; And reset the timer.
220 (setcar (nthcdr 1 handler
)
221 (gnus-demon-time-to-step
222 (nth 1 (assq (car handler
) gnus-demon-handlers
)))))))
223 ;; These are only supposed to be called when Emacs is idle.
224 ((null (setq idle
(nth 2 handler
)))
227 ((and (not (numberp idle
))
228 (gnus-demon-is-idle-p))
229 ;; We want to call this handler each and every time that
231 (ignore-errors (funcall (car handler
))))
233 ;; We want to call this handler only if Emacs has been idle
234 ;; for a specified number of timesteps.
235 (and (not (memq (car handler
) gnus-demon-idle-has-been-called
))
236 (< idle gnus-demon-idle-time
)
237 (gnus-demon-is-idle-p)
239 (ignore-errors (funcall (car handler
)))
240 ;; Make sure the handler won't be called once more in
242 (push (car handler
) gnus-demon-idle-has-been-called
)))))))))
244 (defun gnus-demon-add-nocem ()
245 "Add daemonic NoCeM handling to Gnus."
246 (gnus-demon-add-handler 'gnus-demon-scan-nocem
60 30))
248 (defun gnus-demon-scan-nocem ()
249 "Scan NoCeM groups for NoCeM messages."
250 (save-window-excursion
251 (gnus-nocem-scan-groups)))
253 (defun gnus-demon-add-disconnection ()
254 "Add daemonic server disconnection to Gnus."
255 (gnus-demon-add-handler 'gnus-demon-close-connections nil
30))
257 (defun gnus-demon-close-connections ()
258 (save-window-excursion
259 (gnus-close-backends)))
261 (defun gnus-demon-add-nntp-close-connection ()
262 "Add daemonic nntp server disconnection to Gnus.
263 If no commands have gone out via nntp during the last five
264 minutes, the connection is closed."
265 (gnus-demon-add-handler 'gnus-demon-nntp-close-connections
5 nil
))
267 (defun gnus-demon-nntp-close-connection ()
268 (save-window-excursion
269 (when (time-less-p '(0 300) (time-since nntp-last-command-time
))
270 (nntp-close-server))))
272 (defun gnus-demon-add-scanmail ()
273 "Add daemonic scanning of mail from the mail backends."
274 (gnus-demon-add-handler 'gnus-demon-scan-mail
120 60))
276 (defun gnus-demon-scan-mail ()
277 (save-window-excursion
278 (let ((servers gnus-opened-servers
)
280 (nnmail-fetched-sources (list t
)))
281 (while (setq server
(car (pop servers
)))
282 (and (gnus-check-backend-function 'request-scan
(car server
))
283 (or (gnus-server-opened server
)
284 (gnus-open-server server
))
285 (gnus-request-scan nil server
))))))
287 (defun gnus-demon-add-rescan ()
288 "Add daemonic scanning of new articles from all backends."
289 (gnus-demon-add-handler 'gnus-demon-scan-news
120 60))
291 (defun gnus-demon-scan-news ()
292 (let ((win (current-window-configuration)))
294 (save-window-excursion
298 (set-buffer gnus-group-buffer
)
299 (gnus-group-get-new-news)))))
300 (set-window-configuration win
))))
302 (defun gnus-demon-add-scan-timestamps ()
303 "Add daemonic updating of timestamps in empty newgroups."
304 (gnus-demon-add-handler 'gnus-demon-scan-timestamps nil
30))
306 (defun gnus-demon-scan-timestamps ()
307 "Set the timestamp on all newsgroups with no unread and no ticked articles."
309 (let ((cur-time (current-time))
310 (newsrc (cdr gnus-newsrc-alist
))
311 info group unread has-ticked
)
312 (while (setq info
(pop newsrc
))
313 (setq group
(gnus-info-group info
)
314 unread
(gnus-group-unread group
)
315 has-ticked
(cdr (assq 'tick
(gnus-info-marks info
))))
316 (when (and (numberp unread
)
319 (gnus-group-set-parameter group
'timestamp cur-time
))))))
321 (provide 'gnus-demon
)
323 ;;; gnus-demon.el ends here