annotate lisp/gnus/gnus-demon.el @ 70:131b0175ea99 r20-0b30

Import from CVS: tag r20-0b30
author cvs
date Mon, 13 Aug 2007 09:02:59 +0200
parents 8b8b7f3559a2
children 0d2f883870bc
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 ;;; gnus-demon.el --- daemonic Gnus behaviour
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
2 ;; Copyright (C) 1995,96 Free Software Foundation, Inc.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 ;; Author: Lars Magne Ingebrigtsen <larsi@ifi.uio.no>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 ;; Keywords: news
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 ;; This file is part of GNU Emacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 ;; GNU Emacs is free software; you can redistribute it and/or modify
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 ;; it under the terms of the GNU General Public License as published by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 ;; the Free Software Foundation; either version 2, or (at your option)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 ;; any later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 ;; GNU Emacs is distributed in the hope that it will be useful,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 ;; GNU General Public License for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 ;; You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 ;; along with GNU Emacs; see the file COPYING. If not, write to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 ;; Boston, MA 02111-1307, USA.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 ;;; Commentary:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 ;;; Code:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 (require 'gnus)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
30 (eval-when-compile (require 'cl))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
32 (defvar gnus-demon-handlers nil
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 "Alist of daemonic handlers to be run at intervals.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 Each handler is a list on the form
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 \(FUNCTION TIME IDLE)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
38 FUNCTION is the function to be called.
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
39 TIME is the number of `gnus-demon-timestep's between each call.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 If nil, never call. If t, call each `gnus-demon-timestep'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 If IDLE is t, only call if Emacs has been idle for a while. If IDLE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 is a number, only call when Emacs has been idle more than this number
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 of `gnus-demon-timestep's. If IDLE is nil, don't care about
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 idleness. If IDLE is a number and TIME is nil, then call once each
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
45 time Emacs has been idle for IDLE `gnus-demon-timestep's.")
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
47 (defvar gnus-demon-timestep 60
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
48 "*Number of seconds in each demon timestep.")
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 ;;; Internal variables.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 (defvar gnus-demon-timer nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 (defvar gnus-demon-idle-has-been-called nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 (defvar gnus-demon-idle-time 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 (defvar gnus-demon-handler-state nil)
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
56 (defvar gnus-demon-is-idle nil)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
57 (defvar gnus-demon-last-keys nil)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 (eval-and-compile
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 (autoload 'timezone-parse-date "timezone")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 (autoload 'timezone-make-arpa-date "timezone"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 ;;; Functions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 (defun gnus-demon-add-handler (function time idle)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 "Add the handler FUNCTION to be run at TIME and IDLE."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 ;; First remove any old handlers that use this function.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 (gnus-demon-remove-handler function)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 ;; Then add the new one.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 (push (list function time idle) gnus-demon-handlers)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 (gnus-demon-init))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 (defun gnus-demon-remove-handler (function &optional no-init)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 "Remove the handler FUNCTION from the list of handlers."
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
75 (setq gnus-demon-handlers
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 (delq (assq function gnus-demon-handlers)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 gnus-demon-handlers))
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
78 (or no-init (gnus-demon-init)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 (defun gnus-demon-init ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 "Initialize the Gnus daemon."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 (gnus-demon-cancel)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 (if (null gnus-demon-handlers)
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
85 () ; Nothing to do.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 ;; Set up timer.
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
87 (setq gnus-demon-timer
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
88 (nnheader-run-at-time
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 gnus-demon-timestep gnus-demon-timestep 'gnus-demon))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 ;; Reset control variables.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 (setq gnus-demon-handler-state
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
92 (mapcar
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 (lambda (handler)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 (list (car handler) (gnus-demon-time-to-step (nth 1 handler))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 (nth 2 handler)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 gnus-demon-handlers))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 (setq gnus-demon-idle-time 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 (setq gnus-demon-idle-has-been-called nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 (setq gnus-use-demon t)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 (gnus-add-shutdown 'gnus-demon-cancel 'gnus)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 (defun gnus-demon-cancel ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 "Cancel any Gnus daemons."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 (interactive)
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
106 (and gnus-demon-timer
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
107 (nnheader-cancel-timer gnus-demon-timer))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 (setq gnus-demon-timer nil
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
109 gnus-use-demon nil))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 (defun gnus-demon-is-idle-p ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 "Whether Emacs is idle or not."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 ;; We do this simply by comparing the 100 most recent keystrokes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 ;; with the ones we had last time. If they are the same, one might
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 ;; guess that Emacs is indeed idle. This only makes sense if one
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 ;; calls this function seldom -- like once a minute, which is what
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 ;; we do here.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 (let ((keys (recent-keys)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 (or (equal keys gnus-demon-last-keys)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 (setq gnus-demon-last-keys keys)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 nil))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 (defun gnus-demon-time-to-step (time)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 "Find out how many seconds to TIME, which is on the form \"17:43\"."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 (if (not (stringp time))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 time
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 (let* ((date (current-time-string))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 (dv (timezone-parse-date date))
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
130 (tdate (timezone-make-arpa-date
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 (string-to-number (aref dv 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 (string-to-number (aref dv 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 (string-to-number (aref dv 2)) time
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 (or (aref dv 4) "UT")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 (nseconds (gnus-time-minus
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 (gnus-encode-date tdate) (gnus-encode-date date))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 (round
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
138 (/ (if (< nseconds 0)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
139 (+ nseconds (* 60 60 24))
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
140 nseconds) gnus-demon-timestep)))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 (defun gnus-demon ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 "The Gnus daemon that takes care of running all Gnus handlers."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 ;; Increase or reset the time Emacs has been idle.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 (if (gnus-demon-is-idle-p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 (incf gnus-demon-idle-time)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 (setq gnus-demon-idle-time 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 (setq gnus-demon-idle-has-been-called nil))
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
149 ;; Then we go through all the handler and call those that are
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
150 ;; sufficiently ripe.
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
151 (let ((handlers gnus-demon-handler-state)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
152 handler time idle)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
153 (while handlers
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
154 (setq handler (pop handlers))
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
155 (cond
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
156 ((numberp (setq time (nth 1 handler)))
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
157 ;; These handlers use a regular timeout mechanism. We decrease
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
158 ;; the timer if it hasn't reached zero yet.
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
159 (or (zerop time)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 (setcar (nthcdr 1 handler) (decf time)))
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
161 (and (zerop time) ; If the timer now is zero...
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
162 (or (not (setq idle (nth 2 handler))) ; Don't care about idle.
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
163 (and (numberp idle) ; Numerical idle...
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
164 (< idle gnus-demon-idle-time)) ; Idle timed out.
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
165 gnus-demon-is-idle) ; Or just need to be idle.
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
166 ;; So we call the handler.
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
167 (progn
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
168 (funcall (car handler))
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
169 ;; And reset the timer.
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
170 (setcar (nthcdr 1 handler)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
171 (gnus-demon-time-to-step
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
172 (nth 1 (assq (car handler) gnus-demon-handlers)))))))
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
173 ;; These are only supposed to be called when Emacs is idle.
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
174 ((null (setq idle (nth 2 handler)))
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
175 ;; We do nothing.
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
176 )
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
177 ((not (numberp idle))
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
178 ;; We want to call this handler each and every time that
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
179 ;; Emacs is idle.
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
180 (funcall (car handler)))
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
181 (t
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
182 ;; We want to call this handler only if Emacs has been idle
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
183 ;; for a specified number of timesteps.
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
184 (and (not (memq (car handler) gnus-demon-idle-has-been-called))
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
185 (< idle gnus-demon-idle-time)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
186 (progn
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
187 (funcall (car handler))
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
188 ;; Make sure the handler won't be called once more in
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
189 ;; this idle-cycle.
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
190 (push (car handler) gnus-demon-idle-has-been-called))))))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 (defun gnus-demon-add-nocem ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 "Add daemonic NoCeM handling to Gnus."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 (gnus-demon-add-handler 'gnus-demon-scan-nocem 60 t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 (defun gnus-demon-scan-nocem ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 "Scan NoCeM groups for NoCeM messages."
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
198 (gnus-nocem-scan-groups))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 (defun gnus-demon-add-disconnection ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 "Add daemonic server disconnection to Gnus."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 (gnus-demon-add-handler 'gnus-demon-close-connections nil 30))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 (defun gnus-demon-close-connections ()
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
205 (gnus-close-backends))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 (defun gnus-demon-add-scanmail ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 "Add daemonic scanning of mail from the mail backends."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 (gnus-demon-add-handler 'gnus-demon-scan-mail 120 60))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 (defun gnus-demon-scan-mail ()
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
212 (let ((servers gnus-opened-servers)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
213 server)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
214 (while (setq server (car (pop servers)))
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
215 (and (gnus-check-backend-function 'request-scan (car server))
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
216 (or (gnus-server-opened server)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
217 (gnus-open-server server))
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 42
diff changeset
218 (gnus-request-scan nil server)))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 (provide 'gnus-demon)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 ;;; gnus-demon.el ends here