1 ;;; gnus-demon.el --- daemonic Gnus behavior
3 ;; Copyright (C) 1995-2014 Free Software Foundation, Inc.
5 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
8 ;; This file is part of GNU Emacs.
10 ;; GNU Emacs is free software: you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation, either version 3 of the License, or
13 ;; (at your option) any later version.
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
27 (eval-when-compile (require 'cl
))
35 (defgroup gnus-demon nil
39 (defcustom gnus-demon-handlers nil
40 "Alist of daemonic handlers to be run at intervals.
41 Each handler is a list on the form
45 FUNCTION is the function to be called. TIME is the number of
46 `gnus-demon-timestep's between each call.
47 If nil, never call. If t, call each `gnus-demon-timestep'.
49 If IDLE is t, only call each time Emacs has been idle for TIME.
50 If IDLE is a number, only call when Emacs has been idle more than
51 this number of `gnus-demon-timestep's.
52 If IDLE is nil, don't care about idleness.
53 If IDLE is a number and TIME is nil, then call once each time
54 Emacs has been idle for IDLE `gnus-demon-timestep's."
56 :type
'(repeat (list function
58 (const :tag
"never" nil
)
60 (integer :tag
"steps" 1))
62 (const :tag
"don't care" nil
)
63 (const :tag
"for a while" t
)
64 (integer :tag
"steps" 1)))))
66 (defcustom gnus-demon-timestep
60
67 "Number of seconds in each demon timestep."
71 ;;; Internal variables.
73 (defvar gnus-demon-timers nil
74 "Plist of idle timers which are running.")
75 (defvar gnus-inhibit-demon nil
76 "If non-nil, no daemonic function will be run.")
80 (defun gnus-demon-add-handler (function time idle
)
81 "Add the handler FUNCTION to be run at TIME and IDLE."
82 ;; First remove any old handlers that use this function.
83 (gnus-demon-remove-handler function
)
84 ;; Then add the new one.
85 (push (list function time idle
) gnus-demon-handlers
)
88 (defun gnus-demon-remove-handler (function &optional no-init
)
89 "Remove the handler FUNCTION from the list of handlers."
90 (gnus-alist-pull function gnus-demon-handlers
)
94 (defun gnus-demon-idle-since ()
95 "Return the number of seconds since when Emacs is idle."
96 (if (featurep 'xemacs
)
97 (itimer-time-difference (current-time) last-command-event-time
)
98 (float-time (or (current-idle-time)
101 (defun gnus-demon-run-callback (func &optional idle time special
)
102 "Run FUNC if Emacs has been idle for longer than IDLE seconds.
103 If not, and a TIME is given, restart a new idle timer, so FUNC
104 can be called at the next opportunity. Such a special idle run is
105 marked with SPECIAL."
106 (unless gnus-inhibit-demon
111 (setq gnus-demon-timers
112 (plist-put gnus-demon-timers func
113 (run-with-timer time time
'gnus-demon-run-callback
115 ((and idle
(> idle
(gnus-demon-idle-since)))
117 (nnheader-cancel-timer (plist-get gnus-demon-timers func
))
118 (setq gnus-demon-timers
119 (plist-put gnus-demon-timers func
120 (run-with-idle-timer idle nil
121 'gnus-demon-run-callback
123 (return-from run-callback
)))
128 (defun gnus-demon-init ()
129 "Initialize the Gnus daemon."
132 (dolist (handler gnus-demon-handlers
)
134 (let* ((func (nth 0 handler
))
135 (time (nth 1 handler
))
136 (idle (nth 2 handler
))
137 ;; Compute time according with timestep.
138 ;; If t, replace by 1
139 (time (cond ((eq time t
)
144 (* (gnus-demon-time-to-step time
) gnus-demon-timestep
))
146 (* time gnus-demon-timestep
))))
147 (idle (cond ((numberp idle
)
148 (* idle gnus-demon-timestep
))
149 ((and (eq idle t
) (numberp time
))
157 ;; Only call when Emacs has been idle for `idle'
158 ((and (null time
) (numberp idle
))
159 (run-with-idle-timer idle t
'gnus-demon-run-callback func
))
163 (run-with-timer time time
'gnus-demon-run-callback
167 (run-with-timer time
(* 24 60 60) 'gnus-demon-run-callback
170 (setq gnus-demon-timers
(plist-put gnus-demon-timers func timer
))))))
172 (defun gnus-demon-time-to-step (time)
173 "Find out how many steps to TIME, which is on the form \"17:43\"."
174 (let* ((now (current-time))
175 ;; obtain NOW as discrete components -- make a vector for speed
176 (nowParts (decode-time now
))
177 ;; obtain THEN as discrete components
178 (thenParts (parse-time-string time
))
179 (thenHour (elt thenParts
2))
180 (thenMin (elt thenParts
1))
181 ;; convert time as elements into number of seconds since EPOCH.
185 ;; If THEN is earlier than NOW, make it
186 ;; same time tomorrow. Doc for encode-time
187 ;; says that this is OK.
189 (if (or (< thenHour
(elt nowParts
2))
190 (and (= thenHour
(elt nowParts
2))
191 (<= thenMin
(elt nowParts
1))))
198 ;; calculate number of seconds between NOW and THEN
199 (diff (+ (* 65536 (- (car then
) (car now
)))
200 (- (cadr then
) (cadr now
)))))
201 ;; return number of timesteps in the number of seconds
202 (round (/ diff gnus-demon-timestep
))))
204 (gnus-add-shutdown 'gnus-demon-cancel
'gnus
)
206 (defun gnus-demon-cancel ()
207 "Cancel any Gnus daemons."
209 (dotimes (i (/ (length gnus-demon-timers
) 2))
210 (nnheader-cancel-timer (nth (1+ (* i
2)) gnus-demon-timers
)))
211 (setq gnus-demon-timers nil
))
213 (defun gnus-demon-add-disconnection ()
214 "Add daemonic server disconnection to Gnus."
215 (gnus-demon-add-handler 'gnus-demon-close-connections nil
30))
217 (defun gnus-demon-close-connections ()
218 (save-window-excursion
219 (gnus-close-backends)))
221 (defun gnus-demon-add-nntp-close-connection ()
222 "Add daemonic nntp server disconnection to Gnus.
223 If no commands have gone out via nntp during the last five
224 minutes, the connection is closed."
225 (gnus-demon-add-handler 'gnus-demon-nntp-close-connection
5 nil
))
227 (defun gnus-demon-nntp-close-connection ()
228 (save-window-excursion
229 (when (time-less-p '(0 300) (time-since nntp-last-command-time
))
230 (nntp-close-server))))
232 (defun gnus-demon-add-scanmail ()
233 "Add daemonic scanning of mail from the mail backends."
234 (gnus-demon-add-handler 'gnus-demon-scan-mail
120 60))
236 (defun gnus-demon-scan-mail ()
237 (save-window-excursion
238 (let ((servers gnus-opened-servers
)
240 (nnmail-fetched-sources (list t
)))
241 (while (setq server
(car (pop servers
)))
242 (and (gnus-check-backend-function 'request-scan
(car server
))
243 (or (gnus-server-opened server
)
244 (gnus-open-server server
))
245 (gnus-request-scan nil server
))))))
247 (defun gnus-demon-add-rescan ()
248 "Add daemonic scanning of new articles from all backends."
249 (gnus-demon-add-handler 'gnus-demon-scan-news
120 60))
251 (defun gnus-demon-scan-news ()
252 (let ((win (current-window-configuration)))
254 (save-window-excursion
256 (with-current-buffer gnus-group-buffer
257 (gnus-group-get-new-news))))
258 (set-window-configuration win
))))
260 (defun gnus-demon-add-scan-timestamps ()
261 "Add daemonic updating of timestamps in empty newgroups."
262 (gnus-demon-add-handler 'gnus-demon-scan-timestamps nil
30))
264 (defun gnus-demon-scan-timestamps ()
265 "Set the timestamp on all newsgroups with no unread and no ticked articles."
267 (let ((cur-time (current-time))
268 (newsrc (cdr gnus-newsrc-alist
))
269 info group unread has-ticked
)
270 (while (setq info
(pop newsrc
))
271 (setq group
(gnus-info-group info
)
272 unread
(gnus-group-unread group
)
273 has-ticked
(cdr (assq 'tick
(gnus-info-marks info
))))
274 (when (and (numberp unread
)
277 (gnus-group-set-parameter group
'timestamp cur-time
))))))
279 (provide 'gnus-demon
)
281 ;;; gnus-demon.el ends here