Mercurial > emacs
annotate lisp/gnus/nnvirtual.el @ 39482:5eea05fd1af9
*** empty log message ***
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Thu, 27 Sep 2001 11:05:06 +0000 |
parents | 9968f55ad26e |
children | b80d723ad7cc |
rev | line source |
---|---|
17493 | 1 ;;; nnvirtual.el --- virtual newsgroups access for Gnus |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
2 ;; Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
3 ;; Free Software Foundation, Inc. |
17493 | 4 |
5 ;; Author: David Moore <dmoore@ucsd.edu> | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
6 ;; Lars Magne Ingebrigtsen <larsi@gnus.org> |
17493 | 7 ;; Masanobu UMEDA <umerin@flab.flab.fujitsu.junet> |
8 ;; Keywords: news | |
9 | |
10 ;; This file is part of GNU Emacs. | |
11 | |
12 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
13 ;; it under the terms of the GNU General Public License as published by | |
14 ;; the Free Software Foundation; either version 2, or (at your option) | |
15 ;; any later version. | |
16 | |
17 ;; GNU Emacs is distributed in the hope that it will be useful, | |
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
20 ;; GNU General Public License for more details. | |
21 | |
22 ;; You should have received a copy of the GNU General Public License | |
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
25 ;; Boston, MA 02111-1307, USA. | |
26 | |
27 ;;; Commentary: | |
28 | |
29 ;; The other access methods (nntp, nnspool, etc) are general news | |
30 ;; access methods. This module relies on Gnus and can not be used | |
31 ;; separately. | |
32 | |
33 ;;; Code: | |
34 | |
35 (require 'nntp) | |
36 (require 'nnheader) | |
37 (require 'gnus) | |
38 (require 'nnoo) | |
39 (require 'gnus-util) | |
40 (require 'gnus-start) | |
41 (require 'gnus-sum) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
42 (require 'gnus-msg) |
17493 | 43 (eval-when-compile (require 'cl)) |
44 | |
45 (nnoo-declare nnvirtual) | |
46 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
47 (defvoo nnvirtual-always-rescan t |
17493 | 48 "*If non-nil, always scan groups for unread articles when entering a group. |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
49 If this variable is nil and you read articles in a component group |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
50 after the virtual group has been activated, the read articles from the |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
51 component group will show up when you enter the virtual group.") |
17493 | 52 |
53 (defvoo nnvirtual-component-regexp nil | |
54 "*Regexp to match component groups.") | |
55 | |
56 (defvoo nnvirtual-component-groups nil | |
57 "Component group in this nnvirtual group.") | |
58 | |
59 | |
60 | |
61 (defconst nnvirtual-version "nnvirtual 1.1") | |
62 | |
63 (defvoo nnvirtual-current-group nil) | |
64 | |
65 (defvoo nnvirtual-mapping-table nil | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
66 "Table of rules on how to map between component group and article number to virtual article number.") |
17493 | 67 |
68 (defvoo nnvirtual-mapping-offsets nil | |
69 "Table indexed by component group to an offset to be applied to article numbers in that group.") | |
70 | |
71 (defvoo nnvirtual-mapping-len 0 | |
72 "Number of articles in this virtual group.") | |
73 | |
74 (defvoo nnvirtual-mapping-reads nil | |
75 "Compressed sequence of read articles on the virtual group as computed from the unread status of individual component groups.") | |
76 | |
77 (defvoo nnvirtual-mapping-marks nil | |
78 "Compressed marks alist for the virtual group as computed from the marks of individual component groups.") | |
79 | |
80 (defvoo nnvirtual-info-installed nil | |
81 "T if we have already installed the group info for this group, and shouldn't blast over it again.") | |
82 | |
83 (defvoo nnvirtual-status-string "") | |
84 | |
85 (eval-and-compile | |
86 (autoload 'gnus-cache-articles-in-group "gnus-cache")) | |
87 | |
88 | |
89 | |
90 ;;; Interface functions. | |
91 | |
92 (nnoo-define-basics nnvirtual) | |
93 | |
94 | |
95 (deffoo nnvirtual-retrieve-headers (articles &optional newsgroup | |
96 server fetch-old) | |
97 (when (nnvirtual-possibly-change-server server) | |
98 (save-excursion | |
99 (set-buffer nntp-server-buffer) | |
100 (erase-buffer) | |
101 (if (stringp (car articles)) | |
102 'headers | |
103 (let ((vbuf (nnheader-set-temp-buffer | |
104 (get-buffer-create " *virtual headers*"))) | |
105 (carticles (nnvirtual-partition-sequence articles)) | |
106 (system-name (system-name)) | |
107 cgroup carticle article result prefix) | |
108 (while carticles | |
109 (setq cgroup (caar carticles)) | |
110 (setq articles (cdar carticles)) | |
111 (pop carticles) | |
112 (when (and articles | |
113 (gnus-check-server | |
114 (gnus-find-method-for-group cgroup) t) | |
115 (gnus-request-group cgroup t) | |
116 (setq prefix (gnus-group-real-prefix cgroup)) | |
117 ;; FIX FIX FIX we want to check the cache! | |
118 ;; This is probably evil if people have set | |
119 ;; gnus-use-cache to nil themselves, but I | |
120 ;; have no way of finding the true value of it. | |
121 (let ((gnus-use-cache t)) | |
122 (setq result (gnus-retrieve-headers | |
123 articles cgroup nil)))) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
124 (set-buffer nntp-server-buffer) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
125 ;; If we got HEAD headers, we convert them into NOV |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
126 ;; headers. This is slow, inefficient and, come to think |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
127 ;; of it, downright evil. So sue me. I couldn't be |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
128 ;; bothered to write a header parse routine that could |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
129 ;; parse a mixed HEAD/NOV buffer. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
130 (when (eq result 'headers) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
131 (nnvirtual-convert-headers)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
132 (goto-char (point-min)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
133 (while (not (eobp)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
134 (delete-region (point) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
135 (progn |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
136 (setq carticle (read nntp-server-buffer)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
137 (point))) |
17493 | 138 |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
139 ;; We remove this article from the articles list, if |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
140 ;; anything is left in the articles list after going through |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
141 ;; the entire buffer, then those articles have been |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
142 ;; expired or canceled, so we appropriately update the |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
143 ;; component group below. They should be coming up |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
144 ;; generally in order, so this shouldn't be slow. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
145 (setq articles (delq carticle articles)) |
17493 | 146 |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
147 (setq article (nnvirtual-reverse-map-article cgroup carticle)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
148 (if (null article) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
149 ;; This line has no reverse mapping, that means it |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
150 ;; was an extra article reference returned by nntp. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
151 (progn |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
152 (beginning-of-line) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
153 (delete-region (point) (progn (forward-line 1) (point)))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
154 ;; Otherwise insert the virtual article number, |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
155 ;; and clean up the xrefs. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
156 (princ article nntp-server-buffer) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
157 (nnvirtual-update-xref-header cgroup carticle |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
158 prefix system-name) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
159 (forward-line 1)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
160 ) |
17493 | 161 |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
162 (set-buffer vbuf) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
163 (goto-char (point-max)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
164 (insert-buffer-substring nntp-server-buffer)) |
17493 | 165 ;; Anything left in articles is expired or canceled. |
166 ;; Could be smart and not tell it about articles already known? | |
167 (when articles | |
168 (gnus-group-make-articles-read cgroup articles)) | |
169 ) | |
170 | |
171 ;; The headers are ready for reading, so they are inserted into | |
172 ;; the nntp-server-buffer, which is where Gnus expects to find | |
173 ;; them. | |
174 (prog1 | |
175 (save-excursion | |
176 (set-buffer nntp-server-buffer) | |
177 (erase-buffer) | |
178 (insert-buffer-substring vbuf) | |
179 ;; FIX FIX FIX, we should be able to sort faster than | |
180 ;; this if needed, since each cgroup is sorted, we just | |
181 ;; need to merge | |
182 (sort-numeric-fields 1 (point-min) (point-max)) | |
183 'nov) | |
184 (kill-buffer vbuf))))))) | |
185 | |
186 | |
187 (defvoo nnvirtual-last-accessed-component-group nil) | |
188 | |
189 (deffoo nnvirtual-request-article (article &optional group server buffer) | |
190 (when (nnvirtual-possibly-change-server server) | |
191 (if (stringp article) | |
192 ;; This is a fetch by Message-ID. | |
193 (cond | |
194 ((not nnvirtual-last-accessed-component-group) | |
195 (nnheader-report | |
196 'nnvirtual "Don't know what server to request from")) | |
197 (t | |
198 (save-excursion | |
199 (when buffer | |
200 (set-buffer buffer)) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
201 (let* ((gnus-override-method nil) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
202 (method (gnus-find-method-for-group |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
203 nnvirtual-last-accessed-component-group))) |
17493 | 204 (funcall (gnus-get-function method 'request-article) |
205 article nil (nth 1 method) buffer))))) | |
206 ;; This is a fetch by number. | |
207 (let* ((amap (nnvirtual-map-article article)) | |
208 (cgroup (car amap))) | |
209 (cond | |
210 ((not amap) | |
211 (nnheader-report 'nnvirtual "No such article: %s" article)) | |
212 ((not (gnus-check-group cgroup)) | |
213 (nnheader-report | |
214 'nnvirtual "Can't open server where %s exists" cgroup)) | |
215 ((not (gnus-request-group cgroup t)) | |
216 (nnheader-report 'nnvirtual "Can't open component group %s" cgroup)) | |
217 (t | |
218 (setq nnvirtual-last-accessed-component-group cgroup) | |
219 (if buffer | |
220 (save-excursion | |
221 (set-buffer buffer) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
222 ;; We bind this here to avoid double decoding. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
223 (let ((gnus-article-decode-hook nil)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
224 (gnus-request-article-this-buffer (cdr amap) cgroup))) |
17493 | 225 (gnus-request-article (cdr amap) cgroup)))))))) |
226 | |
227 | |
228 (deffoo nnvirtual-open-server (server &optional defs) | |
229 (unless (assq 'nnvirtual-component-regexp defs) | |
230 (push `(nnvirtual-component-regexp ,server) | |
231 defs)) | |
232 (nnoo-change-server 'nnvirtual server defs) | |
233 (if nnvirtual-component-groups | |
234 t | |
235 (setq nnvirtual-mapping-table nil | |
236 nnvirtual-mapping-offsets nil | |
237 nnvirtual-mapping-len 0 | |
238 nnvirtual-mapping-reads nil | |
239 nnvirtual-mapping-marks nil | |
240 nnvirtual-info-installed nil) | |
241 (when nnvirtual-component-regexp | |
242 ;; Go through the newsrc alist and find all component groups. | |
243 (let ((newsrc (cdr gnus-newsrc-alist)) | |
244 group) | |
245 (while (setq group (car (pop newsrc))) | |
246 (when (string-match nnvirtual-component-regexp group) ; Match | |
247 ;; Add this group to the list of component groups. | |
248 (setq nnvirtual-component-groups | |
249 (cons group (delete group nnvirtual-component-groups))))))) | |
250 (if (not nnvirtual-component-groups) | |
251 (nnheader-report 'nnvirtual "No component groups: %s" server) | |
252 t))) | |
253 | |
254 | |
255 (deffoo nnvirtual-request-group (group &optional server dont-check) | |
256 (nnvirtual-possibly-change-server server) | |
257 (setq nnvirtual-component-groups | |
258 (delete (nnvirtual-current-group) nnvirtual-component-groups)) | |
259 (cond | |
260 ((null nnvirtual-component-groups) | |
261 (setq nnvirtual-current-group nil) | |
262 (nnheader-report 'nnvirtual "No component groups in %s" group)) | |
263 (t | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
264 (setq nnvirtual-current-group group) |
17493 | 265 (when (or (not dont-check) |
266 nnvirtual-always-rescan) | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
267 (nnvirtual-create-mapping) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
268 (when nnvirtual-always-rescan |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
269 (nnvirtual-request-update-info |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
270 (nnvirtual-current-group) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
271 (gnus-get-info (nnvirtual-current-group))))) |
17493 | 272 (nnheader-insert "211 %d 1 %d %s\n" |
273 nnvirtual-mapping-len nnvirtual-mapping-len group)))) | |
274 | |
275 | |
276 (deffoo nnvirtual-request-type (group &optional article) | |
277 (if (not article) | |
278 'unknown | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
279 (if (numberp article) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
280 (let ((mart (nnvirtual-map-article article))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
281 (if mart |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
282 (gnus-request-type (car mart) (cdr mart)))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
283 (gnus-request-type |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
284 nnvirtual-last-accessed-component-group nil)))) |
17493 | 285 |
286 (deffoo nnvirtual-request-update-mark (group article mark) | |
287 (let* ((nart (nnvirtual-map-article article)) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
288 (cgroup (car nart))) |
17493 | 289 (when (and nart |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
290 (memq mark gnus-auto-expirable-marks) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
291 ;; The component group might be a virtual group. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
292 (= mark (gnus-request-update-mark cgroup (cdr nart) mark)) |
17493 | 293 (gnus-group-auto-expirable-p cgroup)) |
294 (setq mark gnus-expirable-mark))) | |
295 mark) | |
296 | |
297 | |
298 (deffoo nnvirtual-close-group (group &optional server) | |
299 (when (and (nnvirtual-possibly-change-server server) | |
300 (not (gnus-ephemeral-group-p (nnvirtual-current-group)))) | |
301 (nnvirtual-update-read-and-marked t t)) | |
302 t) | |
303 | |
304 | |
305 (deffoo nnvirtual-request-list (&optional server) | |
306 (nnheader-report 'nnvirtual "LIST is not implemented.")) | |
307 | |
308 | |
309 (deffoo nnvirtual-request-newgroups (date &optional server) | |
310 (nnheader-report 'nnvirtual "NEWGROUPS is not supported.")) | |
311 | |
312 | |
313 (deffoo nnvirtual-request-list-newsgroups (&optional server) | |
314 (nnheader-report 'nnvirtual "LIST NEWSGROUPS is not implemented.")) | |
315 | |
316 | |
317 (deffoo nnvirtual-request-update-info (group info &optional server) | |
318 (when (and (nnvirtual-possibly-change-server server) | |
319 (not nnvirtual-info-installed)) | |
320 ;; Install the precomputed lists atomically, so the virtual group | |
321 ;; is not left in a half-way state in case of C-g. | |
322 (gnus-atomic-progn | |
323 (setcar (cddr info) nnvirtual-mapping-reads) | |
324 (if (nthcdr 3 info) | |
325 (setcar (nthcdr 3 info) nnvirtual-mapping-marks) | |
326 (when nnvirtual-mapping-marks | |
327 (setcdr (nthcdr 2 info) (list nnvirtual-mapping-marks)))) | |
328 (setq nnvirtual-info-installed t)) | |
329 t)) | |
330 | |
331 | |
332 (deffoo nnvirtual-catchup-group (group &optional server all) | |
333 (when (and (nnvirtual-possibly-change-server server) | |
334 (not (gnus-ephemeral-group-p (nnvirtual-current-group)))) | |
335 ;; copy over existing marks first, in case they set anything | |
336 (nnvirtual-update-read-and-marked nil nil) | |
337 ;; do a catchup on all component groups | |
338 (let ((gnus-group-marked (copy-sequence nnvirtual-component-groups)) | |
339 (gnus-expert-user t)) | |
340 ;; Make sure all groups are activated. | |
341 (mapcar | |
342 (lambda (g) | |
343 (when (not (numberp (car (gnus-gethash g gnus-newsrc-hashtb)))) | |
344 (gnus-activate-group g))) | |
345 nnvirtual-component-groups) | |
346 (save-excursion | |
347 (set-buffer gnus-group-buffer) | |
348 (gnus-group-catchup-current nil all))))) | |
349 | |
350 | |
351 (deffoo nnvirtual-find-group-art (group article) | |
352 "Return the real group and article for virtual GROUP and ARTICLE." | |
353 (nnvirtual-map-article article)) | |
354 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
355 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
356 (deffoo nnvirtual-request-post (&optional server) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
357 (if (not gnus-message-group-art) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
358 (nnheader-report 'nnvirtual "Can't post to an nnvirtual group") |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
359 (let ((group (car (nnvirtual-find-group-art |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
360 (car gnus-message-group-art) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
361 (cdr gnus-message-group-art))))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
362 (gnus-request-post (gnus-find-method-for-group group))))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
363 |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
364 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
365 (deffoo nnvirtual-request-expire-articles (articles group |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
366 &optional server force) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
367 (nnvirtual-possibly-change-server server) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
368 (setq nnvirtual-component-groups |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
369 (delete (nnvirtual-current-group) nnvirtual-component-groups)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
370 (let (unexpired) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
371 (dolist (group nnvirtual-component-groups) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
372 (setq unexpired (nconc unexpired |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
373 (mapcar |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
374 #'(lambda (article) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
375 (nnvirtual-reverse-map-article |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
376 group article)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
377 (gnus-group-expire-articles-1 group))))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
378 (sort unexpired '<))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
379 |
17493 | 380 |
381 ;;; Internal functions. | |
382 | |
383 (defun nnvirtual-convert-headers () | |
384 "Convert HEAD headers into NOV headers." | |
385 (save-excursion | |
386 (set-buffer nntp-server-buffer) | |
387 (let* ((dependencies (make-vector 100 0)) | |
388 (headers (gnus-get-newsgroup-headers dependencies)) | |
389 header) | |
390 (erase-buffer) | |
391 (while (setq header (pop headers)) | |
392 (nnheader-insert-nov header))))) | |
393 | |
394 | |
395 (defun nnvirtual-update-xref-header (group article prefix system-name) | |
396 "Edit current NOV header in current buffer to have an xref to the component group, and also server prefix any existing xref lines." | |
397 ;; Move to beginning of Xref field, creating a slot if needed. | |
398 (beginning-of-line) | |
399 (looking-at | |
400 "[^\t]*\t[^\t]*\t[^\t]*\t[^\t]*\t[^\t]*\t[^\t]*\t[^\t]*\t") | |
401 (goto-char (match-end 0)) | |
402 (unless (search-forward "\t" (gnus-point-at-eol) 'move) | |
403 (insert "\t")) | |
404 | |
405 ;; Remove any spaces at the beginning of the Xref field. | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
406 (while (eq (char-after (1- (point))) ? ) |
17493 | 407 (forward-char -1) |
408 (delete-char 1)) | |
409 | |
410 (insert "Xref: " system-name " " group ":") | |
411 (princ article (current-buffer)) | |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19496
diff
changeset
|
412 (insert " ") |
17493 | 413 |
414 ;; If there were existing xref lines, clean them up to have the correct | |
415 ;; component server prefix. | |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19496
diff
changeset
|
416 (save-restriction |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19496
diff
changeset
|
417 (narrow-to-region (point) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19496
diff
changeset
|
418 (or (search-forward "\t" (gnus-point-at-eol) t) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19496
diff
changeset
|
419 (gnus-point-at-eol))) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19496
diff
changeset
|
420 (goto-char (point-min)) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19496
diff
changeset
|
421 (when (re-search-forward "Xref: *[^\n:0-9 ]+ *" nil t) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19496
diff
changeset
|
422 (replace-match "" t t)) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19496
diff
changeset
|
423 (goto-char (point-min)) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19496
diff
changeset
|
424 (when (re-search-forward |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
425 (concat (regexp-quote (gnus-group-real-name group)) ":[0-9]+") |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19496
diff
changeset
|
426 nil t) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19496
diff
changeset
|
427 (replace-match "" t t)) |
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19496
diff
changeset
|
428 (unless (= (point) (point-max)) |
17493 | 429 (insert " ") |
430 (when (not (string= "" prefix)) | |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19496
diff
changeset
|
431 (while (re-search-forward "[^ ]+:[0-9]+" nil t) |
17493 | 432 (save-excursion |
433 (goto-char (match-beginning 0)) | |
19969
5f1ab3dd344d
*** empty log message ***
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19496
diff
changeset
|
434 (insert prefix)))))) |
17493 | 435 |
436 ;; Ensure a trailing \t. | |
437 (end-of-line) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
438 (or (eq (char-after (1- (point))) ?\t) |
17493 | 439 (insert ?\t))) |
440 | |
441 | |
442 (defun nnvirtual-possibly-change-server (server) | |
443 (or (not server) | |
444 (nnoo-current-server-p 'nnvirtual server) | |
445 (nnvirtual-open-server server))) | |
446 | |
447 | |
448 (defun nnvirtual-update-read-and-marked (read-p update-p) | |
449 "Copy marks from the virtual group to the component groups. | |
450 If READ-P is not nil, update the (un)read status of the components. | |
451 If UPDATE-P is not nil, call gnus-group-update-group on the components." | |
452 (when nnvirtual-current-group | |
453 (let ((unreads (and read-p | |
454 (nnvirtual-partition-sequence | |
455 (gnus-list-of-unread-articles | |
456 (nnvirtual-current-group))))) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
457 (type-marks |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
458 (delq nil |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
459 (mapcar (lambda (ml) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
460 (if (eq (car ml) 'score) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
461 nil |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
462 (cons (car ml) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
463 (nnvirtual-partition-sequence (cdr ml))))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
464 (gnus-info-marks (gnus-get-info |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
465 (nnvirtual-current-group)))))) |
17493 | 466 mark type groups carticles info entry) |
467 | |
468 ;; Ok, atomically move all of the (un)read info, clear any old | |
469 ;; marks, and move all of the current marks. This way if someone | |
470 ;; hits C-g, you won't leave the component groups in a half-way state. | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
471 (progn |
17493 | 472 ;; move (un)read |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
473 ;; bind for workaround guns-update-read-articles |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
474 (let ((gnus-newsgroup-active nil)) |
17493 | 475 (while (setq entry (pop unreads)) |
476 (gnus-update-read-articles (car entry) (cdr entry)))) | |
477 | |
478 ;; clear all existing marks on the component groups | |
479 (setq groups nnvirtual-component-groups) | |
480 (while groups | |
481 (when (and (setq info (gnus-get-info (pop groups))) | |
482 (gnus-info-marks info)) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
483 (gnus-info-set-marks |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
484 info |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
485 (if (assq 'score (gnus-info-marks info)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
486 (list (assq 'score (gnus-info-marks info))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
487 nil)))) |
17493 | 488 |
489 ;; Ok, currently type-marks is an assq list with keys of a mark type, | |
490 ;; with data of an assq list with keys of component group names | |
491 ;; and the articles which correspond to that key/group pair. | |
492 (while (setq mark (pop type-marks)) | |
493 (setq type (car mark)) | |
494 (setq groups (cdr mark)) | |
495 (while (setq carticles (pop groups)) | |
496 (gnus-add-marked-articles (car carticles) type (cdr carticles) | |
497 nil t)))) | |
498 | |
499 ;; possibly update the display, it is really slow | |
500 (when update-p | |
501 (setq groups nnvirtual-component-groups) | |
502 (while groups | |
503 (gnus-group-update-group (pop groups) t)))))) | |
504 | |
505 | |
506 (defun nnvirtual-current-group () | |
507 "Return the prefixed name of the current nnvirtual group." | |
508 (concat "nnvirtual:" nnvirtual-current-group)) | |
509 | |
510 | |
511 | |
512 ;;; This is currently O(kn^2) to merge n lists of length k. | |
513 ;;; You could do it in O(knlogn), but we have a small n, and the | |
514 ;;; overhead of the other approach is probably greater. | |
515 (defun nnvirtual-merge-sorted-lists (&rest lists) | |
516 "Merge many sorted lists of numbers." | |
517 (if (null (cdr lists)) | |
518 (car lists) | |
19496
77c68461cbb0
(nnvirtual-merge-sorted-lists): Use sort, not merge.
Richard M. Stallman <rms@gnu.org>
parents:
17493
diff
changeset
|
519 (sort (apply 'nconc lists) '<))) |
17493 | 520 |
521 | |
522 ;;; We map between virtual articles and real articles in a manner | |
523 ;;; which keeps the size of the virtual active list the same as | |
524 ;;; the sum of the component active lists. | |
525 ;;; To achieve fair mixing of the groups, the last article in | |
526 ;;; each of N component groups will be in the the last N articles | |
527 ;;; in the virtual group. | |
528 | |
529 ;;; If you have 3 components A, B and C, with articles 1-8, 1-5, and 6-7 | |
530 ;;; resprectively, then the virtual article numbers look like: | |
531 ;;; | |
532 ;;; 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | |
533 ;;; A1 A2 A3 A4 B1 A5 B2 A6 B3 A7 B4 C6 A8 B5 C7 | |
534 | |
535 ;;; To compute these mappings we generate a couple tables and then | |
536 ;;; do some fast operations on them. Tables for the example above: | |
537 ;;; | |
538 ;;; Offsets - [(A 0) (B -3) (C -1)] | |
539 ;;; | |
540 ;;; a b c d e | |
541 ;;; Mapping - ([ 3 0 1 3 0 ] | |
542 ;;; [ 6 3 2 9 3 ] | |
543 ;;; [ 8 6 3 15 9 ]) | |
544 ;;; | |
545 ;;; (note column 'e' is different in real algorithm, which is slightly | |
546 ;;; different than described here, but this gives you the methodology.) | |
547 ;;; | |
548 ;;; The basic idea is this, when going from component->virtual, apply | |
549 ;;; the appropriate offset to the article number. Then search the first | |
550 ;;; column of the table for a row where 'a' is less than or equal to the | |
551 ;;; modified number. You can see that only group A can therefore go to | |
552 ;;; the first row, groups A and B to the second, and all to the last. | |
553 ;;; The third column of the table is telling us the number of groups | |
554 ;;; which might be able to reach that row (it might increase by more than | |
555 ;;; 1 if several groups have the same size). | |
556 ;;; Then column 'b' provides an additional offset you apply when you have | |
557 ;;; found the correct row. You then multiply by 'c' and add on the groups | |
558 ;;; _position_ in the offset table. The basic idea here is that on | |
559 ;;; any given row we are going to map back and forth using X'=X*c+Y and | |
560 ;;; X=(X'/c), Y=(X' mod c). Then once you've done this transformation, | |
561 ;;; you apply a final offset from column 'e' to give the virtual article. | |
562 ;;; | |
563 ;;; Going the other direction, you instead search on column 'd' instead | |
564 ;;; of 'a', and apply everything in reverse order. | |
565 | |
566 ;;; Convert component -> virtual: | |
567 ;;; set num = num - Offset(group) | |
568 ;;; find first row in Mapping where num <= 'a' | |
569 ;;; num = (num-'b')*c + Position(group) + 'e' | |
570 | |
571 ;;; Convert virtual -> component: | |
572 ;;; find first row in Mapping where num <= 'd' | |
573 ;;; num = num - 'e' | |
574 ;;; group_pos = num mod 'c' | |
575 ;;; num = (num / 'c') + 'b' + Offset(group_pos) | |
576 | |
577 ;;; Easy no? :) | |
578 ;;; | |
579 ;;; Well actually, you need to keep column e offset smaller by the 'c' | |
580 ;;; column for that line, and always add 1 more when going from | |
581 ;;; component -> virtual. Otherwise you run into a problem with | |
582 ;;; unique reverse mapping. | |
583 | |
584 (defun nnvirtual-map-article (article) | |
585 "Return a cons of the component group and article corresponding to the given virtual ARTICLE." | |
586 (let ((table nnvirtual-mapping-table) | |
587 entry group-pos) | |
588 (while (and table | |
589 (> article (aref (car table) 3))) | |
590 (setq table (cdr table))) | |
591 (when (and table | |
592 (> article 0)) | |
593 (setq entry (car table)) | |
594 (setq article (- article (aref entry 4) 1)) | |
595 (setq group-pos (mod article (aref entry 2))) | |
596 (cons (car (aref nnvirtual-mapping-offsets group-pos)) | |
597 (+ (/ article (aref entry 2)) | |
598 (aref entry 1) | |
599 (cdr (aref nnvirtual-mapping-offsets group-pos))) | |
600 )) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
601 )) |
17493 | 602 |
603 | |
604 | |
605 (defun nnvirtual-reverse-map-article (group article) | |
606 "Return the virtual article number corresponding to the given component GROUP and ARTICLE." | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
607 (when (numberp article) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
608 (let ((table nnvirtual-mapping-table) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
609 (group-pos 0) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
610 entry) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
611 (while (not (string= group (car (aref nnvirtual-mapping-offsets |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
612 group-pos)))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
613 (setq group-pos (1+ group-pos))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
614 (setq article (- article (cdr (aref nnvirtual-mapping-offsets |
17493 | 615 group-pos)))) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
616 (while (and table |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
617 (> article (aref (car table) 0))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
618 (setq table (cdr table))) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
619 (setq entry (car table)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
620 (when (and entry |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
621 (> article 0) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
622 (< group-pos (aref entry 2))) ; article not out of range below |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
623 (+ (aref entry 4) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
624 group-pos |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
625 (* (- article (aref entry 1)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
626 (aref entry 2)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
627 1)) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
19969
diff
changeset
|
628 ))) |
17493 | 629 |
630 | |
631 (defsubst nnvirtual-reverse-map-sequence (group articles) | |
632 "Return list of virtual article numbers for all ARTICLES in GROUP. | |
633 The ARTICLES should be sorted, and can be a compressed sequence. | |
634 If any of the article numbers has no corresponding virtual article, | |
635 then it is left out of the result." | |
636 (when (numberp (cdr-safe articles)) | |
637 (setq articles (list articles))) | |
638 (let (result a i j new-a) | |
639 (while (setq a (pop articles)) | |
640 (if (atom a) | |
641 (setq i a | |
642 j a) | |
643 (setq i (car a) | |
644 j (cdr a))) | |
645 (while (<= i j) | |
646 ;; If this is slow, you can optimize by moving article checking | |
647 ;; into here. You don't have to recompute the group-pos, | |
648 ;; nor scan the table every time. | |
649 (when (setq new-a (nnvirtual-reverse-map-article group i)) | |
650 (push new-a result)) | |
651 (setq i (1+ i)))) | |
652 (nreverse result))) | |
653 | |
654 | |
655 (defun nnvirtual-partition-sequence (articles) | |
656 "Return an association list of component article numbers. | |
657 These are indexed by elements of nnvirtual-component-groups, based on | |
658 the sequence ARTICLES of virtual article numbers. ARTICLES should be | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
659 sorted, and can be a compressed sequence. If any of the article |
17493 | 660 numbers has no corresponding component article, then it is left out of |
661 the result." | |
662 (when (numberp (cdr-safe articles)) | |
663 (setq articles (list articles))) | |
664 (let ((carticles (mapcar (lambda (g) (list g)) | |
665 nnvirtual-component-groups)) | |
666 a i j article entry) | |
667 (while (setq a (pop articles)) | |
668 (if (atom a) | |
669 (setq i a | |
670 j a) | |
671 (setq i (car a) | |
672 j (cdr a))) | |
673 (while (<= i j) | |
674 (when (setq article (nnvirtual-map-article i)) | |
675 (setq entry (assoc (car article) carticles)) | |
676 (setcdr entry (cons (cdr article) (cdr entry)))) | |
677 (setq i (1+ i)))) | |
19496
77c68461cbb0
(nnvirtual-merge-sorted-lists): Use sort, not merge.
Richard M. Stallman <rms@gnu.org>
parents:
17493
diff
changeset
|
678 (mapcar (lambda (x) (setcdr x (nreverse (cdr x)))) |
77c68461cbb0
(nnvirtual-merge-sorted-lists): Use sort, not merge.
Richard M. Stallman <rms@gnu.org>
parents:
17493
diff
changeset
|
679 carticles) |
17493 | 680 carticles)) |
681 | |
682 | |
683 (defun nnvirtual-create-mapping () | |
684 "Build the tables necessary to map between component (group, article) to virtual article. | |
685 Generate the set of read messages and marks for the virtual group | |
686 based on the marks on the component groups." | |
687 (let ((cnt 0) | |
688 (tot 0) | |
689 (M 0) | |
690 (i 0) | |
691 actives all-unreads all-marks | |
692 active min max size unreads marks | |
693 next-M next-tot | |
694 reads beg) | |
695 ;; Ok, we loop over all component groups and collect a lot of | |
696 ;; information: | |
697 ;; Into actives we place (g size max), where size is max-min+1. | |
698 ;; Into all-unreads we put (g unreads). | |
699 ;; Into all-marks we put (g marks). | |
700 ;; We also increment cnt and tot here, and compute M (max of sizes). | |
26142
512734631fec
(nnvirtual-create-mapping): Don't use mapc.
Dave Love <fx@gnu.org>
parents:
24357
diff
changeset
|
701 (mapcar (lambda (g) |
512734631fec
(nnvirtual-create-mapping): Don't use mapc.
Dave Love <fx@gnu.org>
parents:
24357
diff
changeset
|
702 (setq active (gnus-activate-group g) |
512734631fec
(nnvirtual-create-mapping): Don't use mapc.
Dave Love <fx@gnu.org>
parents:
24357
diff
changeset
|
703 min (car active) |
512734631fec
(nnvirtual-create-mapping): Don't use mapc.
Dave Love <fx@gnu.org>
parents:
24357
diff
changeset
|
704 max (cdr active)) |
512734631fec
(nnvirtual-create-mapping): Don't use mapc.
Dave Love <fx@gnu.org>
parents:
24357
diff
changeset
|
705 (when (and active (>= max min) (not (zerop max))) |
512734631fec
(nnvirtual-create-mapping): Don't use mapc.
Dave Love <fx@gnu.org>
parents:
24357
diff
changeset
|
706 ;; store active information |
512734631fec
(nnvirtual-create-mapping): Don't use mapc.
Dave Love <fx@gnu.org>
parents:
24357
diff
changeset
|
707 (push (list g (- max min -1) max) actives) |
512734631fec
(nnvirtual-create-mapping): Don't use mapc.
Dave Love <fx@gnu.org>
parents:
24357
diff
changeset
|
708 ;; collect unread/mark info for later |
512734631fec
(nnvirtual-create-mapping): Don't use mapc.
Dave Love <fx@gnu.org>
parents:
24357
diff
changeset
|
709 (setq unreads (gnus-list-of-unread-articles g)) |
512734631fec
(nnvirtual-create-mapping): Don't use mapc.
Dave Love <fx@gnu.org>
parents:
24357
diff
changeset
|
710 (setq marks (gnus-info-marks (gnus-get-info g))) |
512734631fec
(nnvirtual-create-mapping): Don't use mapc.
Dave Love <fx@gnu.org>
parents:
24357
diff
changeset
|
711 (when gnus-use-cache |
512734631fec
(nnvirtual-create-mapping): Don't use mapc.
Dave Love <fx@gnu.org>
parents:
24357
diff
changeset
|
712 (push (cons 'cache |
512734631fec
(nnvirtual-create-mapping): Don't use mapc.
Dave Love <fx@gnu.org>
parents:
24357
diff
changeset
|
713 (gnus-cache-articles-in-group g)) |
512734631fec
(nnvirtual-create-mapping): Don't use mapc.
Dave Love <fx@gnu.org>
parents:
24357
diff
changeset
|
714 marks)) |
512734631fec
(nnvirtual-create-mapping): Don't use mapc.
Dave Love <fx@gnu.org>
parents:
24357
diff
changeset
|
715 (push (cons g unreads) all-unreads) |
512734631fec
(nnvirtual-create-mapping): Don't use mapc.
Dave Love <fx@gnu.org>
parents:
24357
diff
changeset
|
716 (push (cons g marks) all-marks) |
512734631fec
(nnvirtual-create-mapping): Don't use mapc.
Dave Love <fx@gnu.org>
parents:
24357
diff
changeset
|
717 ;; count groups, total #articles, and max size |
512734631fec
(nnvirtual-create-mapping): Don't use mapc.
Dave Love <fx@gnu.org>
parents:
24357
diff
changeset
|
718 (setq size (- max min -1)) |
512734631fec
(nnvirtual-create-mapping): Don't use mapc.
Dave Love <fx@gnu.org>
parents:
24357
diff
changeset
|
719 (setq cnt (1+ cnt) |
512734631fec
(nnvirtual-create-mapping): Don't use mapc.
Dave Love <fx@gnu.org>
parents:
24357
diff
changeset
|
720 tot (+ tot size) |
512734631fec
(nnvirtual-create-mapping): Don't use mapc.
Dave Love <fx@gnu.org>
parents:
24357
diff
changeset
|
721 M (max M size)))) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
26142
diff
changeset
|
722 nnvirtual-component-groups) |
17493 | 723 |
724 ;; Number of articles in the virtual group. | |
725 (setq nnvirtual-mapping-len tot) | |
726 | |
727 | |
728 ;; We want the actives list sorted by size, to build the tables. | |
729 (setq actives (sort actives (lambda (g1 g2) (< (nth 1 g1) (nth 1 g2))))) | |
730 | |
731 ;; Build the offset table. Largest sized groups are at the front. | |
732 (setq nnvirtual-mapping-offsets | |
733 (vconcat | |
734 (nreverse | |
735 (mapcar (lambda (entry) | |
736 (cons (nth 0 entry) | |
737 (- (nth 2 entry) M))) | |
738 actives)))) | |
739 | |
740 ;; Build the mapping table. | |
741 (setq nnvirtual-mapping-table nil) | |
742 (setq actives (mapcar (lambda (entry) (nth 1 entry)) actives)) | |
743 (while actives | |
744 (setq size (car actives)) | |
745 (setq next-M (- M size)) | |
746 (setq next-tot (- tot (* cnt size))) | |
747 ;; make current row in table | |
748 (push (vector M next-M cnt tot (- next-tot cnt)) | |
749 nnvirtual-mapping-table) | |
750 ;; update M and tot | |
751 (setq M next-M) | |
752 (setq tot next-tot) | |
753 ;; subtract the current size from all entries. | |
754 (setq actives (mapcar (lambda (x) (- x size)) actives)) | |
755 ;; remove anything that went to 0. | |
756 (while (and actives | |
757 (= (car actives) 0)) | |
758 (pop actives) | |
759 (setq cnt (- cnt 1)))) | |
760 | |
761 | |
762 ;; Now that the mapping tables are generated, we can convert | |
763 ;; and combine the separate component unreads and marks lists | |
764 ;; into single lists of virtual article numbers. | |
765 (setq unreads (apply 'nnvirtual-merge-sorted-lists | |
766 (mapcar (lambda (x) | |
767 (nnvirtual-reverse-map-sequence | |
768 (car x) (cdr x))) | |
769 all-unreads))) | |
770 (setq marks (mapcar | |
771 (lambda (type) | |
772 (cons (cdr type) | |
773 (gnus-compress-sequence | |
774 (apply | |
775 'nnvirtual-merge-sorted-lists | |
776 (mapcar (lambda (x) | |
777 (nnvirtual-reverse-map-sequence | |
778 (car x) | |
779 (cdr (assq (cdr type) (cdr x))))) | |
780 all-marks))))) | |
781 gnus-article-mark-lists)) | |
782 | |
783 ;; Remove any empty marks lists, and store. | |
19496
77c68461cbb0
(nnvirtual-merge-sorted-lists): Use sort, not merge.
Richard M. Stallman <rms@gnu.org>
parents:
17493
diff
changeset
|
784 (setq nnvirtual-mapping-marks nil) |
77c68461cbb0
(nnvirtual-merge-sorted-lists): Use sort, not merge.
Richard M. Stallman <rms@gnu.org>
parents:
17493
diff
changeset
|
785 (while marks |
77c68461cbb0
(nnvirtual-merge-sorted-lists): Use sort, not merge.
Richard M. Stallman <rms@gnu.org>
parents:
17493
diff
changeset
|
786 (if (cdr (car marks)) |
77c68461cbb0
(nnvirtual-merge-sorted-lists): Use sort, not merge.
Richard M. Stallman <rms@gnu.org>
parents:
17493
diff
changeset
|
787 (push (car marks) nnvirtual-mapping-marks)) |
77c68461cbb0
(nnvirtual-merge-sorted-lists): Use sort, not merge.
Richard M. Stallman <rms@gnu.org>
parents:
17493
diff
changeset
|
788 (setq marks (cdr marks))) |
17493 | 789 |
790 ;; We need to convert the unreads to reads. We compress the | |
791 ;; sequence as we go, otherwise it could be huge. | |
792 (while (and (<= (incf i) nnvirtual-mapping-len) | |
793 unreads) | |
794 (if (= i (car unreads)) | |
795 (setq unreads (cdr unreads)) | |
796 ;; try to get a range. | |
797 (setq beg i) | |
798 (while (and (<= (incf i) nnvirtual-mapping-len) | |
799 (not (= i (car unreads))))) | |
800 (setq i (- i 1)) | |
801 (if (= i beg) | |
802 (push i reads) | |
803 (push (cons beg i) reads)) | |
804 )) | |
805 (when (<= i nnvirtual-mapping-len) | |
806 (if (= i nnvirtual-mapping-len) | |
807 (push i reads) | |
808 (push (cons i nnvirtual-mapping-len) reads))) | |
809 | |
810 ;; Store the reads list for later use. | |
811 (setq nnvirtual-mapping-reads (nreverse reads)) | |
812 | |
813 ;; Throw flag to show we changed the info. | |
814 (setq nnvirtual-info-installed nil) | |
815 )) | |
816 | |
817 (provide 'nnvirtual) | |
818 | |
819 ;;; nnvirtual.el ends here |