Add 2010 to copyright years.
[bpt/emacs.git] / lisp / gnus / nnkiboze.el
CommitLineData
eec82323 1;;; nnkiboze.el --- select virtual news access for Gnus
16409b0b 2
b6c2d8c6 3;; Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
114f9c96 4;; 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
eec82323 5
6748645f 6;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
eec82323
LMI
7;; Keywords: news
8
9;; This file is part of GNU Emacs.
10
5e809f55 11;; GNU Emacs is free software: you can redistribute it and/or modify
eec82323 12;; it under the terms of the GNU General Public License as published by
5e809f55
GM
13;; the Free Software Foundation, either version 3 of the License, or
14;; (at your option) any later version.
eec82323
LMI
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
5e809f55 22;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
eec82323
LMI
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)
8b93df01 37(require 'mm-util)
eec82323
LMI
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
8b93df01
DL
59(defvoo nnkiboze-file-coding-system mm-text-coding-system
60 "Coding system for nnkiboze files.")
61
eec82323
LMI
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)
8b93df01
DL
87 (let ((nnheader-file-coding-system nnkiboze-file-coding-system))
88 (nnheader-insert-file-contents nov))
eec82323
LMI
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))
ec4eb560
DL
101 (xref (mail-header-xref header))
102 num group)
eec82323
LMI
103 (unless xref
104 (error "nnkiboze: No xref"))
105 (unless (string-match " \\([^ ]+\\):\\([0-9]+\\)" xref)
106 (error "nnkiboze: Malformed xref"))
e9bd5782 107 (setq num (string-to-number (match-string 2 xref))
ec4eb560
DL
108 group (match-string 1 xref))
109 (or (with-current-buffer buffer
23f87bed
MB
110 (or (and gnus-use-cache (gnus-cache-request-article num group))
111 (gnus-agent-request-article num group)))
ec4eb560 112 (gnus-request-article num group buffer)))))
eec82323
LMI
113
114(deffoo nnkiboze-request-scan (&optional group server)
23f87bed 115 (nnkiboze-possibly-change-group group)
eec82323
LMI
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)
6748645f
LMI
128 (unless (file-exists-p nov-file)
129 (nnkiboze-request-scan group))
eec82323
LMI
130 (if (not (file-exists-p nov-file))
131 (nnheader-report 'nnkiboze "Can't select group %s" group)
8b93df01
DL
132 (let ((nnheader-file-coding-system nnkiboze-file-coding-system))
133 (nnheader-insert-file-contents nov-file))
eec82323
LMI
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)
8b93df01
DL
150 (let ((coding-system-for-write nnkiboze-file-coding-system))
151 (with-temp-file (nnkiboze-nov-file-name)
a1506d29 152 (let ((cur (current-buffer))
8b93df01
DL
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)))
eec82323
LMI
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
16409b0b
GM
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)))))
6748645f
LMI
180 (setq nnkiboze-current-group nil)
181 t)
eec82323
LMI
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 ()
6748645f 196 "\"Usage: emacs -batch -l nnkiboze -f nnkiboze-generate-groups\".
eec82323
LMI
197Finds out what articles are to be part of the nnkiboze groups."
198 (interactive)
b890d447 199 (let ((mail-sources nil)
eec82323
LMI
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.
ec4eb560
DL
214 (nnkiboze-generate-group (gnus-info-group info) t))))
215 (save-excursion
216 (set-buffer gnus-group-buffer)
217 (gnus-group-list-groups)))
eec82323
LMI
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
ec4eb560 226(defun nnkiboze-generate-group (group &optional inhibit-list-groups)
01c52d31 227 (let* ((info (gnus-get-info group))
16409b0b 228 (newsrc-file (concat nnkiboze-directory
23f87bed
MB
229 (nnheader-translate-file-chars
230 (concat group ".newsrc"))))
a8151ef7 231 (nov-file (concat nnkiboze-directory
23f87bed
MB
232 (nnheader-translate-file-chars
233 (concat group ".nov"))))
eec82323
LMI
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)
ec4eb560
DL
240 ;; Use only nnkiboze-score-file!
241 (gnus-score-use-all-scores nil)
242 (gnus-use-scoring t)
eec82323 243 (gnus-verbose (min gnus-verbose 3))
23f87bed 244 gnus-select-group-hook gnus-summary-prepare-hook
eec82323 245 gnus-thread-sort-functions gnus-show-threads
6748645f 246 gnus-visual gnus-suppress-duplicates num-unread)
eec82323
LMI
247 (unless info
248 (error "No such group: %s" group))
249 ;; Load the kiboze newsrc file for this group.
eafee8f2
SM
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"))
ec4eb560
DL
346 (unless inhibit-list-groups
347 (save-excursion
348 (set-buffer gnus-group-buffer)
349 (gnus-group-list-groups)))
23f87bed 350 t))
eec82323
LMI
351
352(defun nnkiboze-enter-nov (buffer header group)
353 (save-excursion
354 (set-buffer buffer)
355 (goto-char (point-max))
6748645f 356 (let ((prefix (gnus-group-real-prefix group))
eec82323 357 (oheader (copy-sequence header))
eec82323
LMI
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)
8b93df01 365 (with-temp-buffer
ec4eb560 366 (insert (or (mail-header-xref oheader) ""))
8b93df01
DL
367 (goto-char (point-min))
368 (if (re-search-forward " [^ ]+:[0-9]+" nil t)
369 (goto-char (match-beginning 0))
ec4eb560 370 (or (eobp) (forward-char 1)))
8b93df01
DL
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))))
eec82323 381
6748645f 382(defun nnkiboze-nov-file-name (&optional suffix)
eec82323
LMI
383 (concat (file-name-as-directory nnkiboze-directory)
384 (nnheader-translate-file-chars
6748645f
LMI
385 (concat (nnkiboze-prefixed-name nnkiboze-current-group)
386 (or suffix ".nov")))))
eec82323
LMI
387
388(provide 'nnkiboze)
389
cbee283d 390;; arch-tag: 66068271-bdc9-4801-bcde-779702e73a05
eec82323 391;;; nnkiboze.el ends here