*** empty log message ***
[gnus] / lisp / nnvirtual.el
1 ;;; nnvirtual.el --- virtual newsgroups access for Gnus
2 ;; Copyright (C) 1994,95 Free Software Foundation, Inc.
3
4 ;; Author: Lars Magne Ingebrigtsen <larsi@ifi.uio.no>
5 ;;      Masanobu UMEDA <umerin@flab.flab.fujitsu.junet>
6 ;; Keywords: news
7
8 ;; This file is part of GNU Emacs.
9
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
13 ;; any later version.
14
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 ;; GNU General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING.  If not, write to
22 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
23
24 ;;; Commentary:
25
26 ;; The other access methods (nntp, nnspool, etc) are general news
27 ;; access methods. This module relies on Gnus and can not be used
28 ;; separately.
29
30 ;;; Code:
31
32 (require 'nntp)
33 (require 'nnheader)
34 (require 'gnus)
35
36 \f
37
38 (defconst nnvirtual-version "nnvirtual 1.0"
39   "Version number of this version of nnvirtual.")
40
41 (defvar nnvirtual-group-alist nil)
42 (defvar nnvirtual-current-group nil)
43 (defvar nnvirtual-current-groups nil)
44 (defvar nnvirtual-current-mapping nil)
45
46 (defvar nnvirtual-do-not-open nil)
47
48 (defvar nnvirtual-status-string "")
49
50 \f
51
52 ;;; Interface functions.
53
54 (defun nnvirtual-retrieve-headers (sequence &optional newsgroup server fetch-old)
55   "Retrieve the headers for the articles in SEQUENCE."
56   (nnvirtual-possibly-change-newsgroups newsgroup server t)
57   (save-excursion
58     (set-buffer (get-buffer-create "*virtual headers*"))
59     (buffer-disable-undo (current-buffer))
60     (erase-buffer)
61     (if (stringp (car sequence))
62         'headers
63       (let ((map nnvirtual-current-mapping)
64             (offset 0)
65             articles beg group active top article result prefix
66             fetched-articles group-method)
67         (while sequence
68           (while (< (car (car map)) (car sequence))
69             (setq offset (car (car map)))
70             (setq map (cdr map)))
71           (setq top (car (car map)))
72           (setq group (nth 1 (car map)))
73           (setq prefix (gnus-group-real-prefix group))
74           (setq active (nth 2 (car map)))
75           (setq articles nil)
76           (while (and sequence (<= (car sequence) top))
77             (setq articles (cons (- (+ active (car sequence)) offset) 
78                                  articles))
79             (setq sequence (cdr sequence)))
80           (setq articles (nreverse articles))
81           (if (and articles
82                    (setq result 
83                          (progn
84                            (setq group-method 
85                                  (gnus-find-method-for-group group))
86                            (and (or (gnus-server-opened group-method)
87                                     (gnus-open-server group-method))
88                                 (gnus-request-group group t)
89                                 (gnus-retrieve-headers articles group)))))
90               (save-excursion
91                 (set-buffer nntp-server-buffer)
92                 ;; If we got HEAD headers, we convert them into NOV
93                 ;; headers. This is slow, inefficient and, come to think
94                 ;; of it, downright evil. So sue me. I couldn't be
95                 ;; bothered to write a header parse routine that could
96                 ;; parse a mixed HEAD/NOV buffer.
97                 (and (eq result 'headers) (nnvirtual-convert-headers))
98                 (goto-char (point-min))
99                 (setq fetched-articles nil)
100                 (while (not (eobp))
101                   (setq beg (point)
102                         article (read nntp-server-buffer)
103                         fetched-articles (cons article fetched-articles))
104                   (delete-region beg (point))
105                   (insert (int-to-string (+ (- article active) offset)))
106                   (beginning-of-line)
107                   (looking-at 
108                    "[^\t]*\t[^\t]*\t[^\t]*\t[^\t]*\t[^\t]*\t[^\t]*\t[^\t]*\t")
109                   (goto-char (match-end 0))
110                   (or (search-forward 
111                        "\t" (save-excursion (end-of-line) (point)) t)
112                       (end-of-line))
113                   (while (= (char-after (1- (point))) ? )
114                     (forward-char -1)
115                     (delete-char 1))
116                   (if (eolp)
117                       (progn
118                         (end-of-line)
119                         (or (= (char-after (1- (point))) ?\t)
120                             (insert ?\t))
121                         (insert (format "Xref: %s %s:%d\t" (system-name) 
122                                         group article)))
123                     (if (not (string= "" prefix))
124                         (while (re-search-forward 
125                                 "[^ ]+:[0-9]+"
126                                 (save-excursion (end-of-line) (point)) t)
127                           (save-excursion
128                             (goto-char (match-beginning 0))
129                             (insert prefix))))
130                     (end-of-line)
131                     (or (= (char-after (1- (point))) ?\t)
132                         (insert ?\t)))
133                   (forward-line 1))))
134           (goto-char (point-max))
135           (insert-buffer-substring nntp-server-buffer)
136           ;; We have now massaged and inserted the headers from one
137           ;; group. In case some of the articles have expired or been
138           ;; cancelled, we have to mark them as read in the component
139           ;; group. 
140           (let ((unfetched (gnus-sorted-complement 
141                             articles (nreverse fetched-articles))))
142             (and unfetched
143                  (gnus-group-make-articles-read group unfetched))))
144         ;; The headers are ready for reading, so they are inserted into
145         ;; the nntp-server-buffer, which is where Gnus expects to find
146         ;; them.
147         (prog1
148             (save-excursion
149               (set-buffer nntp-server-buffer)
150               (erase-buffer)
151               (insert-buffer-substring "*virtual headers*")
152               'nov)
153           (kill-buffer (current-buffer)))))))
154
155 (defun nnvirtual-open-server (newsgroups &optional something)
156   "Open a virtual newsgroup that contains NEWSGROUPS."
157   (nnheader-init-server-buffer))
158
159 (defun nnvirtual-close-server (&rest dum)
160   "Close news server."
161   t)
162
163 (defun nnvirtual-request-close ()
164   (setq nnvirtual-current-group nil
165         nnvirtual-current-groups nil
166         nnvirtual-current-mapping nil
167         nnvirtual-group-alist nil)
168   t)
169
170 (defun nnvirtual-server-opened (&optional server)
171   "Return server process status, T or NIL.
172 If the stream is opened, return T, otherwise return NIL."
173   (and nntp-server-buffer
174        (get-buffer nntp-server-buffer)))
175
176 (defun nnvirtual-status-message (&optional server)
177   "Return server status response as string."
178   nnvirtual-status-string)
179
180 (defun nnvirtual-request-article (article &optional newsgroup server buffer)
181   "Select article by message number."
182   (nnvirtual-possibly-change-newsgroups newsgroup server t)
183   (and (numberp article)
184        (let ((map nnvirtual-current-mapping)
185              (offset 0)
186              group-method)
187          (while (< (car (car map)) article)
188            (setq offset (car (car map)))
189            (setq map (cdr map)))
190          (setq group-method (gnus-find-method-for-group (nth 1 (car map))))
191          (or (gnus-server-opened group-method)
192              (gnus-open-server group-method))
193          (gnus-request-group (nth 1 (car map)) t)
194          (gnus-request-article (- (+ (nth 2 (car map)) article) offset)
195                                (nth 1 (car map)) buffer))))
196
197 (defun nnvirtual-request-group (group &optional server dont-check)
198   "Make GROUP the current newsgroup."
199   (nnvirtual-possibly-change-newsgroups group server dont-check)
200   (let ((map nnvirtual-current-mapping))
201     (save-excursion
202       (set-buffer nntp-server-buffer)
203       (erase-buffer)
204       (if map
205           (progn
206             (while (cdr map)
207               (setq map (cdr map)))
208             (insert (format "211 %d 1 %d %s\n" (car (car map)) 
209                             (car (car map)) group))
210             t)
211         (setq nnvirtual-status-string "No component groups")
212         (setq nnvirtual-current-group nil)
213         nil))))
214     
215 (defun nnvirtual-close-group (group &optional server)
216   (if (not nnvirtual-current-group)
217       ()
218     (nnvirtual-possibly-change-newsgroups group server t)
219     (nnvirtual-update-marked)
220     (setq nnvirtual-current-group nil
221           nnvirtual-current-groups nil
222           nnvirtual-current-mapping nil)
223     (setq nnvirtual-group-alist 
224           (delq (assoc group nnvirtual-group-alist) nnvirtual-group-alist))))
225
226 (defun nnvirtual-request-list (&optional server) 
227   (setq nnvirtual-status-string "nnvirtual: LIST is not implemented.")
228   nil)
229
230 (defun nnvirtual-request-newgroups (date &optional server)
231   "List new groups."
232   (setq nnvirtual-status-string "NEWGROUPS is not supported.")
233   nil)
234
235 (defun nnvirtual-request-list-newsgroups (&optional server)
236   (setq nnvirtual-status-string
237         "nnvirtual: LIST NEWSGROUPS is not implemented.")
238   nil)
239
240 \f
241 ;;; Internal functions.
242
243 (defun nnvirtual-convert-headers ()
244   "Convert HEAD headers into NOV headers."
245   (save-excursion
246     (set-buffer nntp-server-buffer)
247     (let* ((gnus-newsgroup-dependencies (make-vector 100 0))
248            (headers (gnus-get-newsgroup-headers))
249            header)
250       (erase-buffer)
251       (while headers
252         (setq header (car headers)
253               headers (cdr headers))
254         (insert (int-to-string (mail-header-number header)) "\t"
255                 (or (mail-header-subject header) "") "\t"
256                 (or (mail-header-from header) "") "\t"
257                 (or (mail-header-date header) "") "\t"
258                 (or (mail-header-id header) "") "\t"
259                 (or (mail-header-references header) "") "\t"
260                 (int-to-string (or (mail-header-chars header) 0)) "\t"
261                 (int-to-string (or (mail-header-lines header) 0)) "\t"
262                 (if (mail-header-xref header) 
263                     (concat "Xref: " (mail-header-xref header) "\t")
264                   "") "\n")))))
265
266 (defun nnvirtual-possibly-change-newsgroups (group regexp &optional check)
267   (let ((inf t))
268     (or (not group)
269         (and nnvirtual-current-group
270              (string= group nnvirtual-current-group))
271         (and (setq inf (assoc group nnvirtual-group-alist))
272              (string= (nth 3 inf) regexp)
273              (progn
274                (setq nnvirtual-current-group (car inf))
275                (setq nnvirtual-current-groups (nth 1 inf))
276                (setq nnvirtual-current-mapping (nth 2 inf)))))
277     (if (or (not check) (not inf))
278         (progn
279           (and inf (setq nnvirtual-group-alist 
280                          (delq inf nnvirtual-group-alist)))
281           (setq nnvirtual-current-mapping nil)
282           (setq nnvirtual-current-group group)
283           (let ((newsrc gnus-newsrc-alist)
284                 (virt-group (gnus-group-prefixed-name 
285                              nnvirtual-current-group '(nnvirtual ""))))
286             (setq nnvirtual-current-groups nil)
287             (while newsrc
288               (and (string-match regexp (car (car newsrc)))
289                    (not (string= (car (car newsrc)) virt-group))
290                    (setq nnvirtual-current-groups
291                          (cons (car (car newsrc)) nnvirtual-current-groups)))
292               (setq newsrc (cdr newsrc))))
293           (if nnvirtual-current-groups
294               (progn
295                 (nnvirtual-create-mapping group)
296                 (setq nnvirtual-group-alist
297                       (cons (list group nnvirtual-current-groups 
298                                   nnvirtual-current-mapping regexp)
299                             nnvirtual-group-alist)))
300             (setq nnvirtual-status-string 
301                   (format 
302                    "nnvirtual: No newsgroups for this virtual newsgroup"))))))
303   nnvirtual-current-groups)
304
305 (defun nnvirtual-create-mapping (group)
306   (let* ((group (gnus-group-prefixed-name group (list 'nnvirtual "")))
307          (info (nth 2 (gnus-gethash group gnus-newsrc-hashtb)))
308          (groups nnvirtual-current-groups)
309          (offset 0)
310          reads unread igroup itotal ireads)
311     ;; The virtual group doesn't exist. (?)
312     (or info (error "No such group: %s" group))
313     (setq nnvirtual-current-mapping nil)
314     (while groups
315       ;; Added by Sudish Joseph <joseph@cis.ohio-state.edu>.
316       (setq igroup (car groups))
317       (let ((info (nth 2 (gnus-gethash igroup gnus-newsrc-hashtb)))
318             (active (gnus-gethash igroup gnus-active-hashtb)))
319         ;; See if the group has had its active list read this session
320         ;; if not, we do it now.
321         (if (null active)
322             (if (gnus-activate-group igroup)
323                 (progn
324                   (gnus-get-unread-articles-in-group
325                    info (gnus-gethash igroup gnus-active-hashtb))
326                   (setq active (gnus-gethash igroup gnus-active-hashtb)))
327               (message "Couldn't open component group %s" igroup)))
328         (if (null active)
329             ()
330           ;; And then we do the mapping for this component group. If
331           ;; you feel tempted to cast your eyes to the soup below -
332           ;; don't. It'll hurt your soul. Suffice to say that it
333           ;; assigns ranges of nnvirtual article numbers to the
334           ;; different component groups. To get the article number
335           ;; from the nnvirtual number, one does something like
336           ;; (+ (- number offset) (car active)), where `offset' is the
337           ;; slice the mess below assigns, and active is the lowest
338           ;; active article in the component group. 
339           (setq itotal (1+ (- (cdr active) (car active))))
340           (if (setq ireads (nth 2 info))
341               (let ((itreads
342                      (if (not (listp (cdr ireads)))
343                          (setq ireads (list (cons (car ireads) (cdr ireads))))
344                        (setq ireads (copy-alist ireads)))))
345                 (if (< (or (and (numberp (car ireads)) (car ireads))
346                            (cdr (car ireads))) (car active))
347                     (setq ireads (setq itreads (cdr ireads))))
348                 (if (and ireads (< (or (and (numberp (car ireads))
349                                             (car ireads))
350                                        (car (car ireads))) (car active)))
351                     (setcar (or (and (numberp (car ireads)) ireads)
352                                 (car ireads)) (1+ (car active))))
353                 (while itreads
354                   (setcar (or (and (numberp (car itreads)) itreads)
355                               (car itreads))
356                           (+ (max 
357                               1 (- (if (numberp (car itreads)) 
358                                        (car itreads)
359                                      (car (car itreads)))
360                                    (car active)))
361                              offset))
362                   (if (not (numberp (car itreads)))
363                       (setcdr (car itreads)
364                               (+ (- (cdr (car itreads)) (car active)) offset)))
365                   (setq itreads (cdr itreads)))
366                 (setq reads (nconc reads ireads))))
367           (setq offset (+ offset (1- itotal)))
368           (setq nnvirtual-current-mapping
369                 (cons (list offset igroup (car active)) 
370                       nnvirtual-current-mapping)))
371         (setq groups (cdr groups))))
372     (setq nnvirtual-current-mapping
373           (nreverse nnvirtual-current-mapping))
374     ;; Set Gnus active info.
375     (gnus-sethash group (cons 1 (1- offset)) gnus-active-hashtb)
376     ;; Set Gnus read info.
377     (setcar (nthcdr 2 info) reads)
378
379     ;; Then we deal with the marks.
380     (let ((map nnvirtual-current-mapping)
381           (marks '(tick dormant reply expire score))
382           (offset 0)
383           tick dormant reply expire score marked active)
384       (while map
385         (setq igroup (nth 1 (car map)))
386         (setq active (nth 2 (car map)))
387         (setq marked (nth 3 (nth 2 (gnus-gethash igroup gnus-newsrc-hashtb))))
388         (let ((m marks))
389           (while m
390             (and (assq (car m) marked)
391                  (set (car m) 
392                       (nconc (mapcar 
393                               (lambda (art) 
394                                 (if (numberp art)
395                                     (if (< art active)
396                                         0 (+ (- art active) offset))
397                                   (cons (+ (- (car art) active) offset)
398                                         (cdr art))))
399                               (cdr (assq (car m) marked)))
400                              (symbol-value (car m)))))
401             (setq m (cdr m))))
402         (setq offset (car (car map)))
403         (setq map (cdr map)))
404       ;; Put the list of marked articles in the info of the virtual group.
405       (let ((m marks)
406             marked)
407         (while m
408           (and (symbol-value (car m))
409                (setq marked (cons (cons (car m) (symbol-value (car m)))
410                                   marked)))
411           (setq m (cdr m)))
412         (if (nthcdr 3 info)
413             (setcar (nthcdr 3 info) marked)
414           (setcdr (nthcdr 2 info) (list marked)))))))
415
416 (defun nnvirtual-update-marked ()
417   (let ((mark-lists '((gnus-newsgroup-marked . tick)
418                       (gnus-newsgroup-dormant . dormant)
419                       (gnus-newsgroup-expirable . expire)
420                       (gnus-newsgroup-replied . reply)))
421         marks art-group group-alist g)
422     (while mark-lists
423       (setq marks (symbol-value (car (car mark-lists))))
424       ;; Find out what groups the mark belong to.
425       (while marks
426         (setq art-group (nnvirtual-art-group (car marks)))
427         (if (setq g (assoc (car art-group) group-alist))
428             (nconc g (list (cdr art-group)))
429           (setq group-alist (cons (list (car art-group) (cdr art-group)) 
430                                   group-alist)))
431         (setq marks (cdr marks)))
432       ;; The groups that don't have marks must have no marks. (Yup.)
433       (let ((groups nnvirtual-current-groups))
434         (while groups
435           (or (assoc (car groups) group-alist)
436               (setq group-alist (cons (list (car groups)) group-alist)))
437           (setq groups (cdr groups))))
438       ;; The we update the list of marks.
439       (while group-alist
440         (gnus-add-marked-articles 
441          (car (car group-alist)) (cdr (car mark-lists)) 
442          (cdr (car group-alist)) nil t)
443         (gnus-group-update-group (car (car group-alist)) t)
444         (setq group-alist (cdr group-alist)))
445       (setq mark-lists (cdr mark-lists)))))
446
447 (defun nnvirtual-art-group (article) 
448   (let ((map nnvirtual-current-mapping)
449         (offset 0))
450     (while (< (car (car map)) (if (numberp article) article (car article)))
451       (setq offset (car (car map))
452             map (cdr map)))
453     (cons (nth 1 (car map))
454           (if (numberp article)
455               (- (+ article (nth 2 (car map))) offset)
456             (cons (- (+ (car article) (nth 2 (car map))) offset)
457                   (cdr article))))))
458
459 (defun nnvirtual-catchup-group (group &optional server all)
460   (nnvirtual-possibly-change-newsgroups group server)
461   (let ((gnus-group-marked nnvirtual-current-groups)
462         (gnus-expert-user t))
463     (save-excursion
464       (set-buffer gnus-group-buffer)
465       (gnus-group-catchup-current nil all))))
466
467 (provide 'nnvirtual)
468
469 ;;; nnvirtual.el ends here