]> code.delx.au - gnu-emacs/blob - lisp/gnus/nnspool.el
* paths.el (news-directory, news-path): Move to gnus/nnspool.el.
[gnu-emacs] / lisp / gnus / nnspool.el
1 ;;; nnspool.el --- spool access for GNU Emacs
2
3 ;; Copyright (C) 1988-1990, 1993-1998, 2000-2012
4 ;; Free Software Foundation, Inc.
5
6 ;; Author: Masanobu UMEDA <umerin@flab.flab.fujitsu.junet>
7 ;; Lars Magne Ingebrigtsen <larsi@gnus.org>
8 ;; Keywords: news
9
10 ;; This file is part of GNU Emacs.
11
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
16
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
21
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24
25 ;;; Commentary:
26
27 ;;; Code:
28
29 (require 'nnheader)
30 (require 'nntp)
31 (require 'nnoo)
32 (eval-when-compile (require 'cl))
33
34 ;; Probably this entire thing should be obsolete.
35 ;; It's only used to init nnspool-spool-directory, so why not just
36 ;; set that variable's default directly?
37 (defvar news-directory (if (file-exists-p "/usr/spool/news/")
38 "/usr/spool/news/"
39 "/var/spool/news/")
40 "The root directory below which all news files are stored.")
41 (defvaralias 'news-path 'news-directory)
42
43 (nnoo-declare nnspool)
44
45 (defvoo nnspool-inews-program news-inews-program
46 "Program to post news.
47 This is most commonly `inews' or `injnews'.")
48
49 (defvoo nnspool-inews-switches '("-h" "-S")
50 "Switches for nnspool-request-post to pass to `inews' for posting news.
51 If you are using Cnews, you probably should set this variable to nil.")
52
53 (defvoo nnspool-spool-directory
54 (file-name-as-directory (if (boundp 'news-directory)
55 (symbol-value 'news-directory)
56 news-path))
57 "Local news spool directory.")
58
59 (defvoo nnspool-nov-directory (concat nnspool-spool-directory "over.view/")
60 "Local news nov directory.")
61
62 (defvoo nnspool-lib-dir
63 (if (file-exists-p "/usr/lib/news/active")
64 "/usr/lib/news/"
65 "/var/lib/news/")
66 "Where the local news library files are stored.")
67
68 (defvoo nnspool-active-file (concat nnspool-lib-dir "active")
69 "Local news active file.")
70
71 (defvoo nnspool-newsgroups-file (concat nnspool-lib-dir "newsgroups")
72 "Local news newsgroups file.")
73
74 (defvoo nnspool-distributions-file (concat nnspool-lib-dir "distribs.pat")
75 "Local news distributions file.")
76
77 (defvoo nnspool-history-file (concat nnspool-lib-dir "history")
78 "Local news history file.")
79
80 (defvoo nnspool-active-times-file (concat nnspool-lib-dir "active.times")
81 "Local news active date file.")
82
83 (defvoo nnspool-large-newsgroup 50
84 "The number of articles which indicates a large newsgroup.
85 If the number of articles is greater than the value, verbose
86 messages will be shown to indicate the current status.")
87
88 (defvoo nnspool-nov-is-evil nil
89 "Non-nil means that nnspool will never return NOV lines instead of headers.")
90
91 (defconst nnspool-sift-nov-with-sed nil
92 "If non-nil, use sed to get the relevant portion from the overview file.
93 If nil, nnspool will load the entire file into a buffer and process it
94 there.")
95
96 (defvoo nnspool-rejected-article-hook nil
97 "*A hook that will be run when an article has been rejected by the server.")
98
99 (defvoo nnspool-file-coding-system nnheader-file-coding-system
100 "Coding system for nnspool.")
101
102 \f
103
104 (defconst nnspool-version "nnspool 2.0"
105 "Version numbers of this version of NNSPOOL.")
106
107 (defvoo nnspool-current-directory nil
108 "Current news group directory.")
109
110 (defvoo nnspool-current-group nil)
111 (defvoo nnspool-status-string "")
112
113 \f
114 ;;; Interface functions.
115
116 (nnoo-define-basics nnspool)
117
118 (deffoo nnspool-retrieve-headers (articles &optional group server fetch-old)
119 "Retrieve the headers of ARTICLES."
120 (with-current-buffer nntp-server-buffer
121 (erase-buffer)
122 (when (nnspool-possibly-change-directory group)
123 (let* ((number (length articles))
124 (count 0)
125 (default-directory nnspool-current-directory)
126 (do-message (and (numberp nnspool-large-newsgroup)
127 (> number nnspool-large-newsgroup)))
128 (nnheader-file-coding-system nnspool-file-coding-system)
129 file beg article ag)
130 (if (and (numberp (car articles))
131 (nnspool-retrieve-headers-with-nov articles fetch-old))
132 ;; We successfully retrieved the NOV headers.
133 'nov
134 ;; No NOV headers here, so we do it the hard way.
135 (while (setq article (pop articles))
136 (if (stringp article)
137 ;; This is a Message-ID.
138 (setq ag (nnspool-find-id article)
139 file (and ag (nnspool-article-pathname
140 (car ag) (cdr ag)))
141 article (cdr ag))
142 ;; This is an article in the current group.
143 (setq file (int-to-string article)))
144 ;; Insert the head of the article.
145 (when (and file
146 (file-exists-p file))
147 (insert "221 ")
148 (princ article (current-buffer))
149 (insert " Article retrieved.\n")
150 (setq beg (point))
151 (inline (nnheader-insert-head file))
152 (goto-char beg)
153 (if (search-forward "\n\n" nil t)
154 (progn
155 (forward-char -1)
156 (insert ".\n"))
157 (goto-char (point-max))
158 (if (bolp)
159 (insert ".\n")
160 (insert "\n.\n")))
161 (delete-region (point) (point-max)))
162
163 (and do-message
164 (zerop (% (incf count) 20))
165 (nnheader-message 5 "nnspool: Receiving headers... %d%%"
166 (/ (* count 100) number))))
167
168 (when do-message
169 (nnheader-message 5 "nnspool: Receiving headers...done"))
170
171 ;; Fold continuation lines.
172 (nnheader-fold-continuation-lines)
173 'headers)))))
174
175 (deffoo nnspool-open-server (server &optional defs)
176 (nnoo-change-server 'nnspool server defs)
177 (cond
178 ((not (file-exists-p nnspool-spool-directory))
179 (nnspool-close-server)
180 (nnheader-report 'nnspool "Spool directory doesn't exist: %s"
181 nnspool-spool-directory))
182 ((not (file-directory-p
183 (directory-file-name
184 (file-truename nnspool-spool-directory))))
185 (nnspool-close-server)
186 (nnheader-report 'nnspool "Not a directory: %s" nnspool-spool-directory))
187 ((not (file-exists-p nnspool-active-file))
188 (nnheader-report 'nnspool "The active file doesn't exist: %s"
189 nnspool-active-file))
190 (t
191 (nnheader-report 'nnspool "Opened server %s using directory %s"
192 server nnspool-spool-directory)
193 t)))
194
195 (deffoo nnspool-request-article (id &optional group server buffer)
196 "Select article by message ID (or number)."
197 (nnspool-possibly-change-directory group)
198 (let ((nntp-server-buffer (or buffer nntp-server-buffer))
199 file ag)
200 (if (stringp id)
201 ;; This is a Message-ID.
202 (when (setq ag (nnspool-find-id id))
203 (setq file (nnspool-article-pathname (car ag) (cdr ag))))
204 (setq file (nnspool-article-pathname nnspool-current-group id)))
205 (and file
206 (file-exists-p file)
207 (not (file-directory-p file))
208 (save-excursion (nnspool-find-file file))
209 ;; We return the article number and group name.
210 (if (numberp id)
211 (cons nnspool-current-group id)
212 ag))))
213
214 (deffoo nnspool-request-body (id &optional group server)
215 "Select article body by message ID (or number)."
216 (nnspool-possibly-change-directory group)
217 (let ((res (nnspool-request-article id)))
218 (when res
219 (with-current-buffer nntp-server-buffer
220 (goto-char (point-min))
221 (when (search-forward "\n\n" nil t)
222 (delete-region (point-min) (point)))
223 res))))
224
225 (deffoo nnspool-request-head (id &optional group server)
226 "Select article head by message ID (or number)."
227 (nnspool-possibly-change-directory group)
228 (let ((res (nnspool-request-article id)))
229 (when res
230 (with-current-buffer nntp-server-buffer
231 (goto-char (point-min))
232 (when (search-forward "\n\n" nil t)
233 (delete-region (1- (point)) (point-max)))
234 (nnheader-fold-continuation-lines)))
235 res))
236
237 (deffoo nnspool-request-group (group &optional server dont-check info)
238 "Select news GROUP."
239 (let ((pathname (nnspool-article-pathname group))
240 dir)
241 (if (not (file-directory-p pathname))
242 (nnheader-report
243 'nnspool "Invalid group name (no such directory): %s" group)
244 (setq nnspool-current-directory pathname)
245 (nnheader-report 'nnspool "Selected group %s" group)
246 (if dont-check
247 (progn
248 (nnheader-report 'nnspool "Selected group %s" group)
249 t)
250 ;; Yes, completely empty spool directories *are* possible.
251 ;; Fix by Sudish Joseph <joseph@cis.ohio-state.edu>
252 (when (setq dir (directory-files pathname nil "^[0-9]+$" t))
253 (setq dir (sort (mapcar 'string-to-number dir) '<)))
254 (if dir
255 (nnheader-insert
256 "211 %d %d %d %s\n" (length dir) (car dir)
257 (car (last dir)) group)
258 (nnheader-report 'nnspool "Empty group %s" group)
259 (nnheader-insert "211 0 0 0 %s\n" group))))))
260
261 (deffoo nnspool-request-type (group &optional article)
262 'news)
263
264 (deffoo nnspool-close-group (group &optional server)
265 t)
266
267 (deffoo nnspool-request-list (&optional server)
268 "List active newsgroups."
269 (save-excursion
270 (or (nnspool-find-file nnspool-active-file)
271 (nnheader-report 'nnspool (nnheader-file-error nnspool-active-file)))))
272
273 (deffoo nnspool-request-list-newsgroups (&optional server)
274 "List newsgroups (defined in NNTP2)."
275 (save-excursion
276 (or (nnspool-find-file nnspool-newsgroups-file)
277 (nnheader-report 'nnspool (nnheader-file-error
278 nnspool-newsgroups-file)))))
279
280 (deffoo nnspool-request-list-distributions (&optional server)
281 "List distributions (defined in NNTP2)."
282 (save-excursion
283 (or (nnspool-find-file nnspool-distributions-file)
284 (nnheader-report 'nnspool (nnheader-file-error
285 nnspool-distributions-file)))))
286
287 ;; Suggested by Hallvard B Furuseth <h.b.furuseth@usit.uio.no>.
288 (deffoo nnspool-request-newgroups (date &optional server)
289 "List groups created after DATE."
290 (if (nnspool-find-file nnspool-active-times-file)
291 (save-excursion
292 ;; Find the last valid line.
293 (goto-char (point-max))
294 (while (and (not (looking-at
295 "\\([^ ]+\\) +\\([0-9]+\\)[0-9][0-9][0-9] "))
296 (zerop (forward-line -1))))
297 ;; We require nnheader which requires gnus-util.
298 (let ((seconds (gnus-float-time (date-to-time date)))
299 groups)
300 ;; Go through lines and add the latest groups to a list.
301 (while (and (looking-at "\\([^ ]+\\) +[0-9]+ ")
302 (progn
303 ;; We insert a .0 to make the list reader
304 ;; interpret the number as a float. It is far
305 ;; too big to be stored in a lisp integer.
306 (goto-char (1- (match-end 0)))
307 (insert ".0")
308 (> (progn
309 (goto-char (match-end 1))
310 (read (current-buffer)))
311 seconds))
312 (push (buffer-substring
313 (match-beginning 1) (match-end 1))
314 groups)
315 (zerop (forward-line -1))))
316 (erase-buffer)
317 (dolist (group groups)
318 (insert group " 0 0 y\n")))
319 t)
320 nil))
321
322 (deffoo nnspool-request-post (&optional server)
323 "Post a new news in current buffer."
324 (save-excursion
325 (let* ((process-connection-type nil) ; t bugs out on Solaris
326 (inews-buffer (generate-new-buffer " *nnspool post*"))
327 (proc
328 (condition-case err
329 (apply 'start-process "*nnspool inews*" inews-buffer
330 nnspool-inews-program nnspool-inews-switches)
331 (error
332 (nnheader-report 'nnspool "inews error: %S" err)))))
333 (if (not proc)
334 ;; The inews program failed.
335 ()
336 (nnheader-report 'nnspool "")
337 (set-process-sentinel proc 'nnspool-inews-sentinel)
338 (mm-with-unibyte-current-buffer
339 (process-send-region proc (point-min) (point-max)))
340 ;; We slap a condition-case around this, because the process may
341 ;; have exited already...
342 (ignore-errors
343 (process-send-eof proc))
344 t))))
345
346
347 \f
348 ;;; Internal functions.
349
350 (defun nnspool-inews-sentinel (proc status)
351 (with-current-buffer (process-buffer proc)
352 (goto-char (point-min))
353 (if (or (zerop (buffer-size))
354 (search-forward "spooled" nil t))
355 (kill-buffer (current-buffer))
356 ;; Make status message by folding lines.
357 (while (re-search-forward "[ \t\n]+" nil t)
358 (replace-match " " t t))
359 (nnheader-report 'nnspool "%s" (buffer-string))
360 (nnheader-message 5 "nnspool: %s" nnspool-status-string)
361 (ding)
362 (run-hooks 'nnspool-rejected-article-hook))))
363
364 (defun nnspool-retrieve-headers-with-nov (articles &optional fetch-old)
365 (if (or gnus-nov-is-evil nnspool-nov-is-evil)
366 nil
367 (let ((nov (nnheader-group-pathname
368 nnspool-current-group nnspool-nov-directory ".overview"))
369 (arts articles)
370 (nnheader-file-coding-system nnspool-file-coding-system)
371 last)
372 (if (not (file-exists-p nov))
373 ()
374 (with-current-buffer nntp-server-buffer
375 (erase-buffer)
376 (if nnspool-sift-nov-with-sed
377 (nnspool-sift-nov-with-sed articles nov)
378 (nnheader-insert-file-contents nov)
379 (if (and fetch-old
380 (not (numberp fetch-old)))
381 t ; We want all the headers.
382 (ignore-errors
383 ;; Delete unwanted NOV lines.
384 (nnheader-nov-delete-outside-range
385 (if fetch-old (max 1 (- (car articles) fetch-old))
386 (car articles))
387 (car (last articles)))
388 ;; If the buffer is empty, this wasn't very successful.
389 (unless (zerop (buffer-size))
390 ;; We check what the last article number was.
391 ;; The NOV file may be out of sync with the articles
392 ;; in the group.
393 (forward-line -1)
394 (setq last (read (current-buffer)))
395 (if (= last (car articles))
396 ;; Yup, it's all there.
397 t
398 ;; Perhaps not. We try to find the missing articles.
399 (while (and arts
400 (<= last (car arts)))
401 (pop arts))
402 ;; The articles in `arts' are missing from the buffer.
403 (mapc 'nnspool-insert-nov-head arts)
404 t))))))))))
405
406 (defun nnspool-insert-nov-head (article)
407 "Read the head of ARTICLE, convert to NOV headers, and insert."
408 (save-excursion
409 (let ((cur (current-buffer))
410 buf)
411 (setq buf (nnheader-set-temp-buffer " *nnspool head*"))
412 (when (nnheader-insert-head
413 (nnspool-article-pathname nnspool-current-group article))
414 (nnheader-insert-article-line article)
415 (goto-char (point-min))
416 (let ((headers (nnheader-parse-head)))
417 (set-buffer cur)
418 (goto-char (point-max))
419 (nnheader-insert-nov headers)))
420 (kill-buffer buf))))
421
422 (defun nnspool-sift-nov-with-sed (articles file)
423 (let ((first (car articles))
424 (last (car (last articles))))
425 (call-process "awk" nil t nil
426 (format "BEGIN {firstmsg=%d; lastmsg=%d;}\n $1 >= firstmsg && $1 <= lastmsg {print;}"
427 (1- first) (1+ last))
428 file)))
429
430 ;; Fixed by fdc@cliwe.ping.de (Frank D. Cringle).
431 ;; Find out what group an article identified by a Message-ID is in.
432 (defun nnspool-find-id (id)
433 (with-temp-buffer
434 (ignore-errors
435 (call-process "grep" nil t nil (regexp-quote id) nnspool-history-file))
436 (goto-char (point-min))
437 (when (looking-at "<[^>]+>[ \t]+[-0-9~]+[ \t]+\\([^ /\t\n]+\\)/\\([0-9]+\\)[ \t\n]")
438 (cons (match-string 1) (string-to-number (match-string 2))))))
439
440 (defun nnspool-find-file (file)
441 "Insert FILE in server buffer safely."
442 (set-buffer nntp-server-buffer)
443 (erase-buffer)
444 (condition-case ()
445 (let ((coding-system-for-read nnspool-file-coding-system))
446 (mm-insert-file-contents file)
447 t)
448 (file-error nil)))
449
450 (defun nnspool-possibly-change-directory (group)
451 (if (not group)
452 t
453 (let ((pathname (nnspool-article-pathname group)))
454 (if (file-directory-p pathname)
455 (setq nnspool-current-directory pathname
456 nnspool-current-group group)
457 (nnheader-report 'nnspool "No such newsgroup: %s" group)))))
458
459 (defun nnspool-article-pathname (group &optional article)
460 "Find the file name for GROUP."
461 (nnheader-group-pathname group nnspool-spool-directory article))
462
463 (provide 'nnspool)
464
465 ;;; nnspool.el ends here