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