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