]> code.delx.au - gnu-emacs/blob - lisp/gnus/nnkiboze.el
57be1b45f113692841a43386cf2eb9310c641ed6
[gnu-emacs] / lisp / gnus / nnkiboze.el
1 ;;; nnkiboze.el --- select virtual news access for Gnus
2
3 ;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
4 ;; 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
5
6 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
7 ;; Keywords: news
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 ;; The other access methods (nntp, nnspool, etc) are general news
27 ;; access methods. This module relies on Gnus and can't be used
28 ;; separately.
29
30 ;;; Code:
31
32 (require 'nntp)
33 (require 'nnheader)
34 (require 'gnus)
35 (require 'gnus-score)
36 (require 'nnoo)
37 (require 'mm-util)
38 (eval-when-compile (require 'cl))
39
40 (nnoo-declare nnkiboze)
41 (defvoo nnkiboze-directory (nnheader-concat gnus-directory "kiboze/")
42 "nnkiboze will put its files in this directory.")
43
44 (defvoo nnkiboze-level 9
45 "The maximum level to be searched for articles.")
46
47 (defvoo nnkiboze-remove-read-articles t
48 "If non-nil, nnkiboze will remove read articles from the kiboze group.")
49
50 (defvoo nnkiboze-ephemeral nil
51 "If non-nil, don't store any data anywhere.")
52
53 (defvoo nnkiboze-scores nil
54 "Score rules for generating the nnkiboze group.")
55
56 (defvoo nnkiboze-regexp nil
57 "Regexp for matching component groups.")
58
59 (defvoo nnkiboze-file-coding-system mm-text-coding-system
60 "Coding system for nnkiboze files.")
61
62 \f
63
64 (defconst nnkiboze-version "nnkiboze 1.0")
65
66 (defvoo nnkiboze-current-group nil)
67 (defvoo nnkiboze-status-string "")
68
69 (defvoo nnkiboze-headers nil)
70
71 \f
72
73 ;;; Interface functions.
74
75 (nnoo-define-basics nnkiboze)
76
77 (deffoo nnkiboze-retrieve-headers (articles &optional group server fetch-old)
78 (nnkiboze-possibly-change-group group)
79 (unless gnus-nov-is-evil
80 (if (stringp (car articles))
81 'headers
82 (let ((nov (nnkiboze-nov-file-name)))
83 (when (file-exists-p nov)
84 (save-excursion
85 (set-buffer nntp-server-buffer)
86 (erase-buffer)
87 (let ((nnheader-file-coding-system nnkiboze-file-coding-system))
88 (nnheader-insert-file-contents nov))
89 (nnheader-nov-delete-outside-range
90 (car articles) (car (last articles)))
91 'nov))))))
92
93 (deffoo nnkiboze-request-article (article &optional newsgroup server buffer)
94 (nnkiboze-possibly-change-group newsgroup)
95 (if (not (numberp article))
96 ;; This is a real kludge. It might not work at times, but it
97 ;; does no harm I think. The only alternative is to offer no
98 ;; article fetching by message-id at all.
99 (nntp-request-article article newsgroup gnus-nntp-server buffer)
100 (let* ((header (gnus-summary-article-header article))
101 (xref (mail-header-xref header))
102 num group)
103 (unless xref
104 (error "nnkiboze: No xref"))
105 (unless (string-match " \\([^ ]+\\):\\([0-9]+\\)" xref)
106 (error "nnkiboze: Malformed xref"))
107 (setq num (string-to-number (match-string 2 xref))
108 group (match-string 1 xref))
109 (or (with-current-buffer buffer
110 (or (and gnus-use-cache (gnus-cache-request-article num group))
111 (gnus-agent-request-article num group)))
112 (gnus-request-article num group buffer)))))
113
114 (deffoo nnkiboze-request-scan (&optional group server)
115 (nnkiboze-possibly-change-group group)
116 (nnkiboze-generate-group (concat "nnkiboze:" group)))
117
118 (deffoo nnkiboze-request-group (group &optional server dont-check)
119 "Make GROUP the current newsgroup."
120 (nnkiboze-possibly-change-group group)
121 (if dont-check
122 t
123 (let ((nov-file (nnkiboze-nov-file-name))
124 beg end total)
125 (save-excursion
126 (set-buffer nntp-server-buffer)
127 (erase-buffer)
128 (unless (file-exists-p nov-file)
129 (nnkiboze-request-scan group))
130 (if (not (file-exists-p nov-file))
131 (nnheader-report 'nnkiboze "Can't select group %s" group)
132 (let ((nnheader-file-coding-system nnkiboze-file-coding-system))
133 (nnheader-insert-file-contents nov-file))
134 (if (zerop (buffer-size))
135 (nnheader-insert "211 0 0 0 %s\n" group)
136 (goto-char (point-min))
137 (when (looking-at "[0-9]+")
138 (setq beg (read (current-buffer))))
139 (goto-char (point-max))
140 (when (re-search-backward "^[0-9]" nil t)
141 (setq end (read (current-buffer))))
142 (setq total (count-lines (point-min) (point-max)))
143 (nnheader-insert "211 %d %d %d %s\n" total beg end group)))))))
144
145 (deffoo nnkiboze-close-group (group &optional server)
146 (nnkiboze-possibly-change-group group)
147 ;; Remove NOV lines of articles that are marked as read.
148 (when (and (file-exists-p (nnkiboze-nov-file-name))
149 nnkiboze-remove-read-articles)
150 (let ((coding-system-for-write nnkiboze-file-coding-system))
151 (with-temp-file (nnkiboze-nov-file-name)
152 (let ((cur (current-buffer))
153 (nnheader-file-coding-system nnkiboze-file-coding-system))
154 (nnheader-insert-file-contents (nnkiboze-nov-file-name))
155 (goto-char (point-min))
156 (while (not (eobp))
157 (if (not (gnus-article-read-p (read cur)))
158 (forward-line 1)
159 (gnus-delete-line))))))
160 (setq nnkiboze-current-group nil)))
161
162 (deffoo nnkiboze-open-server (server &optional defs)
163 (unless (assq 'nnkiboze-regexp defs)
164 (push `(nnkiboze-regexp ,server)
165 defs))
166 (nnoo-change-server 'nnkiboze server defs))
167
168 (deffoo nnkiboze-request-delete-group (group &optional force server)
169 (nnkiboze-possibly-change-group group)
170 (when force
171 (let ((files (nconc
172 (nnkiboze-score-file group)
173 (list (nnkiboze-nov-file-name)
174 (nnkiboze-nov-file-name ".newsrc")))))
175 (while files
176 (and (file-exists-p (car files))
177 (file-writable-p (car files))
178 (delete-file (car files)))
179 (setq files (cdr files)))))
180 (setq nnkiboze-current-group nil)
181 t)
182
183 (nnoo-define-skeleton nnkiboze)
184
185 \f
186 ;;; Internal functions.
187
188 (defun nnkiboze-possibly-change-group (group)
189 (setq nnkiboze-current-group group))
190
191 (defun nnkiboze-prefixed-name (group)
192 (gnus-group-prefixed-name group '(nnkiboze "")))
193
194 ;;;###autoload
195 (defun nnkiboze-generate-groups ()
196 "\"Usage: emacs -batch -l nnkiboze -f nnkiboze-generate-groups\".
197 Finds out what articles are to be part of the nnkiboze groups."
198 (interactive)
199 (let ((mail-sources nil)
200 (gnus-use-dribble-file nil)
201 (gnus-read-active-file t)
202 (gnus-expert-user t))
203 (gnus))
204 (let* ((gnus-newsrc-alist (gnus-copy-sequence gnus-newsrc-alist))
205 (newsrc (cdr gnus-newsrc-alist))
206 gnus-newsrc-hashtb info)
207 (gnus-make-hashtable-from-newsrc-alist)
208 ;; We have copied all the newsrc alist info over to local copies
209 ;; so that we can mess all we want with these lists.
210 (while (setq info (pop newsrc))
211 (when (string-match "nnkiboze" (gnus-info-group info))
212 ;; For each kiboze group, we call this function to generate
213 ;; it.
214 (nnkiboze-generate-group (gnus-info-group info) t))))
215 (save-excursion
216 (set-buffer gnus-group-buffer)
217 (gnus-group-list-groups)))
218
219 (defun nnkiboze-score-file (group)
220 (list (expand-file-name
221 (concat (file-name-as-directory gnus-kill-files-directory)
222 (nnheader-translate-file-chars
223 (concat (nnkiboze-prefixed-name nnkiboze-current-group)
224 "." gnus-score-file-suffix))))))
225
226 (defun nnkiboze-generate-group (group &optional inhibit-list-groups)
227 (let* ((info (gnus-get-info group))
228 (newsrc-file (concat nnkiboze-directory
229 (nnheader-translate-file-chars
230 (concat group ".newsrc"))))
231 (nov-file (concat nnkiboze-directory
232 (nnheader-translate-file-chars
233 (concat group ".nov"))))
234 method nnkiboze-newsrc gname newsrc active
235 ginfo lowest glevel orig-info nov-buffer
236 ;; Bind various things to nil to make group entry faster.
237 (gnus-expert-user t)
238 (gnus-large-newsgroup nil)
239 (gnus-score-find-score-files-function 'nnkiboze-score-file)
240 ;; Use only nnkiboze-score-file!
241 (gnus-score-use-all-scores nil)
242 (gnus-use-scoring t)
243 (gnus-verbose (min gnus-verbose 3))
244 gnus-select-group-hook gnus-summary-prepare-hook
245 gnus-thread-sort-functions gnus-show-threads
246 gnus-visual gnus-suppress-duplicates num-unread)
247 (unless info
248 (error "No such group: %s" group))
249 ;; Load the kiboze newsrc file for this group.
250 (when (file-exists-p newsrc-file)
251 (load newsrc-file))
252 (let ((coding-system-for-write nnkiboze-file-coding-system))
253 (gnus-make-directory (file-name-directory nov-file))
254 (with-temp-file nov-file
255 (mm-disable-multibyte)
256 (when (file-exists-p nov-file)
257 (insert-file-contents nov-file))
258 (setq nov-buffer (current-buffer))
259 ;; Go through the active hashtb and add new all groups that match the
260 ;; kiboze regexp.
261 (mapatoms
262 (lambda (group)
263 (and (string-match nnkiboze-regexp
264 (setq gname (symbol-name group))) ; Match
265 (not (assoc gname nnkiboze-newsrc)) ; It isn't registered
266 (numberp (car (symbol-value group))) ; It is active
267 (or (> nnkiboze-level 7)
268 (and (setq glevel
269 (gnus-info-level (gnus-get-info gname)))
270 (>= nnkiboze-level glevel)))
271 (not (string-match "^nnkiboze:" gname)) ; Exclude kibozes
272 (push (cons gname (1- (car (symbol-value group))))
273 nnkiboze-newsrc)))
274 gnus-active-hashtb)
275 ;; `newsrc' is set to the list of groups that possibly are
276 ;; component groups to this kiboze group. This list has elements
277 ;; on the form `(GROUP . NUMBER)', where NUMBER is the highest
278 ;; number that has been kibozed in GROUP in this kiboze group.
279 (setq newsrc nnkiboze-newsrc)
280 (while newsrc
281 (if (not (setq active (gnus-active (caar newsrc))))
282 ;; This group isn't active after all, so we remove it from
283 ;; the list of component groups.
284 (setq nnkiboze-newsrc (delq (car newsrc) nnkiboze-newsrc))
285 (setq lowest (cdar newsrc))
286 ;; Ok, we have a valid component group, so we jump to it.
287 (switch-to-buffer gnus-group-buffer)
288 (gnus-group-jump-to-group (caar newsrc))
289 (gnus-message 3 "nnkiboze: Checking %s..." (caar newsrc))
290 (setq ginfo (gnus-get-info (gnus-group-group-name))
291 orig-info (gnus-copy-sequence ginfo)
292 num-unread (gnus-group-unread (caar newsrc)))
293 (unwind-protect
294 (progn
295 ;; We set all list of article marks to nil. Since we operate
296 ;; on copies of the real lists, we can destroy anything we
297 ;; want here.
298 (when (nth 3 ginfo)
299 (setcar (nthcdr 3 ginfo) nil))
300 ;; We set the list of read articles to be what we expect for
301 ;; this kiboze group -- either nil or `(1 . LOWEST)'.
302 (when ginfo
303 (setcar (nthcdr 2 ginfo)
304 (and (not (= lowest 1)) (cons 1 lowest))))
305 (when (and (or (not ginfo)
306 (> (length (gnus-list-of-unread-articles
307 (car ginfo)))
308 0))
309 (progn
310 (ignore-errors
311 (gnus-group-select-group nil))
312 (eq major-mode 'gnus-summary-mode)))
313 ;; We are now in the group where we want to be.
314 (setq method (gnus-find-method-for-group
315 gnus-newsgroup-name))
316 (when (eq method gnus-select-method)
317 (setq method nil))
318 ;; We go through the list of scored articles.
319 (while gnus-newsgroup-scored
320 (when (> (caar gnus-newsgroup-scored) lowest)
321 ;; If it has a good score, then we enter this article
322 ;; into the kiboze group.
323 (nnkiboze-enter-nov
324 nov-buffer
325 (gnus-summary-article-header
326 (caar gnus-newsgroup-scored))
327 gnus-newsgroup-name))
328 (setq gnus-newsgroup-scored (cdr gnus-newsgroup-scored)))
329 ;; That's it. We exit this group.
330 (when (eq major-mode 'gnus-summary-mode)
331 (kill-buffer (current-buffer)))))
332 ;; Restore the proper info.
333 (when ginfo
334 (setcdr ginfo (cdr orig-info)))
335 (setcar (gnus-group-entry (caar newsrc)) num-unread)))
336 (setcdr (car newsrc) (cdr active))
337 (gnus-message 3 "nnkiboze: Checking %s...done" (caar newsrc))
338 (setq newsrc (cdr newsrc)))))
339 ;; We save the kiboze newsrc for this group.
340 (gnus-make-directory (file-name-directory newsrc-file))
341 (with-temp-file newsrc-file
342 (mm-disable-multibyte)
343 (insert "(setq nnkiboze-newsrc '")
344 (gnus-prin1 nnkiboze-newsrc)
345 (insert ")\n"))
346 (unless inhibit-list-groups
347 (save-excursion
348 (set-buffer gnus-group-buffer)
349 (gnus-group-list-groups)))
350 t))
351
352 (defun nnkiboze-enter-nov (buffer header group)
353 (save-excursion
354 (set-buffer buffer)
355 (goto-char (point-max))
356 (let ((prefix (gnus-group-real-prefix group))
357 (oheader (copy-sequence header))
358 article)
359 (if (zerop (forward-line -1))
360 (progn
361 (setq article (1+ (read (current-buffer))))
362 (forward-line 1))
363 (setq article 1))
364 (mail-header-set-number oheader article)
365 (with-temp-buffer
366 (insert (or (mail-header-xref oheader) ""))
367 (goto-char (point-min))
368 (if (re-search-forward " [^ ]+:[0-9]+" nil t)
369 (goto-char (match-beginning 0))
370 (or (eobp) (forward-char 1)))
371 ;; The first Xref has to be the group this article
372 ;; really came for - this is the article nnkiboze
373 ;; will request when it is asked for the article.
374 (insert " " group ":"
375 (int-to-string (mail-header-number header)) " ")
376 (while (re-search-forward " [^ ]+:[0-9]+" nil t)
377 (goto-char (1+ (match-beginning 0)))
378 (insert prefix))
379 (mail-header-set-xref oheader (buffer-string)))
380 (nnheader-insert-nov oheader))))
381
382 (defun nnkiboze-nov-file-name (&optional suffix)
383 (concat (file-name-as-directory nnkiboze-directory)
384 (nnheader-translate-file-chars
385 (concat (nnkiboze-prefixed-name nnkiboze-current-group)
386 (or suffix ".nov")))))
387
388 (provide 'nnkiboze)
389
390 ;; arch-tag: 66068271-bdc9-4801-bcde-779702e73a05
391 ;;; nnkiboze.el ends here