gnus-article-html: Decode contents by charset.
[emacs.git] / lisp / gnus / gnus-async.el
blob95ea48803c73df2ef689f915356413d389ddf895
1 ;;; gnus-async.el --- asynchronous support for Gnus
3 ;; Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
4 ;; 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
6 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
7 ;; Keywords: news
9 ;; This file is part of GNU Emacs.
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 3 of the License, or
14 ;; (at your option) any later version.
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.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24 ;;; Commentary:
26 ;;; Code:
28 (eval-when-compile (require 'cl))
30 (require 'gnus)
31 (require 'gnus-sum)
32 (require 'nntp)
34 (defgroup gnus-asynchronous nil
35 "Support for asynchronous operations."
36 :group 'gnus)
38 (defcustom gnus-use-article-prefetch 30
39 "*If non-nil, prefetch articles in groups that allow this.
40 If a number, prefetch only that many articles forward;
41 if t, prefetch as many articles as possible."
42 :group 'gnus-asynchronous
43 :type '(choice (const :tag "off" nil)
44 (const :tag "all" t)
45 (integer :tag "some" 0)))
47 (defcustom gnus-asynchronous nil
48 "*If nil, inhibit all Gnus asynchronicity.
49 If non-nil, let the other asynch variables be heeded."
50 :group 'gnus-asynchronous
51 :type 'boolean)
53 (defcustom gnus-prefetched-article-deletion-strategy '(read exit)
54 "List of symbols that say when to remove articles from the prefetch buffer.
55 Possible values in this list are `read', which means that
56 articles are removed as they are read, and `exit', which means
57 that all articles belonging to a group are removed on exit
58 from that group."
59 :group 'gnus-asynchronous
60 :type '(set (const read) (const exit)))
62 (defcustom gnus-use-header-prefetch nil
63 "*If non-nil, prefetch the headers to the next group."
64 :group 'gnus-asynchronous
65 :type 'boolean)
67 (defcustom gnus-async-prefetch-article-p 'gnus-async-unread-p
68 "Function called to say whether an article should be prefetched or not.
69 The function is called with one parameter -- the article data.
70 It should return non-nil if the article is to be prefetched."
71 :group 'gnus-asynchronous
72 :type 'function)
74 (defcustom gnus-async-post-fetch-function nil
75 "Function called after an article has been prefetched.
76 The function will be called narrowed to the region of the article
77 that was fetched."
78 :group 'gnus-asynchronous
79 :type 'function)
81 ;;; Internal variables.
83 (defvar gnus-async-prefetch-article-buffer " *Async Prefetch Article*")
84 (defvar gnus-async-article-alist nil)
85 (defvar gnus-async-article-semaphore '(nil))
86 (defvar gnus-async-fetch-list nil)
87 (defvar gnus-async-hashtb nil)
88 (defvar gnus-async-current-prefetch-group nil)
89 (defvar gnus-async-current-prefetch-article nil)
90 (defvar gnus-async-timer nil)
92 (defvar gnus-async-prefetch-headers-buffer " *Async Prefetch Headers*")
93 (defvar gnus-async-header-prefetched nil)
95 ;;; Utility functions.
97 (defun gnus-group-asynchronous-p (group)
98 "Say whether GROUP is fetched from a server that supports asynchronicity."
99 (gnus-asynchronous-p (gnus-find-method-for-group group)))
101 ;;; Somewhat bogus semaphores.
103 (defun gnus-async-get-semaphore (semaphore)
104 "Wait until SEMAPHORE is released."
105 (while (/= (length (nconc (symbol-value semaphore) (list nil))) 2)
106 (sleep-for 1)))
108 (defun gnus-async-release-semaphore (semaphore)
109 "Release SEMAPHORE."
110 (setcdr (symbol-value semaphore) nil))
112 (defmacro gnus-async-with-semaphore (&rest forms)
113 `(unwind-protect
114 (progn
115 (gnus-async-get-semaphore 'gnus-async-article-semaphore)
116 ,@forms)
117 (gnus-async-release-semaphore 'gnus-async-article-semaphore)))
119 (put 'gnus-async-with-semaphore 'lisp-indent-function 0)
120 (put 'gnus-async-with-semaphore 'edebug-form-spec '(body))
123 ;;; Article prefetch
126 (gnus-add-shutdown 'gnus-async-close 'gnus)
127 (defun gnus-async-close ()
128 (gnus-kill-buffer gnus-async-prefetch-article-buffer)
129 (gnus-kill-buffer gnus-async-prefetch-headers-buffer)
130 (setq gnus-async-hashtb nil
131 gnus-async-article-alist nil
132 gnus-async-header-prefetched nil))
134 (defun gnus-async-set-buffer ()
135 (nnheader-set-temp-buffer gnus-async-prefetch-article-buffer t)
136 (unless gnus-async-hashtb
137 (setq gnus-async-hashtb (gnus-make-hashtable 1023))))
139 (defun gnus-async-halt-prefetch ()
140 "Stop prefetching."
141 (setq gnus-async-fetch-list nil))
143 (defun gnus-async-prefetch-next (group article summary)
144 "Possibly prefetch several articles starting with the article after ARTICLE."
145 (when (and (gnus-buffer-live-p summary)
146 gnus-asynchronous
147 (gnus-group-asynchronous-p group))
148 (save-excursion
149 (set-buffer gnus-summary-buffer)
150 (let ((next (caadr (gnus-data-find-list article))))
151 (when next
152 (if (not (fboundp 'run-with-idle-timer))
153 ;; This is either an older Emacs or XEmacs, so we
154 ;; do this, which leads to slightly slower article
155 ;; buffer display.
156 (gnus-async-prefetch-article group next summary)
157 (when gnus-async-timer
158 (ignore-errors
159 (nnheader-cancel-timer 'gnus-async-timer)))
160 (setq gnus-async-timer
161 (run-with-idle-timer
162 0.1 nil 'gnus-async-prefetch-article
163 group next summary))))))))
165 (defun gnus-async-prefetch-article (group article summary &optional next)
166 "Possibly prefetch several articles starting with ARTICLE."
167 (if (not (gnus-buffer-live-p summary))
168 (gnus-async-with-semaphore
169 (setq gnus-async-fetch-list nil))
170 (when (and gnus-asynchronous
171 (gnus-alive-p))
172 (when next
173 (gnus-async-with-semaphore
174 (pop gnus-async-fetch-list)))
175 (let ((do-fetch next)
176 (do-message t)) ;(eq major-mode 'gnus-summary-mode)))
177 (when (and (gnus-group-asynchronous-p group)
178 (gnus-buffer-live-p summary)
179 (or (not next)
180 gnus-async-fetch-list))
181 (gnus-async-with-semaphore
182 (unless next
183 (setq do-fetch (not gnus-async-fetch-list))
184 ;; Nix out any outstanding requests.
185 (setq gnus-async-fetch-list nil)
186 ;; Fill in the new list.
187 (let ((n gnus-use-article-prefetch)
188 (data (gnus-data-find-list article))
190 (while (and (setq d (pop data))
191 (if (numberp n)
192 (natnump (decf n))
194 (unless (or (gnus-async-prefetched-article-entry
195 group (setq article (gnus-data-number d)))
196 (not (natnump article))
197 (not (funcall gnus-async-prefetch-article-p d)))
198 ;; Not already fetched -- so we add it to the list.
199 (push article gnus-async-fetch-list)))
200 (setq gnus-async-fetch-list
201 (nreverse gnus-async-fetch-list))))
203 (when do-fetch
204 (setq article (car gnus-async-fetch-list))))
206 (when (and do-fetch article)
207 ;; We want to fetch some more articles.
208 (save-excursion
209 (set-buffer summary)
210 (let (mark)
211 (gnus-async-set-buffer)
212 (goto-char (point-max))
213 (setq mark (point-marker))
214 (let ((nnheader-callback-function
215 (gnus-make-async-article-function
216 group article mark summary next))
217 (nntp-server-buffer
218 (get-buffer gnus-async-prefetch-article-buffer)))
219 (when do-message
220 (gnus-message 9 "Prefetching article %d in group %s"
221 article group))
222 (setq gnus-async-current-prefetch-group group)
223 (setq gnus-async-current-prefetch-article article)
224 (gnus-request-article article group))))))))))
226 (defun gnus-make-async-article-function (group article mark summary next)
227 "Return a callback function."
228 `(lambda (arg)
229 (gnus-async-article-callback arg ,group ,article ,mark ,summary ,next)))
231 (defun gnus-async-article-callback (arg group article mark summary next)
232 "Function called when an async article is done being fetched."
233 (save-excursion
234 (setq gnus-async-current-prefetch-article nil)
235 (when arg
236 (gnus-async-set-buffer)
237 (when gnus-async-post-fetch-function
238 (save-excursion
239 (save-restriction
240 (narrow-to-region mark (point-max))
241 (funcall gnus-async-post-fetch-function summary))))
242 (gnus-async-with-semaphore
243 (setq
244 gnus-async-article-alist
245 (cons (list (intern (format "%s-%d" group article)
246 gnus-async-hashtb)
247 mark (set-marker (make-marker) (point-max))
248 group article)
249 gnus-async-article-alist))))
250 (if (not (gnus-buffer-live-p summary))
251 (gnus-async-with-semaphore
252 (setq gnus-async-fetch-list nil))
253 (gnus-async-prefetch-article group next summary t))))
255 (defun gnus-async-unread-p (data)
256 "Return non-nil if DATA represents an unread article."
257 (gnus-data-unread-p data))
259 (defun gnus-async-request-fetched-article (group article buffer)
260 "See whether we have ARTICLE from GROUP and put it in BUFFER."
261 (when (numberp article)
262 (when (and (equal group gnus-async-current-prefetch-group)
263 (eq article gnus-async-current-prefetch-article))
264 (gnus-async-wait-for-article article))
265 (let ((entry (gnus-async-prefetched-article-entry group article)))
266 (when entry
267 (save-excursion
268 (gnus-async-set-buffer)
269 (copy-to-buffer buffer (cadr entry) (caddr entry))
270 ;; Remove the read article from the prefetch buffer.
271 (when (memq 'read gnus-prefetched-article-deletion-strategy)
272 (gnus-async-delete-prefetched-entry entry))
273 t)))))
275 (defun gnus-async-wait-for-article (article)
276 "Wait until ARTICLE is no longer the currently-being-fetched article."
277 (save-excursion
278 (gnus-async-set-buffer)
279 (let ((proc (nntp-find-connection (current-buffer)))
280 (nntp-server-buffer (current-buffer))
281 (nntp-have-messaged nil)
282 (tries 0))
283 (when proc
284 (condition-case nil
285 ;; FIXME: we could stop waiting after some
286 ;; timeout, but this is the wrong place to do it.
287 ;; rather than checking time-spent-waiting, we
288 ;; should check time-since-last-output, which
289 ;; needs to be done in nntp.el.
290 (while (eq article gnus-async-current-prefetch-article)
291 (incf tries)
292 (when (nntp-accept-process-output proc)
293 (setq tries 0))
294 (when (and (not nntp-have-messaged)
295 (= tries 3))
296 (gnus-message 5 "Waiting for async article...")
297 (setq nntp-have-messaged t)))
298 (quit
299 ;; if the user interrupted on a slow/hung connection,
300 ;; do something friendly.
301 (when (> tries 3)
302 (setq gnus-async-current-prefetch-article nil))
303 (signal 'quit nil)))
304 (when nntp-have-messaged
305 (gnus-message 5 ""))))))
307 (defun gnus-async-delete-prefetched-entry (entry)
308 "Delete ENTRY from buffer and alist."
309 (ignore-errors
310 (delete-region (cadr entry) (caddr entry))
311 (set-marker (cadr entry) nil)
312 (set-marker (caddr entry) nil))
313 (gnus-async-with-semaphore
314 (setq gnus-async-article-alist
315 (delq entry gnus-async-article-alist))))
317 (defun gnus-async-prefetch-remove-group (group)
318 "Remove all articles belonging to GROUP from the prefetch buffer."
319 (when (and (gnus-group-asynchronous-p group)
320 (memq 'exit gnus-prefetched-article-deletion-strategy))
321 (save-excursion
322 (gnus-async-set-buffer)
323 (dolist (entry gnus-async-article-alist)
324 (when (equal group (nth 3 entry))
325 (gnus-async-delete-prefetched-entry entry))))))
327 (defun gnus-async-prefetched-article-entry (group article)
328 "Return the entry for ARTICLE in GROUP if it has been prefetched."
329 (let ((entry (save-excursion
330 (gnus-async-set-buffer)
331 (assq (intern (format "%s-%d" group article)
332 gnus-async-hashtb)
333 gnus-async-article-alist))))
334 ;; Perhaps something has emptied the buffer?
335 (if (and entry
336 (= (cadr entry) (caddr entry)))
337 (progn
338 (ignore-errors
339 (set-marker (cadr entry) nil)
340 (set-marker (caddr entry) nil))
341 (setq gnus-async-article-alist
342 (delq entry gnus-async-article-alist))
343 nil)
344 entry)))
347 ;;; Header prefetch
350 (defun gnus-async-prefetch-headers (group)
351 "Prefetch the headers for group GROUP."
352 (save-excursion
353 (let (unread)
354 (when (and gnus-use-header-prefetch
355 gnus-asynchronous
356 (gnus-group-asynchronous-p group)
357 (listp gnus-async-header-prefetched)
358 (setq unread (gnus-list-of-unread-articles group)))
359 ;; Mark that a fetch is in progress.
360 (setq gnus-async-header-prefetched t)
361 (nnheader-set-temp-buffer gnus-async-prefetch-headers-buffer t)
362 (erase-buffer)
363 (let ((nntp-server-buffer (current-buffer))
364 (nnheader-callback-function
365 `(lambda (arg)
366 (setq gnus-async-header-prefetched
367 ,(cons group unread)))))
368 (gnus-retrieve-headers unread group gnus-fetch-old-headers))))))
370 (defun gnus-async-retrieve-fetched-headers (articles group)
371 "See whether we have prefetched headers."
372 (when (and gnus-use-header-prefetch
373 (gnus-group-asynchronous-p group)
374 (listp gnus-async-header-prefetched)
375 (equal group (car gnus-async-header-prefetched))
376 (equal articles (cdr gnus-async-header-prefetched)))
377 (save-excursion
378 (nnheader-set-temp-buffer gnus-async-prefetch-headers-buffer t)
379 (nntp-decode-text)
380 (copy-to-buffer nntp-server-buffer (point-min) (point-max))
381 (erase-buffer)
382 (setq gnus-async-header-prefetched nil)
383 t)))
385 (provide 'gnus-async)
387 ;; arch-tag: fee61de5-3ea2-4de6-8578-2f90ce89391d
388 ;;; gnus-async.el ends here