*** 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 'lisp-indent-hook 0)
108 (put 'gnus-asynch-with-semaphore 'edebug-form-spec '(body))
109         
110 ;;;
111 ;;; Article prefetch
112 ;;;
113
114 (gnus-add-shutdown 'gnus-async-close 'gnus)
115 (defun gnus-async-close ()
116   (gnus-kill-buffer gnus-async-prefetch-article-buffer)
117   (gnus-kill-buffer gnus-async-prefetch-headers-buffer)
118   (setq gnus-async-article-alist nil
119         gnus-async-header-prefetched nil))
120
121 (defun gnus-async-set-buffer ()
122   (nnheader-set-temp-buffer gnus-async-prefetch-article-buffer t))
123
124 (defun gnus-async-prefetch-next (group article summary)
125   "Possibly prefetch several articles starting with the article after ARTICLE."
126   (when (and (gnus-buffer-live-p summary)
127              gnus-asynchronous
128              (gnus-group-asynchronous-p group))
129     (save-excursion
130       (set-buffer gnus-summary-buffer)
131       (let ((next (caadr (gnus-data-find-list article))))
132         (when next
133           (if (not (fboundp 'run-with-idle-timer))
134               ;; This is either an older Emacs or XEmacs, so we
135               ;; do this, which leads to slightly slower article
136               ;; buffer display.
137               (gnus-async-prefetch-article group next summary)
138             (run-with-idle-timer 
139              0.1 nil 'gnus-async-prefetch-article group next summary)))))))
140
141 (defun gnus-async-prefetch-article (group article summary &optional next)
142   "Possibly prefetch several articles starting with ARTICLE."
143   (if (not (gnus-buffer-live-p summary))
144       (gnus-async-with-semaphore
145        (setq gnus-async-fetch-list nil))
146     (when (and gnus-asynchronous
147                (gnus-alive-p))
148       (when next
149         (gnus-async-with-semaphore
150          (pop gnus-async-fetch-list)))
151       (let ((do-fetch next))
152         (when (and (gnus-group-asynchronous-p group)
153                    (gnus-buffer-live-p summary)
154                    (or (not next)
155                        gnus-async-fetch-list))
156           (gnus-async-with-semaphore
157            (unless next
158              (setq do-fetch (not gnus-async-fetch-list))
159              ;; Nix out any outstanding requests.
160              (setq gnus-async-fetch-list nil)
161              ;; Fill in the new list.
162              (let ((n gnus-use-article-prefetch)
163                    (data (gnus-data-find-list article))
164                    d)
165                (while (and (setq d (pop data))
166                            (if (numberp n)
167                                (natnump (decf n))
168                              n))
169                  (unless (or (gnus-async-prefetched-article-entry
170                               group (setq article (gnus-data-number d)))
171                              (not (natnump article))
172                              (not (funcall gnus-async-prefetch-article-p d)))
173                    ;; Not already fetched -- so we add it to the list.
174                    (push article gnus-async-fetch-list)))
175                (setq gnus-async-fetch-list