*** empty log message ***
[gnus] / lisp / nnvirtual.el
index 88e0fcc..e76b980 100644 (file)
@@ -1,7 +1,7 @@
-;;;; nnvirtual.el --- Virtual newsgroups access for (ding) Gnus
-;; Copyright (C) 1994,95 Free Software Foundation, Inc.
+;;; nnvirtual.el --- virtual newsgroups access for Gnus
+;; Copyright (C) 1994,95,96 Free Software Foundation, Inc.
 
-;; Author: Lars Ingebrigtsen <larsi@ifi.uio.no>
+;; Author: Lars Magne Ingebrigtsen <larsi@ifi.uio.no>
 ;;     Masanobu UMEDA <umerin@flab.flab.fujitsu.junet>
 ;; Keywords: news
 
 (require 'nnheader)
 (require 'gnus)
 
-(defconst nnvirtual-version "nnvirtual 0.0"
-  "Version numbers of this version of nnvirual.")
-
-(defvar nnvirtual-large-newsgroup 50
-  "*The number of the articles which indicates a large newsgroup.
-If the number of the articles is greater than the value, verbose
-messages will be shown to indicate the current status.")
+(defvar nnvirtual-always-rescan nil
+  "*If non-nil, always scan groups for unread articles when entering a group.
+If this variable is nil (which is the default) and you read articles
+in a component group after the virtual group has been activated, the
+read articles from the component group will show up when you enter the
+virtual group.")
 
 \f
 
-(defvar nnvirtual-newsgroups nil
-  "The newsgroups that belong to this virtual newsgroup.")
-
-(defvar nnvirtual-newsgroups-regexp nil
-  "The newsgroups that belong to this virtual newsgroup.")
+(defconst nnvirtual-version "nnvirtual 1.0"
+  "Version number of this version of nnvirtual.")
 
+(defvar nnvirtual-group-alist nil)
+(defvar nnvirtual-current-group nil)
+(defvar nnvirtual-component-groups nil)
 (defvar nnvirtual-mapping nil)
 
-(defvar nnvirtual-do-not-open nil)
-
 (defvar nnvirtual-status-string "")
 
+(eval-and-compile
+  (autoload 'gnus-cache-articles-in-group "gnus-cache"))
+
 \f
 
 ;;; Interface functions.
 
-(defun nnvirtual-retrieve-headers (sequence &optional newsgroup server)
-  "Retrieve the headers for the articles in SEQUENCE."
-  (nnvirtual-possibly-change-newsgroups newsgroup server)
-  (save-excursion
-    (set-buffer (get-buffer-create "*virtual headers*"))
-    (erase-buffer)
-    (let ((number (length sequence))
-         (count 0)
-         (nntp-xover-is-evil t)
-         (i 0)
-         prev articles group-articles beg art-info article group)
-      (if sequence (setq prev (car (aref nnvirtual-mapping (car sequence)))))
-      (while sequence
-       (setq art-info (aref nnvirtual-mapping (car sequence)))
-       (if (not (equal prev (car art-info)))
-           (progn
-             (setq group-articles (cons (list prev (nreverse articles)) 
-                                        group-articles))
-             (setq articles nil)
-             (setq prev (car art-info))))
-       (setq articles (cons (cdr art-info) articles))
-       (setq sequence (cdr sequence)))
-      (if prev
-         (setq group-articles (cons (list prev (nreverse articles)) 
-                                    group-articles)))
-      (setq group-articles (nreverse group-articles))
-      (while group-articles
-       (setq group (car (car group-articles)))
-       (gnus-retrieve-headers (car (cdr (car group-articles))) group)
-       (save-excursion
-         (set-buffer nntp-server-buffer)
-         (goto-char 1)
-         (insert "\n.\n")
-         (goto-char 1)
-         (while (search-forward "\n.\n" nil t)
-           (if (not (looking-at ".[0-9]+ \\([0-9]+\\) "))
-               ()
-             (setq article (string-to-int (gnus-buffer-substring 1 1)))
-             (setq i 1)
-             (while (/= article (cdr (aref nnvirtual-mapping i)))
-               (setq i (1+ i)))
-             (goto-char (match-beginning 1))
-             (looking-at "[0-9]+ ")
-             (replace-match (format "%d " i))
-             (setq beg (point))
-             (search-forward "\n.\n" nil t)
-             (if (not (re-search-backward "^Xref: " beg t))
-                 (progn
-                   (forward-char -2)
-                   (insert (format "Xref: %s %s:%d\n" (system-name) 
-                                   group article))
-                   (forward-char -1)))
-             )))
-       (goto-char (point-max))
-       (insert-buffer-substring nntp-server-buffer 4)
-       (setq group-articles (cdr group-articles)))
-      ;; Weed out articles that appear twice because of cross-posting.
-      ;; Suggested by Stephane Laveau <laveau@corse.inria.fr>.
-      (let ((id-hashtb (make-vector number 0))
-           id)
-       (goto-char (point-min))
-       ;; We look at the message-ids...
-       (while (search-forward "\nMessage-ID: " nil t)
-         ;; ... and check if they are entered into the hash table.
-         (if (boundp (setq id (intern (buffer-substring 
-                                       (point) (progn (end-of-line) (point)))
-                                      id-hashtb)))
-             ;; Yup, so we delete this header.
-             (delete-region
-              (if (search-backward "\n.\n" nil t) (1+ (point)) (point-min))
-              (if (search-forward "\n.\n" nil t) (1+ (match-beginning 0))
-                (point-max))))
-         ;; Nope, so we just enter it into the hash table.
-         (set id t)))
-      ;; The headers are ready for reading, so they are inserted into
-      ;; the nntp-server-buffer, which is where Gnus expects to find
-      ;; them.
-      (prog1
-         (save-excursion
-           (if (not nntp-server-buffer)
-               (setq nntp-server-buffer (get-buffer-create " *nntpd*")))
-           (set-buffer nntp-server-buffer)
-           (erase-buffer)
-           (insert-buffer-substring "*virtual headers*")
-           'headers)
-       (kill-buffer (current-buffer))))))
-
-(defun nnvirtual-open-server (newsgroups &optional something)
-  "Open a virtual newsgroup that contains NEWSGROUPS."
-  (let ((newsrc gnus-newsrc-assoc))
-    (setq nnvirtual-newsgroups nil)
-    (setq nnvirtual-newsgroups-regexp newsgroups)
-    (while newsrc
-      (if (string-match newsgroups (car (car newsrc)))
-         (setq nnvirtual-newsgroups (cons (car (car newsrc)) 
-                                          nnvirtual-newsgroups)))
-      (setq newsrc (cdr newsrc)))
-    (if (null nnvirtual-newsgroups)
-       (setq nnvirtual-status-string 
-             (format 
-              "nnvirtual: No newsgroups for this virtual newsgroup"))
-      (nnvirtual-open-server-internal))
-    nnvirtual-newsgroups))
+(defun nnvirtual-retrieve-headers (articles &optional newsgroup server fetch-old)
+  (when (nnvirtual-possibly-change-group newsgroup server t)
+    (save-excursion
+      (if (stringp (car articles))
+         'headers
+       (let ((map nnvirtual-mapping)
+             (vbuf (nnheader-set-temp-buffer 
+                    (get-buffer-create " *virtual headers*")))
+             (unfetched (mapcar (lambda (g) (list g))
+                                nnvirtual-component-groups))
+             beg cgroup active article result prefix)
+         (while articles
+           (setq article (assq (pop articles) nnvirtual-mapping))
+           (setq cgroup (cadr article))
+           (gnus-request-group cgroup t)
+           (setq prefix (gnus-group-real-prefix cgroup))
+           (when (setq result (gnus-retrieve-headers 
+                               (list (caddr article)) cgroup))
+             (set-buffer nntp-server-buffer)
+             (if (zerop (buffer-size))
+                 (nconc (assq cgroup unfetched) (caddr article))
+               ;; If we got HEAD headers, we convert them into NOV
+               ;; headers.  This is slow, inefficient and, come to think
+               ;; of it, downright evil.  So sue me.  I couldn't be
+               ;; bothered to write a header parse routine that could
+               ;; parse a mixed HEAD/NOV buffer.
+               (when (eq result 'headers)
+                 (nnvirtual-convert-headers))
+               (goto-char (point-min))
+               (while (not (eobp))
+                 (delete-region 
+                  (point) (progn (read nntp-server-buffer) (point)))
+                 (insert (int-to-string (car article)))
+                 (beginning-of-line)
+                 (looking-at 
+                  "[^\t]*\t[^\t]*\t[^\t]*\t[^\t]*\t[^\t]*\t[^\t]*\t[^\t]*\t")
+                 (goto-char (match-end 0))
+                 (or (search-forward 
+                      "\t" (save-excursion (end-of-line) (point)) t)
+                     (end-of-line))
+                 (while (= (char-after (1- (point))) ? )
+                   (forward-char -1)
+                   (delete-char 1))
+                 (if (eolp)
+                     (progn
+                       (end-of-line)
+                       (or (= (char-after (1- (point))) ?\t)
+                           (insert ?\t))
+                       (insert (format "Xref: %s %s:%d\t" (system-name) 
+                                       cgroup (caddr article))))
+                   (if (not (string= "" prefix))
+                       (while (re-search-forward 
+                               "[^ ]+:[0-9]+"
+                               (save-excursion (end-of-line) (point)) t)
+                         (save-excursion
+                           (goto-char (match-beginning 0))
+                           (insert prefix))))
+                   (end-of-line)
+                   (or (= (char-after (1- (point))) ?\t)
+                       (insert ?\t)))
+                 (forward-line 1))
+               (set-buffer vbuf)
+               (goto-char (point-max))
+               (insert-buffer-substring nntp-server-buffer))))
+         
+         ;; In case some of the articles have expired or been
+         ;; cancelled, we have to mark them as read in the
+         ;; component group.
+         (while unfetched
+           (when (cdar unfetched)
+             (gnus-group-make-articles-read 
+              (caar unfetched) (sort (cdar unfetched) '<)))
+           (setq unfetched (cdr unfetched)))
+
+         ;; The headers are ready for reading, so they are inserted into
+         ;; the nntp-server-buffer, which is where Gnus expects to find
+         ;; them.
+         (prog1
+             (save-excursion
+               (set-buffer nntp-server-buffer)
+               (erase-buffer)
+               (insert-buffer-substring vbuf)
+               'nov)
+           (kill-buffer vbuf)))))))
+
+(defun nnvirtual-open-server (server &optional something)
+  (nnheader-init-server-buffer))
 
 (defun nnvirtual-close-server (&rest dum)
-  "Close news server."
-  (nnvirtual-close-server-internal))
+  t)
 
-(fset 'nnvirtual-request-quit (symbol-function 'nnvirtual-close-server))
+(defun nnvirtual-request-close ()
+  (setq nnvirtual-current-group nil
+       nnvirtual-component-groups nil
+       nnvirtual-mapping nil
+       nnvirtual-group-alist nil)
+  t)
 
 (defun nnvirtual-server-opened (&optional server)
-  "Return server process status, T or NIL.
-If the stream is opened, return T, otherwise return NIL."
   (and nntp-server-buffer
        (get-buffer nntp-server-buffer)))
 
-(defun nnvirtual-status-message ()
-  "Return server status response as string."
+(defun nnvirtual-status-message (&optional server)
   nnvirtual-status-string)
 
-(defun nnvirtual-request-article (id &optional newsgroup server buffer)
-  "Select article by message ID (or number)."
-  (nnvirtual-possibly-change-newsgroups newsgroup server)
-  (let (art)
-    (setq art (aref nnvirtual-mapping id))
-    (gnus-request-group (car art))
-    (gnus-request-article (cdr art) (car art) buffer)))
+(defun nnvirtual-request-article (article &optional group server buffer)
+  (when (and (nnvirtual-possibly-change-group group server t)
+            (numberp article))
+    (let* ((amap (assq article nnvirtual-mapping))
+          (cgroup (cadr amap)))
+      (cond
+       ((not amap)
+       (nnheader-report 'nnvirtual "No such article: %s" article))
+       ((not (gnus-check-group cgroup))
+       (nnheader-report
+        'nnvirtual "Can't open server where %s exists" cgroup))
+       ((not (gnus-request-group cgroup t))
+       (nnheader-report 'nnvirtual "Can't open component group %s" cgroup))
+       (t
+       (if buffer 
+           (save-excursion
+             (set-buffer buffer)
+             (gnus-request-article-this-buffer (caddr amap) cgroup))
+         (gnus-request-article (caddr amap) cgroup)))))))
 
 (defun nnvirtual-request-group (group &optional server dont-check)
-  "Make GROUP the current newsgroup."
-  (nnvirtual-possibly-change-newsgroups nil server)
-  (let* ((group (concat gnus-foreign-group-prefix group))
-        (info (nth 2 (gnus-gethash group gnus-newsrc-hashtb)))
-        (groups nnvirtual-newsgroups)
-        (i 0)
-        (total 0)
-        unread igroup)
-    (if (not info)
-       (error "No such group: %s" group))
-    (setcar (nthcdr 2 info) nil)
-    (while groups
-      (setq unread (car (gnus-gethash (car groups) gnus-newsrc-hashtb)))
-      (if (numberp unread) (setq total (+ total unread)))
-      (setq groups (cdr groups)))
-    (setq nnvirtual-mapping (make-vector (+ 3 total) nil))
-    (setq groups nnvirtual-newsgroups)
-    (while groups
-      (setq igroup (car groups))
-      (setq unread (gnus-list-of-unread-articles igroup))
-      (while unread
-       (aset nnvirtual-mapping (setq i (1+ i)) (cons igroup (car unread)))
-       (setq unread (cdr unread)))
-      (setq groups (cdr groups)))
-    (save-excursion
-      (set-buffer nntp-server-buffer)
-      (erase-buffer)
-      (insert (format "211 %d %d %d %s\n" (1+ total) 1 total group)))
-    t))
-
+  (cond
+   ((null (nnvirtual-possibly-change-group
+          group server 
+          (if nnvirtual-always-rescan nil dont-check)))
+    (setq nnvirtual-current-group nil)
+    (nnheader-report 'nnvirtual "No component groups in %s" group))
+   (t
+    (let ((len (length nnvirtual-mapping)))
+      (nnheader-insert "211 %d 1 %d %s\n" len len group)))))
+
+(defun nnvirtual-request-type (group &optional article)
+  (when (nnvirtual-possibly-change-group group nil t)
+    (if (not article)
+       'unknown
+      (let ((mart (assq article nnvirtual-mapping)))
+       (when mart
+         (gnus-request-type (cadr mart) (car mart)))))))
+
+(defun nnvirtual-request-update-mark (group article mark)
+  (when (nnvirtual-possibly-change-group group nil t)
+    (let* ((nart (assq article nnvirtual-mapping))
+          (cgroup (cadr nart))
+          ;; The component group might be a virtual group.
+          (nmark (gnus-request-update-mark cgroup (caddr nart) mark)))
+      (when (and (= mark nmark)
+                (gnus-group-auto-expirable-p cgroup))
+       (setq mark gnus-expirable-mark))))
+  mark)
+    
+(defun nnvirtual-close-group (group &optional server)
+  (when (nnvirtual-possibly-change-group group server t)
+    ;; We copy the marks from this group to the component
+    ;; groups here.
+    (nnvirtual-update-marked)
+    ;; Reset all relevant variables.
+    (setq nnvirtual-current-group nil
+         nnvirtual-component-groups nil
+         nnvirtual-mapping nil)
+    (setq nnvirtual-group-alist 
+         (delq (assoc group nnvirtual-group-alist) nnvirtual-group-alist)))
+  t)
+    
 (defun nnvirtual-request-list (&optional server) 
-  "List active newsgoups."
-  (setq nnvirtual-status-string "nnvirtual: LIST is not implemented.")
-  nil)
+  (nnheader-report 'nnvirtual "LIST is not implemented."))
 
-(defun nnvirtual-request-list-newsgroups (&optional server)
-  "List newsgroups (defined in NNTP2)."
-  (setq nnvirtual-status-string "nnvirtual: LIST NEWSGROUPS is not implemented.")
-  nil)
+(defun nnvirtual-request-newgroups (date &optional server)
+  (nnheader-report 'nnvirtual "NEWGROUPS is not supported."))
 
-(fset 'nnvirtual-request-post 'nntp-request-post)
+(defun nnvirtual-request-list-newsgroups (&optional server)
+  (nnheader-report 'nnvirtual "LIST NEWSGROUPS is not implemented."))
+
+(defun nnvirtual-request-update-info (group info &optional server)
+  (when (nnvirtual-possibly-change-group group server)
+    (let ((map nnvirtual-mapping)
+         (marks (mapcar (lambda (m) (list (cdr m))) gnus-article-mark-lists))
+         reads marks mr m op)
+      (while map
+       (setq m (pop map))
+       (unless (nth 3 m)
+         (push (car m) reads))
+       (when (setq mr (nth 4 m))
+         (while mr
+           (setcdr (setq op (assq (pop mr) marks)) (cons (car m) (cdr op))))))
+      (setq mr marks)
+      (while mr
+       (setcdr (car mr) (gnus-compress-sequence (sort (cdar mr) '<)))
+       (setq mr (cdr mr)))
+      (setcar (cddr info) (gnus-compress-sequence (nreverse reads)))
+      
+      ;; Enter these new marks into the info of the group.
+      (if (nthcdr 3 info)
+         (setcar (nthcdr 3 info) marks)
+       ;; Add the marks lists to the end of the info.
+       (when marks
+         (setcdr (nthcdr 2 info) (list marks))))
+      t)))
+
+(defun nnvirtual-catchup-group (group &optional server all)
+  (nnvirtual-possibly-change-group group server t)
+  (let ((gnus-group-marked nnvirtual-component-groups)
+       (gnus-expert-user t))
+    (save-excursion
+      (set-buffer gnus-group-buffer)
+      (gnus-group-catchup-current nil all))))
 
-(fset 'nnvirtual-request-post-buffer 'nntp-request-post-buffer)
+(defun nnvirtual-find-group-art (group article)
+  "Return the real group and article for virtual GROUP and ARTICLE."
+  (nnvirtual-possibly-change-group group nil t)
+  (let ((mart (assq article nnvirtual-mapping)))
+    (cons (cadr mart) (caddr mart))))
 
 \f
-;;; Low-Level Interface
+;;; Internal functions.
 
-(defun nnvirtual-open-server-internal ()
-  "Fix some internal variables."
+(defun nnvirtual-convert-headers ()
+  "Convert HEAD headers into NOV headers."
   (save-excursion
-    ;; Initialize communicatin buffer.
-    (setq nnvirtual-mapping nil)
-    (setq nntp-server-buffer (get-buffer-create " *nntpd*"))
     (set-buffer nntp-server-buffer)
-    (buffer-disable-undo (current-buffer))
-    (kill-all-local-variables)
-    (setq case-fold-search t)))
-
-(defun nnvirtual-close-server-internal (&rest dum)
-  "Close connection to news server."
-  nil)
-
-(defun nnvirtual-possibly-change-newsgroups (group groups-regexp)
-  (if (and groups-regexp
-          (not (and nnvirtual-newsgroups-regexp
-                    (string= groups-regexp nnvirtual-newsgroups-regexp))))
-      (nnvirtual-open-server groups-regexp)))
+    (let* ((dependencies (make-vector 100 0))
+          (headers (gnus-get-newsgroup-headers dependencies))
+          header)
+      (erase-buffer)
+      (while (setq header (pop headers))
+       (insert (int-to-string (mail-header-number header)) "\t"
+               (or (mail-header-subject header) "") "\t"
+               (or (mail-header-from header) "") "\t"
+               (or (mail-header-date header) "") "\t"
+               (or (mail-header-id header) "") "\t"
+               (or (mail-header-references header) "") "\t"
+               (int-to-string (or (mail-header-chars header) 0)) "\t"
+               (int-to-string (or (mail-header-lines header) 0)) "\t"
+               (if (mail-header-xref header) 
+                   (concat "Xref: " (mail-header-xref header) "\t")
+                 "") "\n")))))
+
+(defun nnvirtual-possibly-change-group (group regexp &optional dont-check)
+  (let ((inf t))
+    (unless (equal group nnvirtual-current-group)
+      (and (setq inf (assoc group nnvirtual-group-alist))
+          regexp
+          (string= (nth 3 inf) regexp)
+          (progn
+            (setq nnvirtual-current-group (car inf))
+            (setq nnvirtual-component-groups (nth 1 inf))
+            (setq nnvirtual-mapping (nth 2 inf)))))
+    (when (and regexp
+              (or (not inf)
+                  (not dont-check)))
+      (and inf (setq nnvirtual-group-alist 
+                    (delq inf nnvirtual-group-alist)))
+      (setq nnvirtual-mapping nil)
+      (setq nnvirtual-current-group group)
+      (let ((newsrc gnus-newsrc-alist)
+           (virt-group (gnus-group-prefixed-name 
+                        nnvirtual-current-group '(nnvirtual ""))))
+       (setq nnvirtual-component-groups nil)
+       (while newsrc
+         (and (string-match regexp (car (car newsrc)))
+              (not (string= (car (car newsrc)) virt-group))
+              (setq nnvirtual-component-groups
+                    (cons (car (car newsrc)) nnvirtual-component-groups)))
+         (setq newsrc (cdr newsrc))))
+      (if nnvirtual-component-groups
+         (progn
+           (nnvirtual-create-mapping)
+           (setq nnvirtual-group-alist
+                 (cons (list group nnvirtual-component-groups 
+                             nnvirtual-mapping regexp)
+                       nnvirtual-group-alist)))
+       (nnheader-report 'nnvirtual "No component groups: %s" group))))
+  nnvirtual-component-groups)
+
+(defun nnvirtual-update-marked ()
+  "Copy marks from the virtual group to the component groups."
+  (let ((mark-lists gnus-article-mark-lists)
+       (uncompressed '(score bookmark))
+       type list calist mart cgroups)
+    (while mark-lists
+      (setq type (cdar mark-lists))
+      (when (setq list (symbol-value (intern (format "gnus-newsgroup-%s"
+                                                    (car (pop mark-lists))))))
+       (setq cgroups 
+             (mapcar (lambda (g) (list g)) nnvirtual-component-groups))
+       (while list
+         (nconc (assoc (cadr (setq mart (assq (pop list) nnvirtual-mapping)))
+                       cgroups)
+                (list (caddr mart))))
+       (while cgroups
+         (when (cdar cgroups)
+           (gnus-add-marked-articles 
+            (caar cgroups) type (cdar cgroups) nil t)
+           (gnus-group-update-group (caar cgroups) t))
+         (setq cgroups (cdr cgroups)))))))
+
+(defun nnvirtual-marks (article marks)
+  "Return a list of mark types for ARTICLE."
+  (let (out)
+    (while marks
+      (when (memq article (cdar marks))
+       (push (caar marks) out))
+      (setq marks (cdr marks)))
+    out))
+
+(defun nnvirtual-create-mapping ()
+  "Create an article mapping for the current group."
+  (let* (div
+        (map (sort
+              (apply 
+               'nconc
+               (mapcar
+                (lambda (g)
+                  (let* ((active (or (gnus-active g) (gnus-activate-group g)))
+                         (unreads (gnus-list-of-unread-articles g))
+                         (marks (gnus-uncompress-marks
+                                 (gnus-info-marks (gnus-get-info g)))))
+                    (when gnus-use-cache
+                      (push (cons 'cache (gnus-cache-articles-in-group g))
+                            marks))
+                    (when active
+                      (setq div (/ (float (car active)) (cdr active)))
+                      (mapcar (lambda (n) 
+                                (list (* div (- n (car active)))
+                                      g n (and (memq n unreads) t)
+                                      (nnvirtual-marks n marks)))
+                              (gnus-uncompress-range active)))))
+                nnvirtual-component-groups))
+              (lambda (m1 m2)
+                (< (car m1) (car m2)))))
+        (i 0))
+    (setq nnvirtual-mapping map)
+    (while map
+      (setcar (pop map) (incf i)))))
 
 (provide 'nnvirtual)