*** empty log message ***
[gnus] / lisp / gnus-async.el
1 ;;; gnus-async.el --- asynchronous support for Gnus
2 ;; Copyright (C) 1996 Free Software Foundation, Inc.
3
4 ;; Author: Lars Magne Ingebrigtsen <larsi@ifi.uio.no>
5 ;; Keywords: news
6
7 ;; This file is part of GNU Emacs.
8
9 ;; GNU Emacs is free software; you can redistribute it and/or modify
10 ;; it under the terms of the GNU General Public License as published by
11 ;; the Free Software Foundation; either version 2, or (at your option)
12 ;; any later version.
13
14 ;; GNU Emacs is distributed in the hope that it will be useful,
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 ;; GNU General Public License for more details.
18
19 ;; You should have received a copy of the GNU General Public License
20 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
21 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22 ;; Boston, MA 02111-1307, USA.
23
24 ;;; Commentary:
25
26 ;;; Code:
27
28 (require 'gnus)
29 (require 'gnus-sum)
30 (require 'nntp)
31
32 (defgroup gnus-asynchronous nil
33   "Support for asynchronous operations."
34   :group 'gnus)
35
36 (defcustom gnus-asynchronous t
37   "*If nil, inhibit all Gnus asynchronicity.
38 If non-nil, let the other asynch variables be heeded."
39   :group 'gnus-asynchronous
40   :type 'boolean)
41
42 (defcustom gnus-use-article-prefetch 30
43   "*If non-nil, prefetch articles in groups that allow this.
44 If a number, prefetch only that many articles forward;
45 if t, prefetch as many articles as possible."
46   :group 'gnus-asynchronous
47   :type '(choice (const :tag "off" nil)
48                  (const :tag "all" t)
49                  (integer :tag "some" 0)))
50
51 (defcustom gnus-prefetched-article-deletion-strategy '(read exit)
52   "List of symbols that say when to remove articles from the prefetch buffer.
53 Possible values in this list are `read', which means that 
54 articles are removed as they are read, and `exit', which means
55 that all articles belonging to a group are removed on exit
56 from that group."
57   :group 'gnus-asynchronous
58   :type '(set (const read) (const exit)))
59
60 (defcustom gnus-use-header-prefetch nil
61   "*If non-nil, prefetch the headers to the next group."
62   :group 'gnus-asynchronous
63   :type 'boolean)
64
65 (defcustom gnus-async-prefetch-article-p 'gnus-async-unread-p
66   "Function called to say whether an article should be prefetched or not.
67 The function is called with one parameter -- the article data.
68 It should return non-nil if the article is to be prefetched."
69   :group 'gnus-asynchronous
70   :type 'function)
71
72 ;;; Internal variables.
73
74 (defvar gnus-async-prefetch-article-buffer " *Async Prefetch Article*")
75 (defvar gnus-async-article-alist nil)
76 (defvar gnus-async-article-semaphore '(nil))
77 (defvar gnus-async-fetch-list nil)
78
79 (defvar gnus-async-prefetch-headers-buffer " *Async Prefetch Headers*")
80 (defvar gnus-async-header-prefetched nil)
81
82 ;;; Utility functions.
83
84 (defun gnus-group-asynchronous-p (group)
85   "Say whether GROUP is fetched from a server that supports asynchronicity."
86   (gnus-asynchronous-p (gnus-find-method-for-group group)))
87
88 ;;; Somewhat bogus semaphores.
89
90 (defun gnus-async-get-semaphore (semaphore)
91   "Wait until SEMAPHORE is released."
92   (while (/= (length (nconc (symbol-value semaphore) (list nil))) 2)
93     (sleep-for 1)))
94
95 (defun gnus-async-release-semaphore (semaphore)
96   "Release SEMAPHORE."
97   (setcdr (symbol-value semaphore) nil))
98
99 (defmacro gnus-async-with-semaphore (&rest forms)
100   `(unwind-protect
101        (progn
102          (gnus-async-get-semaphore 'gnus-async-article-semaphore)
103          ,@forms)
104      (gnus-async-release-semaphore 'gnus-async-article-semaphore)))
105
106 (put 'gnus-asynch-with-semaphore 'lisp-indent-function 0)
107 (put 'gnus-asynch-with-semaphore 'edebug-form-spec '(body))
108         
109 ;;;
110 ;;; Article prefetch
111 ;;;
112
113 (gnus-add-shutdown 'gnus-async-close 'gnus)
114 (defun gnus-async-close ()
115   (gnus-kill-buffer gnus-async-prefetch-article-buffer)
116   (gnus-kill-buffer gnus-async-prefetch-headers-buffer)
117   (setq gnus-async-article-alist nil
118         gnus-async-header-prefetched nil))
119
120 (defun gnus-async-set-buffer ()
121   (nnheader-set-temp-buffer gnus-async-prefetch-article-buffer t))
122
123 (defun gnus-async-halt-prefetch ()
124   "Stop prefetching."
125   (setq gnus-async-fetch-list nil))
126
127 (defun gnus-async-prefetch-next (group article summary)
128   "Possibly prefetch several articles starting with the article after ARTICLE."
129   (when (and (gnus-buffer-live-p summary)
130              gnus-asynchronous
131              (gnus-group-asynchronous-p group))
132     (save-excursion
133       (set-buffer gnus-summary-buffer)
134       (let ((next (caadr (gnus-data-find-list article))))
135         (when next
136           (if (not (fboundp 'run-with-idle-timer))
137               ;; This is either an older Emacs or XEmacs, so we
138               ;; do this, which leads to slightly slower article
139               ;; buffer display.
140               (gnus-async-prefetch-article group next summary)
141             (run-with-idle-timer 
142              0.1 nil 'gnus-async-prefetch-article group next summary)))))))
143
144 (defun gnus-async-prefetch-article (group article summary &optional next)
145   "Possibly prefetch several articles starting with ARTICLE."
146   (if (not (gnus-buffer-live-p summary))
147       (gnus-async-with-semaphore
148        (setq gnus-async-fetch-list nil))
149     (when (and gnus-asynchronous
150                (gnus-alive-p))
151       (when next
152         (gnus-async-with-semaphore
153          (pop gnus-async-fetch-list)))
154       (let ((do-fetch next))
155         (when (and (gnus-group-asynchronous-p group)
156                    (gnus-buffer-live-p summary)
157                    (or (not next)
158                        gnus-async-fetch-list))
159           (gnus-async-with-semaphore
160            (unless next
161              (setq do-fetch (not gnus-async-fetch-list))
162              ;; Nix out any outstanding requests.
163              (setq gnus-async-fetch-list nil)
164              ;; Fill in the new list.
165              (let ((n gnus-use-article-prefetch)
166                    (data (gnus-data-find-list article))
167                    d)
168                (while (and (setq d (pop data))
169                            (if (numberp n)
170                                (natnump (decf n))
171                              n))
172                  (unless (or (gnus-async-prefetched-article-entry
173                               group (setq article (gnus-data-number d)))
174                              (not (natnump article))
175                              (not (funcall gnus-async-prefetch-article-p d)))
176                    ;; Not already fetched -- so we add it to the list.
177                    (push article gnus-async-fetch-list)))
178                (setq gnus-async-fetch-list
179                      (nreverse gnus-async-fetch-list))))
180
181            (when do-fetch
182              (setq article (car gnus-async-fetch-list))))
183     
184           (when (and do-fetch article)
185             ;; We want to fetch some more articles.
186             (save-excursion
187               (set-buffer summary)
188               (let (mark)
189                 (gnus-async-set-buffer)
190                 (goto-char (point-max))
191                 (setq mark (point-marker))
192                 (let ((nnheader-callback-function
193                        (gnus-make-async-article-function 
194                         group article mark summary next))
195                       (nntp-server-buffer 
196                        (get-buffer gnus-async-prefetch-article-buffer)))
197                   (gnus-message 7 "Prefetching article %d in group %s"
198                                 article group)
199                   (gnus-request-article article group))))))))))
200
201 (defun gnus-make-async-article-function (group article mark summary next)
202   "Return a callback function."
203   `(lambda (arg)
204      (save-excursion
205        (when arg
206          (gnus-async-set-buffer)
207          (gnus-async-with-semaphore
208           (push (list ',(intern (format "%s-%d" group article))
209                       ,mark (set-marker (make-marker) (point-max))
210                       ,group ,article)
211                 gnus-async-article-alist)))
212        (if (not (gnus-buffer-live-p ,summary))
213            (gnus-async-with-semaphore
214             (setq gnus-async-fetch-list nil))
215          (gnus-async-prefetch-article ,group ,next ,summary t)))))
216
217 (defun gnus-async-unread-p (data)
218   "Return non-nil if DATA represents an unread article."
219   (gnus-data-unread-p data))
220
221 (defun gnus-async-request-fetched-article (group article buffer)
222   "See whether we have ARTICLE from GROUP and put it in BUFFER."
223   (when (numberp article)
224     (let ((entry (gnus-async-prefetched-article-entry group article)))
225       (when entry
226         (save-excursion
227           (gnus-async-set-buffer)
228           (copy-to-buffer buffer (cadr entry) (caddr entry))
229           ;; Remove the read article from the prefetch buffer.
230           (when (memq 'read gnus-prefetched-article-deletion-strategy)
231             (gnus-async-delete-prefected-entry entry))
232           t)))))
233
234 (defun gnus-async-delete-prefected-entry (entry)
235   "Delete ENTRY from buffer and alist."
236   (delete-region (cadr entry) (caddr entry))
237   (set-marker (cadr entry) nil)
238   (set-marker (caddr entry) nil)
239   (gnus-async-with-semaphore
240    (setq gnus-async-article-alist 
241          (delq entry gnus-async-article-alist))))
242
243 (defun gnus-async-prefetch-remove-group (group)
244   "Remove all articles belonging to GROUP from the prefetch buffer."
245   (when (and (gnus-group-asynchronous-p group)
246              (memq 'exit gnus-prefetched-article-deletion-strategy))
247     (let ((alist gnus-async-article-alist))
248       (save-excursion
249         (gnus-async-set-buffer)
250         (while alist
251           (when (equal group (nth 3 (car alist)))
252             (gnus-async-delete-prefected-entry (car alist)))
253           (pop alist))))))
254           
255 (defun gnus-async-prefetched-article-entry (group article)
256   "Return the entry for ARTICLE in GROUP iff it has been prefetched."
257   (assq (intern (format "%s-%d" group article))
258         gnus-async-article-alist))
259
260 ;;;
261 ;;; Header prefetch
262 ;;;
263
264 (defun gnus-async-prefetch-headers (group)
265   "Prefetch the headers for group GROUP."
266   (save-excursion
267     (let (unread)
268       (when (and gnus-use-header-prefetch
269                  gnus-asynchronous
270                  (gnus-group-asynchronous-p group)
271                  (listp gnus-async-header-prefetched)
272                  (setq unread (gnus-list-of-unread-articles group)))
273         ;; Mark that a fetch is in progress.
274         (setq gnus-async-header-prefetched t)
275         (nnheader-set-temp-buffer gnus-async-prefetch-headers-buffer t)
276         (erase-buffer)
277         (let ((nntp-server-buffer (current-buffer))
278               (nnheader-callback-function
279                `(lambda (arg)
280                   (setq gnus-async-header-prefetched
281                         ,(cons group unread)))))
282           (gnus-retrieve-headers unread group gnus-fetch-old-headers))))))
283
284 (defun gnus-async-retrieve-fetched-headers (articles group)
285   "See whether we have prefetched headers."
286   (when (and gnus-use-header-prefetch
287              (gnus-group-asynchronous-p group)
288              (listp gnus-async-header-prefetched)
289              (equal group (car gnus-async-header-prefetched))
290              (equal articles (cdr gnus-async-header-prefetched)))
291     (save-excursion
292       (nnheader-set-temp-buffer gnus-async-prefetch-headers-buffer t)
293       (nntp-decode-text)
294       (copy-to-buffer nntp-server-buffer (point-min) (point-max))
295       (erase-buffer)
296       (setq gnus-async-header-prefetched nil)
297       t)))
298   
299 (provide 'gnus-async)
300
301 ;;; gnus-async.el ends here