Mercurial > emacs
annotate lisp/gnus/gnus-demon.el @ 76705:e61171cf2862
(testcover-start, testcover-end, testcover-mark-all, testcover-unmark-all): Add
prompts to interactive specs.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Sat, 24 Mar 2007 15:53:07 +0000 |
parents | e3694f1cb928 |
children | 24202b793a08 95d0cdf160ea |
rev | line source |
---|---|
17493 | 1 ;;; gnus-demon.el --- daemonic Gnus behaviour |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
2 |
74547 | 3 ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, |
75347 | 4 ;; 2005, 2006, 2007 Free Software Foundation, Inc. |
17493 | 5 |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
6 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org> |
17493 | 7 ;; Keywords: news |
8 | |
9 ;; This file is part of GNU Emacs. | |
10 | |
11 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
12 ;; it under the terms of the GNU General Public License as published by | |
13 ;; the Free Software Foundation; either version 2, or (at your option) | |
14 ;; any later version. | |
15 | |
16 ;; GNU Emacs is distributed in the hope that it will be useful, | |
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 ;; GNU General Public License for more details. | |
20 | |
21 ;; You should have received a copy of the GNU General Public License | |
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
64085 | 23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
24 ;; Boston, MA 02110-1301, USA. | |
17493 | 25 |
26 ;;; Commentary: | |
27 | |
28 ;;; Code: | |
29 | |
19493
8d840c4548c0
Require cl at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
17493
diff
changeset
|
30 (eval-when-compile (require 'cl)) |
8d840c4548c0
Require cl at compile time.
Richard M. Stallman <rms@gnu.org>
parents:
17493
diff
changeset
|
31 |
17493 | 32 (require 'gnus) |
33 (require 'gnus-int) | |
34 (require 'nnheader) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
35 (require 'nntp) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
36 (require 'nnmail) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
37 (require 'gnus-util) |
17493 | 38 (eval-and-compile |
32919
17d5f3547c87
2000-10-26 Dirk Meyer <dischi@tzi.de>
Dave Love <fx@gnu.org>
parents:
31716
diff
changeset
|
39 (if (featurep 'xemacs) |
17493 | 40 (require 'itimer) |
41 (require 'timer))) | |
42 | |
61304
a1964e18a9ba
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-234
Miles Bader <miles@gnu.org>
parents:
56927
diff
changeset
|
43 (autoload 'parse-time-string "parse-time" nil nil) |
a1964e18a9ba
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-234
Miles Bader <miles@gnu.org>
parents:
56927
diff
changeset
|
44 |
17493 | 45 (defgroup gnus-demon nil |
46 "Demonic behaviour." | |
47 :group 'gnus) | |
48 | |
49 (defcustom gnus-demon-handlers nil | |
50 "Alist of daemonic handlers to be run at intervals. | |
51 Each handler is a list on the form | |
52 | |
53 \(FUNCTION TIME IDLE) | |
54 | |
55 FUNCTION is the function to be called. | |
56 TIME is the number of `gnus-demon-timestep's between each call. | |
57 If nil, never call. If t, call each `gnus-demon-timestep'. | |
58 If IDLE is t, only call if Emacs has been idle for a while. If IDLE | |
59 is a number, only call when Emacs has been idle more than this number | |
60 of `gnus-demon-timestep's. If IDLE is nil, don't care about | |
61 idleness. If IDLE is a number and TIME is nil, then call once each | |
62 time Emacs has been idle for IDLE `gnus-demon-timestep's." | |
63 :group 'gnus-demon | |
64 :type '(repeat (list function | |
65 (choice :tag "Time" | |
66 (const :tag "never" nil) | |
67 (const :tag "one" t) | |
68 (integer :tag "steps" 1)) | |
69 (choice :tag "Idle" | |
70 (const :tag "don't care" nil) | |
71 (const :tag "for a while" t) | |
72 (integer :tag "steps" 1))))) | |
73 | |
74 (defcustom gnus-demon-timestep 60 | |
75 "*Number of seconds in each demon timestep." | |
76 :group 'gnus-demon | |
77 :type 'integer) | |
78 | |
79 ;;; Internal variables. | |
80 | |
81 (defvar gnus-demon-timer nil) | |
82 (defvar gnus-demon-idle-has-been-called nil) | |
83 (defvar gnus-demon-idle-time 0) | |
84 (defvar gnus-demon-handler-state nil) | |
85 (defvar gnus-demon-last-keys nil) | |
86 (defvar gnus-inhibit-demon nil | |
87 "*If non-nil, no daemonic function will be run.") | |
88 | |
89 ;;; Functions. | |
90 | |
91 (defun gnus-demon-add-handler (function time idle) | |
92 "Add the handler FUNCTION to be run at TIME and IDLE." | |
93 ;; First remove any old handlers that use this function. | |
94 (gnus-demon-remove-handler function) | |
95 ;; Then add the new one. | |
96 (push (list function time idle) gnus-demon-handlers) | |
97 (gnus-demon-init)) | |
98 | |
99 (defun gnus-demon-remove-handler (function &optional no-init) | |
100 "Remove the handler FUNCTION from the list of handlers." | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
101 (gnus-pull function gnus-demon-handlers) |
17493 | 102 (unless no-init |
103 (gnus-demon-init))) | |
104 | |
105 (defun gnus-demon-init () | |
106 "Initialize the Gnus daemon." | |
107 (interactive) | |
108 (gnus-demon-cancel) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
109 (when gnus-demon-handlers |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
110 ;; Set up the timer. |
17493 | 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) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
122 (setq gnus-demon-idle-has-been-called nil))) |
17493 | 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 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
132 gnus-demon-idle-has-been-called nil) |
17493 | 133 (condition-case () |
134 (nnheader-cancel-function-timers 'gnus-demon) | |
135 (error t))) | |
136 | |
137 (defun gnus-demon-is-idle-p () | |
138 "Whether Emacs is idle or not." | |
139 ;; We do this simply by comparing the 100 most recent keystrokes | |
140 ;; with the ones we had last time. If they are the same, one might | |
141 ;; guess that Emacs is indeed idle. This only makes sense if one | |
142 ;; calls this function seldom -- like once a minute, which is what | |
143 ;; we do here. | |
144 (let ((keys (recent-keys))) | |
145 (or (equal keys gnus-demon-last-keys) | |
146 (progn | |
147 (setq gnus-demon-last-keys keys) | |
148 nil)))) | |
149 | |
150 (defun gnus-demon-time-to-step (time) | |
151 "Find out how many seconds to TIME, which is on the form \"17:43\"." | |
152 (if (not (stringp time)) | |
153 time | |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19493
diff
changeset
|
154 (let* ((now (current-time)) |
56927
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
155 ;; obtain NOW as discrete components -- make a vector for speed |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
156 (nowParts (decode-time now)) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
157 ;; obtain THEN as discrete components |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
158 (thenParts (parse-time-string time)) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
159 (thenHour (elt thenParts 2)) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
160 (thenMin (elt thenParts 1)) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
161 ;; convert time as elements into number of seconds since EPOCH. |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
162 (then (encode-time 0 |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
163 thenMin |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
164 thenHour |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
165 ;; If THEN is earlier than NOW, make it |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
166 ;; same time tomorrow. Doc for encode-time |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
167 ;; says that this is OK. |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
168 (+ (elt nowParts 3) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
169 (if (or (< thenHour (elt nowParts 2)) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
170 (and (= thenHour (elt nowParts 2)) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
171 (<= thenMin (elt nowParts 1)))) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
172 1 0)) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
173 (elt nowParts 4) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
174 (elt nowParts 5) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
175 (elt nowParts 6) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
176 (elt nowParts 7) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
177 (elt nowParts 8))) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
178 ;; calculate number of seconds between NOW and THEN |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
179 (diff (+ (* 65536 (- (car then) (car now))) |
55fd4f77387a
Revision: miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-523
Miles Bader <miles@gnu.org>
parents:
52401
diff
changeset
|
180 (- (cadr then) (cadr now))))) |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19493
diff
changeset
|
181 ;; return number of timesteps in the number of seconds |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19493
diff
changeset
|
182 (round (/ diff gnus-demon-timestep))))) |
17493 | 183 |
184 (defun gnus-demon () | |
185 "The Gnus daemon that takes care of running all Gnus handlers." | |
186 ;; Increase or reset the time Emacs has been idle. | |
187 (if (gnus-demon-is-idle-p) | |
188 (incf gnus-demon-idle-time) | |
189 (setq gnus-demon-idle-time 0) | |
190 (setq gnus-demon-idle-has-been-called nil)) | |
191 ;; Disable all daemonic stuff if we're in the minibuffer | |
192 (when (and (not (window-minibuffer-p (selected-window))) | |
193 (not gnus-inhibit-demon)) | |
194 ;; Then we go through all the handler and call those that are | |
195 ;; sufficiently ripe. | |
196 (let ((handlers gnus-demon-handler-state) | |
197 (gnus-inhibit-demon t) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
198 ;; Try to avoid dialog boxes, e.g. by Mailcrypt. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
199 ;; Unfortunately, Emacs 20's `message-or-box...' doesn't |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
200 ;; obey `use-dialog-box'. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
201 use-dialog-box (last-nonmenu-event 10) |
17493 | 202 handler time idle) |
203 (while handlers | |
204 (setq handler (pop handlers)) | |
205 (cond | |
206 ((numberp (setq time (nth 1 handler))) | |
207 ;; These handlers use a regular timeout mechanism. We decrease | |
208 ;; the timer if it hasn't reached zero yet. | |
209 (unless (zerop time) | |
210 (setcar (nthcdr 1 handler) (decf time))) | |
211 (and (zerop time) ; If the timer now is zero... | |
212 ;; Test for appropriate idleness | |
213 (progn | |
214 (setq idle (nth 2 handler)) | |
215 (cond | |
216 ((null idle) t) ; Don't care about idle. | |
217 ((numberp idle) ; Numerical idle... | |
218 (< idle gnus-demon-idle-time)) ; Idle timed out. | |
219 (t (< 0 gnus-demon-idle-time)))) ; Or just need to be idle. | |
220 ;; So we call the handler. | |
73269 | 221 (gnus-with-local-quit |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19493
diff
changeset
|
222 (ignore-errors (funcall (car handler))) |
17493 | 223 ;; And reset the timer. |
224 (setcar (nthcdr 1 handler) | |
225 (gnus-demon-time-to-step | |
226 (nth 1 (assq (car handler) gnus-demon-handlers))))))) | |
227 ;; These are only supposed to be called when Emacs is idle. | |
228 ((null (setq idle (nth 2 handler))) | |
229 ;; We do nothing. | |
230 ) | |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19493
diff
changeset
|
231 ((and (not (numberp idle)) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19493
diff
changeset
|
232 (gnus-demon-is-idle-p)) |
17493 | 233 ;; We want to call this handler each and every time that |
234 ;; Emacs is idle. | |
73269 | 235 (gnus-with-local-quit |
73139
1ae580684ad1
* gnus-demon.el (gnus-demon): Use with-local-quit to avoid hangs.
Chong Yidong <cyd@stupidchicken.com>
parents:
68633
diff
changeset
|
236 (ignore-errors (funcall (car handler))))) |
17493 | 237 (t |
238 ;; We want to call this handler only if Emacs has been idle | |
239 ;; for a specified number of timesteps. | |
240 (and (not (memq (car handler) gnus-demon-idle-has-been-called)) | |
241 (< idle gnus-demon-idle-time) | |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19493
diff
changeset
|
242 (gnus-demon-is-idle-p) |
73269 | 243 (gnus-with-local-quit |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19493
diff
changeset
|
244 (ignore-errors (funcall (car handler))) |
17493 | 245 ;; Make sure the handler won't be called once more in |
246 ;; this idle-cycle. | |
247 (push (car handler) gnus-demon-idle-has-been-called))))))))) | |
248 | |
249 (defun gnus-demon-add-nocem () | |
250 "Add daemonic NoCeM handling to Gnus." | |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19493
diff
changeset
|
251 (gnus-demon-add-handler 'gnus-demon-scan-nocem 60 30)) |
17493 | 252 |
253 (defun gnus-demon-scan-nocem () | |
254 "Scan NoCeM groups for NoCeM messages." | |
255 (save-window-excursion | |
256 (gnus-nocem-scan-groups))) | |
257 | |
258 (defun gnus-demon-add-disconnection () | |
259 "Add daemonic server disconnection to Gnus." | |
260 (gnus-demon-add-handler 'gnus-demon-close-connections nil 30)) | |
261 | |
262 (defun gnus-demon-close-connections () | |
263 (save-window-excursion | |
264 (gnus-close-backends))) | |
265 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
266 (defun gnus-demon-add-nntp-close-connection () |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
267 "Add daemonic nntp server disconnection to Gnus. |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
268 If no commands have gone out via nntp during the last five |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
269 minutes, the connection is closed." |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
270 (gnus-demon-add-handler 'gnus-demon-nntp-close-connections 5 nil)) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
271 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
272 (defun gnus-demon-nntp-close-connection () |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
273 (save-window-excursion |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
274 (when (time-less-p '(0 300) (time-since nntp-last-command-time)) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
275 (nntp-close-server)))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
276 |
17493 | 277 (defun gnus-demon-add-scanmail () |
278 "Add daemonic scanning of mail from the mail backends." | |
279 (gnus-demon-add-handler 'gnus-demon-scan-mail 120 60)) | |
280 | |
281 (defun gnus-demon-scan-mail () | |
282 (save-window-excursion | |
283 (let ((servers gnus-opened-servers) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
284 server |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
285 (nnmail-fetched-sources (list t))) |
17493 | 286 (while (setq server (car (pop servers))) |
287 (and (gnus-check-backend-function 'request-scan (car server)) | |
288 (or (gnus-server-opened server) | |
289 (gnus-open-server server)) | |
290 (gnus-request-scan nil server)))))) | |
291 | |
292 (defun gnus-demon-add-rescan () | |
293 "Add daemonic scanning of new articles from all backends." | |
294 (gnus-demon-add-handler 'gnus-demon-scan-news 120 60)) | |
295 | |
296 (defun gnus-demon-scan-news () | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
297 (let ((win (current-window-configuration))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
298 (unwind-protect |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
299 (save-window-excursion |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
300 (save-excursion |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
301 (when (gnus-alive-p) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
302 (save-excursion |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
303 (set-buffer gnus-group-buffer) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
304 (gnus-group-get-new-news))))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
305 (set-window-configuration win)))) |
17493 | 306 |
307 (defun gnus-demon-add-scan-timestamps () | |
308 "Add daemonic updating of timestamps in empty newgroups." | |
309 (gnus-demon-add-handler 'gnus-demon-scan-timestamps nil 30)) | |
310 | |
311 (defun gnus-demon-scan-timestamps () | |
312 "Set the timestamp on all newsgroups with no unread and no ticked articles." | |
313 (when (gnus-alive-p) | |
314 (let ((cur-time (current-time)) | |
315 (newsrc (cdr gnus-newsrc-alist)) | |
316 info group unread has-ticked) | |
317 (while (setq info (pop newsrc)) | |
318 (setq group (gnus-info-group info) | |
319 unread (gnus-group-unread group) | |
320 has-ticked (cdr (assq 'tick (gnus-info-marks info)))) | |
321 (when (and (numberp unread) | |
322 (= unread 0) | |
323 (not has-ticked)) | |
324 (gnus-group-set-parameter group 'timestamp cur-time)))))) | |
325 | |
326 (provide 'gnus-demon) | |
327 | |
52401 | 328 ;;; arch-tag: 8dd5cd3d-6ae4-46b4-9b15-f5fca09fd392 |
17493 | 329 ;;; gnus-demon.el ends here |