*** empty log message ***
[gnus] / lisp / gnus-demon.el
1 ;;; gnus-demon.el --- daemonic Gnus behaviour
2 ;; Copyright (C) 1995,96,97,98 Free Software Foundation, Inc.
3
4 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
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
28 (eval-when-compile (require 'cl))
29
30 (require 'gnus)
31 (require 'gnus-int)
32 (require 'nnheader)
33 (require 'nntp)
34 (require 'nnmail)
35 (eval-and-compile
36   (if (string-match "XEmacs" (emacs-version))
37       (require 'itimer)
38     (require 'timer)))
39
40 (defgroup gnus-demon nil
41   "Demonic behaviour."
42   :group 'gnus)
43
44 (defcustom gnus-demon-handlers nil
45   "Alist of daemonic handlers to be run at intervals.
46 Each handler is a list on the form
47
48 \(FUNCTION TIME IDLE)
49
50 FUNCTION is the function to be called.
51 TIME is the number of `gnus-demon-timestep's between each call.
52 If nil, never call.  If t, call each `gnus-demon-timestep'.
53 If IDLE is t, only call if Emacs has been idle for a while.  If IDLE
54 is a number, only call when Emacs has been idle more than this number
55 of `gnus-demon-timestep's.  If IDLE is nil, don't care about
56 idleness.  If IDLE is a number and TIME is nil, then call once each
57 time Emacs has been idle for IDLE `gnus-demon-timestep's."
58   :group 'gnus-demon
59   :type '(repeat (list function
60                        (choice :tag "Time"
61                                (const :tag "never" nil)
62                                (const :tag "one" t)
63                                (integer :tag "steps" 1))
64                        (choice :tag "Idle"
65                                (const :tag "don't care" nil)
66                                (const :tag "for a while" t)
67                                (integer :tag "steps" 1)))))
68
69 (defcustom gnus-demon-timestep 60
70   "*Number of seconds in each demon timestep."
71   :group 'gnus-demon
72   :type 'integer)
73
74 ;;; Internal variables.
75
76 (defvar gnus-demon-timer nil)
77 (defvar gnus-demon-idle-has-been-called nil)
78 (defvar gnus-demon-idle-time 0)
79 (defvar gnus-demon-handler-state nil)
80 (defvar gnus-demon-last-keys nil)
81 (defvar gnus-inhibit-demon nil
82   "*If non-nil, no daemonic function will be run.")
83
84 (eval-and-compile
85   (autoload 'timezone-parse-date "timezone")
86   (autoload 'timezone-make-arpa-date "timezone"))
87
88 ;;; Functions.
89
90 (defun gnus-demon-add-handler (function time idle)
91   "Add the handler FUNCTION to be run at TIME and IDLE."
92   ;; First remove any old handlers that use this function.
93   (gnus-demon-remove-handler function)
94   ;; Then add the new one.
95   (push (list function time idle) gnus-demon-handlers)
96   (gnus-demon-init))
97
98 (defun gnus-demon-remove-handler (function &optional no-init)
99   "Remove the handler FUNCTION from the list of handlers."
100   (gnus-pull function 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   (when gnus-demon-handlers
109     ;; Set up the timer.
110     (setq gnus-demon-timer
111           (nnheader-run-at-time
112            gnus-demon-timestep gnus-demon-timestep 'gnus-demon))
113     ;; Reset control variables.
114     (setq gnus-demon-handler-state
115           (mapcar
116            (lambda (handler)
117              (list (car handler) (gnus-demon-time-to-step (nth 1 handler))
118                    (nth 2 handler)))
119            gnus-demon-handlers))
120     (setq gnus-demon-idle-time 0)
121     (setq gnus-demon-idle-has-been-called nil)
122     (setq gnus-use-demon t)))
123
124 (gnus-add-shutdown 'gnus-demon-cancel 'gnus)
125
126 (defun gnus-demon-cancel ()
127   "Cancel any Gnus daemons."
128   (interactive)
129   (when gnus-demon-timer
130     (nnheader-cancel-timer gnus-demon-timer))
131   (setq gnus-demon-timer nil
132         gnus-use-demon nil
133         gnus-demon-idle-has-been-called 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* ((now (current-time))
156            ;; obtain NOW as discrete components -- make a vector for speed
157            (nowParts (apply 'vector (decode-time now)))
158            ;; obtain THEN as discrete components
159            (thenParts (timezone-parse-time time))
160            (thenHour (string-to-int (elt thenParts 0)))
161            (thenMin (string-to-int (elt thenParts 1)))
162            ;; convert time as elements into number of seconds since EPOCH.
163            (then (encode-time 0
164                               thenMin
165                               thenHour
166                               ;; If THEN is earlier than NOW, make it
167                               ;; same time tomorrow. Doc for encode-time
168                               ;; says that this is OK.
169                               (+ (elt nowParts 3)
170                                  (if (or (< thenHour (elt nowParts 2))
171                                          (and (= thenHour (elt nowParts 2))
172                                               (<= thenMin (elt nowParts 1))))
173                                      1 0))
174                               (elt nowParts 4)
175                               (elt nowParts 5)
176                               (elt nowParts 6)
177                               (elt nowParts 7)
178                               (elt nowParts 8)))
179            ;; calculate number of seconds between NOW and THEN
180            (diff (+ (* 65536 (- (car then) (car now)))
181                     (- (cadr then) (cadr now)))))
182       ;; return number of timesteps in the number of seconds
183       (round (/ diff gnus-demon-timestep)))))
184
185 (defun gnus-demon ()
186   "The Gnus daemon that takes care of running all Gnus handlers."
187   ;; Increase or reset the time Emacs has been idle.
188   (if (gnus-demon-is-idle-p)
189       (incf gnus-demon-idle-time)
190     (setq gnus-demon-idle-time 0)
191     (setq gnus-demon-idle-has-been-called nil))
192   ;; Disable all daemonic stuff if we're in the minibuffer
193   (when (and (not (window-minibuffer-p (selected-window)))
194              (not gnus-inhibit-demon))
195     ;; Then we go through all the handler and call those that are
196     ;; sufficiently ripe.
197     (let ((handlers gnus-demon-handler-state)
198           (gnus-inhibit-demon t)
199           handler time idle)
200       (while handlers
201         (setq handler (pop handlers))
202         (cond
203          ((numberp (setq time (nth 1 handler)))
204           ;; These handlers use a regular timeout mechanism.  We decrease
205           ;; the timer if it hasn't reached zero yet.
206           (unless (zerop time)
207             (setcar (nthcdr 1 handler) (decf time)))
208           (and (zerop time)             ; If the timer now is zero...
209                ;; Test for appropriate idleness
210                (progn
211                  (setq idle (nth 2 handler))
212                  (cond
213                   ((null idle) t)       ; Don't care about idle.
214                   ((numberp idle)       ; Numerical idle...
215                    (< idle gnus-demon-idle-time)) ; Idle timed out.
216                   (t (< 0 gnus-demon-idle-time)))) ; Or just need to be idle.
217                ;; So we call the handler.
218                (progn
219                  (ignore-errors (funcall (car handler)))
220                  ;; And reset the timer.
221                  (setcar (nthcdr 1 handler)
222                          (gnus-demon-time-to-step
223                           (nth 1 (assq (car handler) gnus-demon-handlers)))))))
224          ;; These are only supposed to be called when Emacs is idle.
225          ((null (setq idle (nth 2 handler)))
226           ;; We do nothing.
227           )
228          ((and (not (numberp idle))
229                (gnus-demon-is-idle-p))
230           ;; We want to call this handler each and every time that
231           ;; Emacs is idle.
232           (ignore-errors (funcall (car handler))))
233          (t
234           ;; We want to call this handler only if Emacs has been idle
235           ;; for a specified number of timesteps.
236           (and (not (memq (car handler) gnus-demon-idle-has-been-called))
237                (< idle gnus-demon-idle-time)
238                (gnus-demon-is-idle-p)
239                (progn
240                  (ignore-errors (funcall (car handler)))
241                  ;; Make sure the handler won't be called once more in
242                  ;; this idle-cycle.
243                  (push (car handler) gnus-demon-idle-has-been-called)))))))))
244
245 (defun gnus-demon-add-nocem ()
246   "Add daemonic NoCeM handling to Gnus."
247   (gnus-demon-add-handler 'gnus-demon-scan-nocem 60 30))
248
249 (defun gnus-demon-scan-nocem ()
250   "Scan NoCeM groups for NoCeM messages."
251   (save-window-excursion
252     (gnus-nocem-scan-groups)))
253
254 (defun gnus-demon-add-disconnection ()
255   "Add daemonic server disconnection to Gnus."
256   (gnus-demon-add-handler 'gnus-demon-close-connections nil 30))
257
258 (defun gnus-demon-close-connections ()
259   (save-window-excursion
260     (gnus-close-backends)))
261
262 (defun gnus-demon-add-nntp-close-connection ()
263   "Add daemonic nntp server disconnection to Gnus.
264 If no commands have gone out via nntp during the last five
265 minutes, the connection is closed."
266   (gnus-demon-add-handler 'gnus-demon-close-connections 5 nil))
267
268 (defun gnus-demon-nntp-close-connection ()
269   (save-window-excursion
270     (when (nnmail-time-less '(0 300)
271                             (nnmail-time-since nntp-last-command-time))
272       (nntp-close-server))))
273
274 (defun gnus-demon-add-scanmail ()
275   "Add daemonic scanning of mail from the mail backends."
276   (gnus-demon-add-handler 'gnus-demon-scan-mail 120 60))
277
278 (defun gnus-demon-scan-mail ()
279   (save-window-excursion
280     (let ((servers gnus-opened-servers)
281           server)
282       (gnus-clear-inboxes-moved)
283       (while (setq server (car (pop servers)))
284         (and (gnus-check-backend-function 'request-scan (car server))
285              (or (gnus-server-opened server)
286                  (gnus-open-server server))
287              (gnus-request-scan nil server))))))
288
289 (defun gnus-demon-add-rescan ()
290   "Add daemonic scanning of new articles from all backends."
291   (gnus-demon-add-handler 'gnus-demon-scan-news 120 60))
292
293 (defun gnus-demon-scan-news ()
294   (let ((win (current-window-configuration)))
295     (unwind-protect
296         (save-window-excursion
297           (save-excursion
298             (when (gnus-alive-p)
299               (save-excursion
300                 (set-buffer gnus-group-buffer)
301                 (gnus-group-get-new-news)))))
302       (set-window-configuration win))))
303
304 (defun gnus-demon-add-scan-timestamps ()
305   "Add daemonic updating of timestamps in empty newgroups."
306   (gnus-demon-add-handler 'gnus-demon-scan-timestamps nil 30))
307
308 (defun gnus-demon-scan-timestamps ()
309   "Set the timestamp on all newsgroups with no unread and no ticked articles."
310   (when (gnus-alive-p)
311     (let ((cur-time (current-time))
312           (newsrc (cdr gnus-newsrc-alist))
313           info group unread has-ticked)
314       (while (setq info (pop newsrc))
315         (setq group (gnus-info-group info)
316               unread (gnus-group-unread group)
317               has-ticked (cdr (assq 'tick (gnus-info-marks info))))
318         (when (and (numberp unread)
319                    (= unread 0)
320                    (not has-ticked))
321           (gnus-group-set-parameter group 'timestamp cur-time))))))
322
323 (provide 'gnus-demon)
324
325 ;;; gnus-demon.el ends here