7ca0fd287762b0e27888565b40788ff1592dd84e
[gnus] / lisp / gnus-sync.el
1 ;;; gnus-sync.el --- synchronization facility for Gnus
2
3 ;;; Copyright (C) 2010
4 ;;; Free Software Foundation, Inc.
5
6 ;; Author: Ted Zlatanov <tzz@lifelogs.com>
7 ;; Keywords: news synchronization nntp nnrss
8
9 ;; This file is part of GNU Emacs.
10
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
15
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 ;; GNU General Public License for more details.
20
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
23
24 ;;; Commentary:
25
26 ;; This is the gnus-sync.el package.
27
28 ;; Put this in your startup file (~/.gnus.el for instance)
29
30 ;; possibilities for gnus-sync-backend:
31 ;; Tramp over SSH: /ssh:user@host:/path/to/filename
32 ;; Tramp over IMAP: /imaps:user@yourhosthere.com:/INBOX.test/filename
33 ;; ...or any other file Tramp and Emacs can handle...
34
35 ;; (setq gnus-sync-backend "/remote:/path.gpg" ; will use Tramp+EPA if loaded
36 ;;       gnus-sync-global-vars `(gnus-newsrc-last-checked-date)
37 ;;       gnus-sync-newsrc-groups `("nntp" "nnrss")
38 ;;       gnus-sync-newsrc-offsets `(2 3))
39
40 ;; TODO:
41
42 ;; - after gnus-sync-read, the message counts are wrong
43
44 ;;; Code:
45
46 (eval-when-compile (require 'cl))
47 (require 'gnus-util)
48
49 (defgroup gnus-sync nil
50   "The Gnus synchronization facility."
51   :version "23.1"
52   :group 'gnus)
53
54 (defcustom gnus-sync-newsrc-groups `("nntp" "nnrss")
55   "List of groups to be synchronized in the gnus-newsrc-alist.
56 The group names are matched, they don't have to be fully
57 qualified.  Typically you would choose all of these.  That's the
58 default because there is no active sync backend by default, so
59 this setting is harmless until the user chooses a sync backend."
60   :group 'gnus-sync
61   :type '(repeat regexp))
62
63 (defcustom gnus-sync-newsrc-offsets '(2 3)
64   "List of per-group data to be synchronized."
65   :group 'gnus-sync
66   :type '(set (const :tag "Read ranges" 2)
67               (const :tag "Marks" 3)))
68
69 (defcustom gnus-sync-global-vars nil
70   "List of global variables to be synchronized.
71 You may want to sync `gnus-newsrc-last-checked-date' but pretty
72 much any symbol is fair game.  You could additionally sync
73 `gnus-newsrc-alist', `gnus-server-alist', `gnus-topic-topology',
74 and `gnus-topic-alist' to cover all the variables in
75 newsrc.eld (except for `gnus-format-specs' which should not be
76 synchronized, I believe).  Also see `gnus-variable-list'."
77   :group 'gnus-sync
78   :type '(repeat (choice (variable :tag "A known variable")
79                          (symbol :tag "Any symbol"))))
80
81 (defcustom gnus-sync-backend nil
82   "The synchronization backend."
83   :group 'gnus-sync
84   :type '(radio (const :format "None" nil)
85                 (string :tag "Sync to a file")))
86
87 (defvar gnus-sync-newsrc-loader nil
88   "Carrier for newsrc data")
89
90 (defun gnus-sync-save ()
91 "Save the Gnus sync data to the backend."
92   (interactive)
93   (cond
94    ((stringp gnus-sync-backend)
95     (gnus-message 7 "gnus-sync: saving to backend %s" gnus-sync-backend)
96     ;; populate gnus-sync-newsrc-loader from all but the first dummy
97     ;; entry in gnus-newsrc-alist whose group matches any of the
98     ;; gnus-sync-newsrc-groups
99     (let* ((loader
100             (loop for entry in (cdr gnus-newsrc-alist)
101                   when (gnus-grep-in-list
102                         (car entry)     ;the group name
103                         gnus-sync-newsrc-groups)
104                   collect (cons (car entry)
105                                 (mapcar (lambda (offset)
106                                           (cons offset (nth offset entry)))
107                                         gnus-sync-newsrc-offsets))))
108            (gnus-sync-newsrc-loader
109             (nunion gnus-sync-newsrc-loader
110                     (set-difference gnus-sync-newsrc-loader loader :key 'car)
111                     :key 'car)))
112
113       (with-temp-file gnus-sync-backend
114         (progn
115           (let ((coding-system-for-write gnus-ding-file-coding-system)
116                 (standard-output (current-buffer)))
117             (princ (format ";; -*- mode:emacs-lisp; coding: %s; -*-\n"
118                            gnus-ding-file-coding-system))
119             (princ ";; Gnus sync data v. 0.0.1\n")
120             (let* ((print-quoted t)
121                    (print-readably t)
122                    (print-escape-multibyte nil)
123                    (print-escape-nonascii t)
124                    (print-length nil)
125                    (print-level nil)
126                    (print-circle nil)
127                    (print-escape-newlines t)
128                    (variables (cons 'gnus-sync-newsrc-loader
129                                     gnus-sync-global-vars))
130                    variable)
131               (while variables
132                 (when (and (boundp (setq variable (pop variables)))
133                            (symbol-value variable))
134                   (princ "\n(setq ")
135                   (princ (symbol-name variable))
136                   (princ " '")
137                   (prin1 (symbol-value variable))
138                   (princ ")\n"))))
139             (gnus-message
140              7
141              "gnus-sync: stored variables %s and %d groups in %s"
142              gnus-sync-global-vars
143              (length gnus-sync-newsrc-loader)
144              gnus-sync-backend)
145
146             ;; Idea from Dan Christensen <jdc@chow.mat.jhu.edu>
147             ;; Save the .eld file with extra line breaks.
148             (gnus-message 8 "gnus-sync: adding whitespace to %s"
149                           gnus-sync-backend)
150             (save-excursion
151               (goto-char (point-min))
152               (while (re-search-forward "^(\\|(\\\"" nil t)
153                 (replace-match "\n\\&" t))
154               (goto-char (point-min))
155               (while (re-search-forward " $" nil t)
156                 (replace-match "" t t))))))))
157     ;; the pass-through case: gnus-sync-backend is not a known choice
158     (nil)))
159
160 (defun gnus-sync-read ()
161 "Load the Gnus sync data from the backend."
162   (interactive)
163   (when gnus-sync-backend
164     (gnus-message 7 "gnus-sync: loading from backend %s" gnus-sync-backend)
165     (cond ((stringp gnus-sync-backend)
166            ;; read data here...
167            (if (or debug-on-error debug-on-quit)
168                (load gnus-sync-backend nil t)
169              (condition-case var
170                  (load gnus-sync-backend nil t)
171                (error
172                 (error "Error in %s: %s" gnus-sync-backend (cadr var)))))
173            (let ((valid-count 0)
174                  invalid-groups)
175              (dolist (node gnus-sync-newsrc-loader)
176                (if (gnus-gethash (car node) gnus-newsrc-hashtb)
177                    (progn
178                      (incf valid-count)
179                      (loop for store in (cdr node)
180                            do (setf (nth (car store)
181                                          (assoc (car node) gnus-newsrc-alist))
182                               (cdr store))))
183                  (push (car node) invalid-groups)))
184             (gnus-message
185              7
186              "gnus-sync: loaded %d groups (out of %d) from %s"
187              valid-count (length gnus-sync-newsrc-loader)
188              gnus-sync-backend)
189             (when invalid-groups
190               (gnus-message
191                7
192                "gnus-sync: skipped %d groups (out of %d) from %s"
193                (length invalid-groups)
194                (length gnus-sync-newsrc-loader)
195                gnus-sync-backend)
196               (gnus-message 9 "gnus-sync: skipped groups: %s"
197                             (mapconcat 'identity invalid-groups ", ")))))
198           (nil))
199     ;; make the hashtable again because the newsrc-alist may have been modified
200     (when gnus-sync-newsrc-offsets
201       (gnus-message 9 "gnus-sync: remaking the newsrc hashtable")
202       (gnus-make-hashtable-from-newsrc-alist))))
203
204 ;;;###autoload
205 (defun gnus-sync-initialize ()
206 "Initialize the Gnus sync facility."
207   (interactive)
208   (gnus-message 5 "Initializing the sync facility")
209   (gnus-sync-install-hooks))
210
211 ;;;###autoload
212 (defun gnus-sync-install-hooks ()
213   "Install the sync hooks."
214   (interactive)
215   ;; (add-hook 'gnus-get-new-news-hook 'gnus-sync-read)
216   (add-hook 'gnus-save-newsrc-hook 'gnus-sync-save)
217   (add-hook 'gnus-read-newsrc-el-hoo4a 'gnus-sync-read))
218
219 (defun gnus-sync-unload-hook ()
220   "Uninstall the sync hooks."
221   (interactive)
222   ;; (remove-hook 'gnus-get-new-news-hook 'gnus-sync-read)
223   (remove-hook 'gnus-save-newsrc-hook 'gnus-sync-save)
224   (remove-hook 'gnus-read-newsrc-el-hook 'gnus-sync-read))
225
226 (add-hook 'gnus-sync-unload-hook 'gnus-sync-unload-hook)
227
228 ;; this is harmless by default, until the gnus-sync-backend is set
229 (gnus-sync-initialize)
230
231 (provide 'gnus-sync)
232
233 ;;; gnus-sync.el ends here