| 1 |
|
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 15 |
|
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 |
|
|---|
| 19 |
|
|---|
| 20 |
|
|---|
| 21 |
|
|---|
| 22 |
|
|---|
| 23 |
|
|---|
| 24 |
|
|---|
| 25 |
|
|---|
| 26 |
|
|---|
| 27 |
|
|---|
| 28 |
|
|---|
| 29 |
|
|---|
| 30 |
(eval-when-compile (require 'cl)) |
|---|
| 31 |
|
|---|
| 32 |
(require 'gnus) |
|---|
| 33 |
(require 'gnus-int) |
|---|
| 34 |
(require 'nnheader) |
|---|
| 35 |
(require 'nntp) |
|---|
| 36 |
(require 'nnmail) |
|---|
| 37 |
(require 'gnus-util) |
|---|
| 38 |
(eval-and-compile |
|---|
| 39 |
(if (featurep 'xemacs) |
|---|
| 40 |
(require 'itimer) |
|---|
| 41 |
(require 'timer))) |
|---|
| 42 |
|
|---|
| 43 |
(autoload 'parse-time-string "parse-time" nil nil) |
|---|
| 44 |
|
|---|
| 45 |
(defgroup gnus-demon nil |
|---|
| 46 |
"Demonic behavior." |
|---|
| 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 |
|
|---|
| 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 |
|
|---|
| 90 |
|
|---|
| 91 |
(defun gnus-demon-add-handler (function time idle) |
|---|
| 92 |
"Add the handler FUNCTION to be run at TIME and IDLE." |
|---|
| 93 |
|
|---|
| 94 |
(gnus-demon-remove-handler function) |
|---|
| 95 |
|
|---|
| 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." |
|---|
| 101 |
(gnus-pull function gnus-demon-handlers) |
|---|
| 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) |
|---|
| 109 |
(when gnus-demon-handlers |
|---|
| 110 |
|
|---|
| 111 |
(setq gnus-demon-timer |
|---|
| 112 |
(nnheader-run-at-time |
|---|
| 113 |
gnus-demon-timestep gnus-demon-timestep 'gnus-demon)) |
|---|
| 114 |
|
|---|
| 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) |
|---|
| 122 |
(setq gnus-demon-idle-has-been-called nil))) |
|---|
| 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-demon-idle-has-been-called nil) |
|---|
| 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 |
|
|---|
| 140 |
|
|---|
| 141 |
|
|---|
| 142 |
|
|---|
| 143 |
|
|---|
| 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 |
|---|
| 154 |
(let* ((now (current-time)) |
|---|
| 155 |
|
|---|
| 156 |
(nowParts (decode-time now)) |
|---|
| 157 |
|
|---|
| 158 |
(thenParts (parse-time-string time)) |
|---|
| 159 |
(thenHour (elt thenParts 2)) |
|---|
| 160 |
(thenMin (elt thenParts 1)) |
|---|
| 161 |
|
|---|
| 162 |
(then (encode-time 0 |
|---|
| 163 |
thenMin |
|---|
| 164 |
thenHour |
|---|
| 165 |
|
|---|
| 166 |
|
|---|
| 167 |
|
|---|
| 168 |
(+ (elt nowParts 3) |
|---|
| 169 |
(if (or (< thenHour (elt nowParts 2)) |
|---|
| 170 |
(and (= thenHour (elt nowParts 2)) |
|---|
| 171 |
(<= thenMin (elt nowParts 1)))) |
|---|
| 172 |
1 0)) |
|---|
| 173 |
(elt nowParts 4) |
|---|
| 174 |
(elt nowParts 5) |
|---|
| 175 |
(elt nowParts 6) |
|---|
| 176 |
(elt nowParts 7) |
|---|
| 177 |
(elt nowParts 8))) |
|---|
| 178 |
|
|---|
| 179 |
(diff (+ (* 65536 (- (car then) (car now))) |
|---|
| 180 |
(- (cadr then) (cadr now))))) |
|---|
| 181 |
|
|---|
| 182 |
(round (/ diff gnus-demon-timestep))))) |
|---|
| 183 |
|
|---|
| 184 |
(defun gnus-demon () |
|---|
| 185 |
"The Gnus daemon that takes care of running all Gnus handlers." |
|---|
| 186 |
|
|---|
| 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 |
|
|---|
| 192 |
(when (and (not (window-minibuffer-p (selected-window))) |
|---|
| 193 |
(not gnus-inhibit-demon)) |
|---|
| 194 |
|
|---|
| 195 |
|
|---|
| 196 |
(let ((handlers gnus-demon-handler-state) |
|---|
| 197 |
(gnus-inhibit-demon t) |
|---|
| 198 |
|
|---|
| 199 |
|
|---|
| 200 |
|
|---|
| 201 |
use-dialog-box (last-nonmenu-event 10) |
|---|
| 202 |
handler time idle) |
|---|
| 203 |
(while handlers |
|---|
| 204 |
(setq handler (pop handlers)) |
|---|
| 205 |
(cond |
|---|
| 206 |
((numberp (setq time (nth 1 handler))) |
|---|
| 207 |
|
|---|
| 208 |
|
|---|
| 209 |
(unless (zerop time) |
|---|
| 210 |
(setcar (nthcdr 1 handler) (decf time))) |
|---|
| 211 |
(and (zerop time) |
|---|
| 212 |
|
|---|
| 213 |
(progn |
|---|
| 214 |
(setq idle (nth 2 handler)) |
|---|
| 215 |
(cond |
|---|
| 216 |
((null idle) t) |
|---|
| 217 |
((numberp idle) |
|---|
| 218 |
(< idle gnus-demon-idle-time)) |
|---|
| 219 |
(t (< 0 gnus-demon-idle-time)))) |
|---|
| 220 |
|
|---|
| 221 |
(gnus-with-local-quit |
|---|
| 222 |
(ignore-errors (funcall (car handler))) |
|---|
| 223 |
|
|---|
| 224 |
(setcar (nthcdr 1 handler) |
|---|
| 225 |
(gnus-demon-time-to-step |
|---|
| 226 |
(nth 1 (assq (car handler) gnus-demon-handlers))))))) |
|---|
| 227 |
|
|---|
| 228 |
((null (setq idle (nth 2 handler))) |
|---|
| 229 |
|
|---|
| 230 |
) |
|---|
| 231 |
((and (not (numberp idle)) |
|---|
| 232 |
(gnus-demon-is-idle-p)) |
|---|
| 233 |
|
|---|
| 234 |
|
|---|
| 235 |
(gnus-with-local-quit |
|---|
| 236 |
(ignore-errors (funcall (car handler))))) |
|---|
| 237 |
(t |
|---|
| 238 |
|
|---|
| 239 |
|
|---|
| 240 |
(and (not (memq (car handler) gnus-demon-idle-has-been-called)) |
|---|
| 241 |
(< idle gnus-demon-idle-time) |
|---|
| 242 |
(gnus-demon-is-idle-p) |
|---|
| 243 |
(gnus-with-local-quit |
|---|
| 244 |
(ignore-errors (funcall (car handler))) |
|---|
| 245 |
|
|---|
| 246 |
|
|---|
| 247 |
(push (car handler) gnus-demon-idle-has-been-called))))))))) |
|---|
| 248 |
|
|---|
| 249 |
(defun gnus-demon-add-nocem () |
|---|
| 250 |
"Add daemonic NoCeM handling to Gnus." |
|---|
| 251 |
(gnus-demon-add-handler 'gnus-demon-scan-nocem 60 30)) |
|---|
| 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 |
|
|---|
| 266 |
(defun gnus-demon-add-nntp-close-connection () |
|---|
| 267 |
"Add daemonic nntp server disconnection to Gnus. |
|---|
| 268 |
If no commands have gone out via nntp during the last five |
|---|
| 269 |
minutes, the connection is closed." |
|---|
| 270 |
(gnus-demon-add-handler 'gnus-demon-nntp-close-connections 5 nil)) |
|---|
| 271 |
|
|---|
| 272 |
(defun gnus-demon-nntp-close-connection () |
|---|
| 273 |
(save-window-excursion |
|---|
| 274 |
(when (time-less-p '(0 300) (time-since nntp-last-command-time)) |
|---|
| 275 |
(nntp-close-server)))) |
|---|
| 276 |
|
|---|
| 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) |
|---|
| 284 |
server |
|---|
| 285 |
(nnmail-fetched-sources (list t))) |
|---|
| 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 () |
|---|
| 297 |
(let ((win (current-window-configuration))) |
|---|
| 298 |
(unwind-protect |
|---|
| 299 |
(save-window-excursion |
|---|
| 300 |
(save-excursion |
|---|
| 301 |
(when (gnus-alive-p) |
|---|
| 302 |
(save-excursion |
|---|
| 303 |
(set-buffer gnus-group-buffer) |
|---|
| 304 |
(gnus-group-get-new-news))))) |
|---|
| 305 |
(set-window-configuration win)))) |
|---|
| 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 |
|
|---|
| 328 |
|
|---|
| 329 |
|
|---|
| 330 |
|
|---|