*** empty log message ***
[gnus] / lisp / gnus-move.el
1 ;;; gnus-move.el --- commands for moving Gnus from one server to another
2 ;; Copyright (C) 1996,97 Free Software Foundation, Inc.
3
4 ;; Author: Lars Magne Ingebrigtsen <larsi@ifi.uio.no>
5 ;; Keywords: news
6
7 ;; This file is part of GNU Emacs.
8
9 ;; GNU Emacs is free software; you can redistribute it and/or modify
10 ;; it under the terms of the GNU General Public License as published by
11 ;; the Free Software Foundation; either version 2, or (at your option)
12 ;; any later version.
13
14 ;; GNU Emacs is distributed in the hope that it will be useful,
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 ;; GNU General Public License for more details.
18
19 ;; You should have received a copy of the GNU General Public License
20 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
21 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22 ;; Boston, MA 02111-1307, USA.
23
24 ;;; Commentary:
25
26 ;;; Code:
27
28 (require 'gnus)
29 (require 'gnus-start)
30 (require 'gnus-int)
31 (require 'gnus-range)
32
33 ;;;
34 ;;; Moving by comparing Message-ID's.
35 ;;;
36
37 ;;;###autoload
38 (defun gnus-change-server (from-server to-server)
39   "Move from FROM-SERVER to TO-SERVER.
40 Update the .newsrc.eld file to reflect the change of nntp server."
41   (interactive
42    (list gnus-select-method (gnus-read-method "Move to method: ")))
43
44   ;; First start Gnus.
45   (let ((gnus-activate-level 0)
46         (nnmail-spool-file nil))
47     (gnus))
48
49   (save-excursion
50     ;; Go through all groups and translate.
51     (let ((newsrc gnus-newsrc-alist)
52           (nntp-nov-gap nil)
53           info)
54       (while (setq info (pop newsrc))
55         (when (gnus-group-native-p (gnus-info-group info))
56           (gnus-move-group-to-server info from-server to-server))))))
57
58 (defun gnus-move-group-to-server (info from-server to-server)
59   "Move group INFO from FROM-SERVER to TO-SERVER."
60   (let ((group (gnus-info-group info))
61         to-active hashtb type mark marks
62         to-article to-reads to-marks article
63         act-articles)
64     (gnus-message 7 "Translating %s..." group)
65     (when (gnus-request-group group nil to-server)
66       (setq to-active (gnus-parse-active)
67             hashtb (gnus-make-hashtable 1024)
68             act-articles (gnus-uncompress-range to-active))
69       ;; Fetch the headers from the `to-server'.
70       (when (and to-active
71                  act-articles
72                  (setq type (gnus-retrieve-headers
73                              act-articles
74                              group to-server)))
75         ;; Convert HEAD headers.  I don't care.
76         (when (eq type 'headers)
77           (nnvirtual-convert-headers))
78         ;; Create a mapping from Message-ID to article number.
79         (set-buffer nntp-server-buffer)
80         (goto-char (point-min))
81         (while (looking-at
82                 "^[0-9]+\t[^\t]*\t[^\t]*\t[^\t]*\t\\([^\t]*\\)\t")
83           (gnus-sethash
84            (buffer-substring (match-beginning 1) (match-end 1))
85            (read (current-buffer))
86            hashtb)
87           (forward-line 1))
88         ;; Then we read the headers from the `from-server'.
89         (when (and (gnus-request-group group nil from-server)
90                    (gnus-active group)
91                    (setq type (gnus-retrieve-headers
92                                (gnus-uncompress-range
93                                 (gnus-active group))
94                                group from-server)))
95           ;; Make it easier to map marks.
96           (let ((mark-lists (gnus-info-marks info))
97                 ms type m)
98             (while mark-lists
99               (setq type (caar mark-lists)
100                     ms (gnus-uncompress-range (cdr (pop mark-lists))))
101               (while ms
102                 (if (setq m (assq (car ms) marks))
103                     (setcdr m (cons type (cdr m)))
104                   (push (list (car ms) type) marks))
105                 (pop ms))))
106           ;; Convert.
107           (when (eq type 'headers)
108             (nnvirtual-convert-headers))
109           ;; Go through the headers and map away.
110           (set-buffer nntp-server-buffer)
111           (goto-char (point-min))
112           (while (looking-at
113                   "^[0-9]+\t[^\t]*\t[^\t]*\t[^\t]*\t\\([^\t]*\\)\t")
114             (setq to-article
115                   (gnus-gethash
116                    (buffer-substring (match-beginning 1) (match-end 1))
117                    hashtb))
118             ;; Add this article to the list of read articles.
119             (push to-article to-reads)
120             ;; See if there are any marks and then add them.
121             (when (setq mark (assq (read (current-buffer)) marks))
122               (setq marks (delq mark marks))
123               (setcar mark to-article)
124               (push mark to-marks))
125             (forward-line 1))
126           ;; Now we know what the read articles are and what the
127           ;; article marks are.  We transform the information
128           ;; into the Gnus info format.
129           (setq to-reads
130                 (gnus-range-add
131                  (gnus-compress-sequence (and to-reads (sort to-reads '<)) t)
132                  (cons 1 (1- (car to-active)))))
133           (gnus-info-set-read info to-reads)
134           ;; Do the marks.  I'm sure y'all understand what's
135           ;; going on down below, so I won't bother with any
136           ;; further comments.  <duck>
137           (let ((mlists gnus-article-mark-lists)
138                 lists ms a)
139             (while mlists
140               (push (list (cdr (pop mlists))) lists))
141             (while (setq ms (pop marks))
142               (setq article (pop ms))
143               (while ms
144                 (setcdr (setq a (assq (pop ms) lists))
145                         (cons article (cdr a)))))
146             (setq a lists)
147             (while a
148               (setcdr (car a) (gnus-compress-sequence
149                                (and (cdar a) (sort (cdar a) '<))))
150               (pop a))
151             (gnus-info-set-marks info lists t)))))
152     (gnus-message 7 "Translating %s...done" group)))
153
154 (defun gnus-group-move-group-to-server (info from-server to-server)
155   "Move the group on the current line from FROM-SERVER to TO-SERVER."
156   (interactive
157    (let ((info (gnus-get-info (gnus-group-group-name))))
158      (list info (gnus-find-method-for-group (gnus-info-group info))
159            (gnus-read-method (format "Move group %s to method: "
160                                      (gnus-info-group info))))))
161   (save-excursion
162     (gnus-move-group-to-server info from-server to-server)
163     ;; We have to update the group info to point use the right server.
164     (gnus-info-set-method info to-server t)
165     ;; We also have to change the name of the group and stuff.
166     (let* ((group (gnus-info-group info))
167            (new-name (gnus-group-prefixed-name
168                       (gnus-group-real-name group) to-server)))
169       (gnus-info-set-group info new-name)
170       (gnus-sethash new-name (gnus-gethash group gnus-newsrc-hashtb)
171                     gnus-newsrc-hashtb)
172       (gnus-sethash group nil gnus-newsrc-hashtb))))
173
174 (provide 'gnus-move)
175
176 ;;; gnus-move.el ends here